/* ============================================================
   KEELWORKS DESIGN SYSTEM — styles.css
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* ── Brand gradient: #34D399 (teal) → #38BDF8 (sky) ── */
  --teal:          #34D399;
  --sky:           #38BDF8;
  --primary:       #0ea5e9;   /* solid sky-blue for buttons/icons */
  --primary-dark:  #0284c7;   /* hover darkened */
  --teal-light:    #6EE7B7;
  --sky-light:     #7DD3FC;

  /* Legacy aliases (keep for any var() references in code) */
  --indigo:        #0ea5e9;
  --indigo-bright: #34D399;
  --indigo-soft:   #38BDF8;
  --indigo-dark:   #0284c7;
  --violet:        #06b6d4;

  --bg:            #F0FDFA;
  --ink:           #0F172A;
  --muted:         #64748b;
  --muted-light:   #94a3b8;
  --surface:       rgba(255,255,255,0.45);
  --border:        rgba(255,255,255,0.6);
  --shadow:        0 8px 32px 0 rgba(14,165,233,0.07);
  --radius-card:   24px;
  --radius-btn:    12px;
  --gap:           24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; }
html { scroll-behavior: smooth; }

body {
  background: linear-gradient(160deg, #fcfffe 0%, #f9fffe 30%, #f9fdff 65%, #f3fcfd 100%);
  font-family: 'Inter', 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   DECORATIVE ORBS (give backdrop-filter something to blur)
   ============================================================ */
.page-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0;
  animation: orbFloat 1.2s ease forwards;
}
@keyframes orbFloat {
  to { opacity: 1; }
}

/* Orb 1 — teal, top-left */
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(52,211,153,0.12) 0%, transparent 68%);
  top: -180px; left: -140px;
  animation-delay: 0s;
}
/* Orb 2 — sky-blue, right-mid */
.orb-2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(56,189,248,0.11) 0%, transparent 68%);
  top: 28%; right: -180px;
  animation-delay: 0.15s;
}
/* Orb 3 — cyan, lower-left */
.orb-3 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(6,182,212,0.10) 0%, transparent 68%);
  bottom: 10%; left: 2%;
  animation-delay: 0.3s;
}
/* Orb 4 — light teal, center */
.orb-4 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110,231,183,0.09) 0%, transparent 68%);
  top: 52%; left: 48%;
  animation-delay: 0.1s;
}
/* Orb 5 — sky-light, bottom-right */
.orb-5 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(125,211,252,0.08) 0%, transparent 68%);
  top: 76%; right: 6%;
  animation-delay: 0.25s;
}
/* Orb 6 — deeper teal, center-left (process section) */
.orb-6 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(20,184,166,0.10) 0%, transparent 68%);
  top: 40%; left: 18%;
  animation-delay: 0.2s;
}


/* ---------- 3D Canvas ---------- */
/* Confined to the first viewport (hero) — scrolls away with the page.
   Everything below falls back to the .page-decor gradient orbs. */
#bg-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: -1;
  display: block;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f0fdfa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  will-change: transform;
}

.preloader-logo {
  width: clamp(56px, 9vw, 84px);
  height: clamp(56px, 9vw, 84px);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(56,189,248,0.25);
  opacity: 0;
  transform: scale(0.6);
}

.preloader-counter {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--teal) 0%, var(--sky) 60%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 4ch;
  text-align: center;
}

.preloader-bar-wrap {
  width: min(360px, 80vw);
  height: 2px;
  background: rgba(52,211,153,0.18);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--indigo-bright), var(--indigo-soft));
  border-radius: 99px;
  transform-origin: left center;
}

.preloader-wordmark {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.55em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================================
   GLASSMORPHISM
   ============================================================ */
.glass-card {
  background: rgba(255,255,255,0.48);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(14,165,233,0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
  padding: 2rem;
  opacity: 0;
  transform: translateY(40px);
}

.no-js .glass-card { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translate(-50%, 40px);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 0.75rem 1.25rem;
  opacity: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 8px 40px rgba(14,165,233,0.15);
}
.no-js .nav { opacity: 1; transform: translate(-50%, 0); }

.nav .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav .logo .logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(14,165,233,0.25);
}
.nav .logo .logo-text {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--teal), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav .logo .dot { -webkit-text-fill-color: var(--sky); color: var(--sky); }

.nav .links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav .links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.nav .links a:hover { opacity: 1; }

@media (max-width: 720px) {
  .nav .links a:not(.btn-primary) { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 22px rgba(52,211,153,0.35);
  will-change: transform;
  /* GSAP magnetic: no CSS transform transition (GSAP handles it) */
}
.btn-primary:hover {
  filter: brightness(1.08) saturate(1.1);
  box-shadow: 0 10px 32px rgba(56,189,248,0.42);
}
.btn-primary:active { opacity: 0.88; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(14,165,233,0.07);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.75);
  box-shadow: 0 6px 18px rgba(14,165,233,0.10);
}

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 110px;
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .bento-container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .bento-container { grid-template-columns: repeat(4, 1fr); }
}

.hero-spacer { height: 13vh; min-height: 90px; grid-column: 1 / -1; }

/* Card grid spans */
.card-hero    { grid-column: 1 / -1; }
.card-stat    { grid-column: span 1; }
.card-stack   { grid-column: 1 / -1; }
.card-service { grid-column: span 1; }

@media (min-width: 1000px) {
  .card-hero    { grid-column: span 2; grid-row: span 2; }
  .card-stat    { grid-column: span 1; }
  .card-stack   { grid-column: 1 / -1; }
  .card-service { grid-column: span 1; }

  /* Drop the "AI Agents" card diagonally below the "10+" card, into the
     gap between the wireframe torus knot and the circle shape */
  .card-stat-ai {
    position: absolute;
    top: 403px;
    right: 24px;
    width: 272px;
    margin: 0;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .card-hero { grid-column: 1 / -1; }
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 0.75rem;
  display: block;
}

.gradient-text {
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reveal { opacity: 0; transform: translateY(40px); }
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   HERO CARD
   ============================================================ */
.card-hero h1 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
}
.card-hero h1 .accent {
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-hero p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
  max-width: 56ch;
  margin-bottom: 1.8rem;
}

/* ---- Hero stats row ---- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
}
.hero-stat-item .stat-num {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-item .stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ---- Floating badge chips ---- */
.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(52,211,153,0.20);
  white-space: nowrap;
  z-index: 10;
  opacity: 0;        /* GSAP reveals in introTl */

  pointer-events: none;
}
.floating-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-bright), var(--indigo-soft));
  flex-shrink: 0;
}

/* Drift animations */
@keyframes driftA {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  50%       { transform: translate(6px, -10px) rotate(1.5deg); }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) rotate(1deg); }
  50%       { transform: translate(-8px, 8px) rotate(-1.5deg); }
}
.badge-drift-a { animation: driftA 5s ease-in-out infinite; }
.badge-drift-b { animation: driftB 6.5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .badge-drift-a, .badge-drift-b { animation: none; }
}

/* Hero card: relative for badge positioning */
.card-hero { position: relative; overflow: visible; }

/* ---- Stat cards (original style kept) ---- */
.card-stat { display: flex; flex-direction: column; justify-content: center; }
.card-stat .num {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.card-stat .label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.35;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #34D399 0%, #0ea5e9 50%, #38BDF8 100%);
  padding: 1.1rem 0;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.marquee-item::after {
  content: '•';
  font-size: 0.6rem;
  opacity: 0.5;
  margin-left: 0;
}
.marquee-item:last-child::after { display: none; }

/* ============================================================
   SECTION WRAPPER (for standalone sections outside bento)
   ============================================================ */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-head { grid-column: 1 / -1; padding: 1rem 0.5rem 0; }
.section-head h2, .section-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.section-head h2 .accent, .section-title .accent {
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: transparent;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1fr 1fr; }
}

.about-narrative {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-narrative p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
}

.pull-quote-card {
  background: rgba(255,255,255,0.40);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}
.pull-quote-card::before {
  content: '"';
  position: absolute;
  top: -0.2rem;
  left: 1.2rem;
  font-family: 'Sora', Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  pointer-events: none;
}

.pull-quote-card blockquote {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pull-quote-card blockquote strong {
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pull-quote-card cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   STACK / SKILLS BENTO
   ============================================================ */
.skills-section {
  background: transparent;
}
.skills-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .skills-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .skills-bento { grid-template-columns: repeat(4, 1fr); }
}

.skill-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.48);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(14,165,233,0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
  padding: 1.75rem;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Per-category accent colors */
.skill-card--frontend { --card-accent: var(--sky); --card-accent-soft: var(--sky-light); --card-glow: rgba(56,189,248,0.35); }
.skill-card--backend  { --card-accent: var(--teal); --card-accent-soft: var(--teal-light); --card-glow: rgba(52,211,153,0.35); }
.skill-card--agent    { --card-accent: #8b5cf6; --card-accent-soft: #c4b5fd; --card-glow: rgba(139,92,246,0.35); }
.skill-card--cloud    { --card-accent: #f59e0b; --card-accent-soft: #fcd34d; --card-glow: rgba(245,158,11,0.35); }

/* Corner glow */
.skill-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--card-accent) 0%, transparent 70%);
  opacity: 0.16;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-accent);
  box-shadow: 0 20px 44px var(--card-glow), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.skill-card:hover::before {
  opacity: 0.32;
  transform: scale(1.15);
}

.skill-card-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-soft));
  box-shadow: 0 6px 16px var(--card-glow);
}
.skill-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

/* Tech stack pills (existing + new) */
.pills { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(14,165,233,0.05);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pill:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(14,165,233,0.12);
  border-color: var(--card-accent);
}

/* Kept for original bento stack card */
.card-stack h2 { font-weight: 700; font-size: 1.35rem; margin-bottom: 1.25rem; letter-spacing: -0.01em; }

/* ============================================================
   PROJECTS SECTION — CAROUSEL
   ============================================================ */
.projects-section {
  background: transparent;
}

.projects-carousel-wrapper {
  margin-top: 2.5rem;
}

.projects-carousel {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-carousel::-webkit-scrollbar {
  display: none;
}

.project-card {
  background: rgba(255,255,255,0.48);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(14,165,233,0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: box-shadow 0.35s ease;
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 700px) {
  .project-card { flex: 0 0 calc(50% - var(--gap) / 2); }
}
@media (min-width: 1050px) {
  .project-card { flex: 0 0 calc(33.333% - (var(--gap) * 2 / 3)); }
}
.project-card:hover {
  box-shadow: 0 20px 60px rgba(52,211,153,0.20), 0 1px 0 rgba(255,255,255,0.9) inset;
}

.project-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.project-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Per-project gradient themes */
.thumb-lms {
  background: linear-gradient(135deg, #34d39922 0%, #38bdf844 40%, #0ea5e933 100%);
}
.thumb-order {
  background: linear-gradient(135deg, #6ee7b722 0%, #38bdf844 40%, #06b6d433 100%);
}
.thumb-ecommerce {
  background: linear-gradient(135deg, #34d39930 0%, #0ea5e940 40%, #38bdf830 100%);
}
.thumb-aichat {
  background: linear-gradient(135deg, #67e8f933 0%, #34d39940 40%, #38bdf830 100%);
}
.thumb-expense {
  background: linear-gradient(135deg, #a5f3fc33 0%, #6ee7b744 40%, #34d39930 100%);
}
.thumb-leads {
  background: linear-gradient(135deg, #38bdf833 0%, #0ea5e944 40%, #34d39930 100%);
}

/* Blurred shape decorations inside thumb */
.thumb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.55;
}

/* Project icon badge, layered above the gradient blobs */
.project-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.project-icon svg {
  width: 28px;
  height: 28px;
}

.project-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.project-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--indigo);
  text-transform: uppercase;
}
.project-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  flex: 1;
}
.project-card .pills { margin-top: 0.25rem; }

/* Carousel controls — prev/next arrows + dot indicators */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.carousel-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.6);
  color: var(--indigo);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(14,165,233,0.08);
}
.carousel-arrow svg {
  width: 20px;
  height: 20px;
}
.carousel-arrow:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 22px rgba(14,165,233,0.16);
  transform: translateY(-1px);
}
.carousel-dots {
  display: flex;
  gap: 0.6rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(52,211,153,0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active {
  background: var(--indigo);
  transform: scale(1.25);
}

/* ============================================================
   PROCESS TIMELINE (Pinned Stacking)
   ============================================================ */
.process-section {
  background: transparent;
  position: relative;
}

/* The pin wrapper — ScrollTrigger will pin this */
.process-pin-wrapper {
  position: relative;
}

.process-cards-container {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card {
  position: absolute;
  top: 50%;
  left: 50%;
  /* NO CSS transform here — GSAP owns xPercent/yPercent/y/scale */
  width: min(860px, 90vw);

  /* Real glassmorphism: low white opacity so orbs bleed through */
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(32px) saturate(220%) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(220%) brightness(1.05);

  /* Gradient border — brighter at top, subtle at bottom */
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;

  /* Top-edge inner highlight (classic glass rim) */
  box-shadow:
    0 24px 64px rgba(14, 165, 233, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 -1px 0 rgba(255, 255, 255, 0.10) inset;

  padding: 3.5rem 4rem;
  opacity: 0;
  will-change: transform, opacity;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;

  /* Subtle inner gradient wash */
  position: absolute;
  isolation: isolate;
}
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.04) 60%,
    rgba(56,189,248,0.06) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.process-card > * { position: relative; z-index: 1; }

.process-card:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 28px 72px rgba(56, 189, 248, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(255, 255, 255, 0.12) inset;
}

.process-card-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.process-card-step::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo-bright), var(--indigo-soft));
  border-radius: 2px;
}
.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.process-card-num {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, rgba(52,211,153,0.20), rgba(56,189,248,0.14));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.process-card-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo-bright), var(--indigo-soft));
  border-radius: 99px;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.process-card h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.05;
}
.process-card h3 span {
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  max-width: 65ch;
}

/* Reduced-motion / mobile & tablet fallback: static column of cards
   (the pinned horizontal-scroll animation is desktop-only) */
@media (prefers-reduced-motion: reduce), (max-width: 900px) {
  .process-pin-wrapper { height: auto !important; }
  .process-cards-container {
    position: static;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 0;
  }
  .process-card {
    position: static;
    top: auto;
    left: auto;
    transform: translateY(40px);
    opacity: 0;
    width: 100%;
    padding: 2rem 1.75rem;
  }
  .process-card-num { font-size: 3rem; }
}

/* Progress dots for process section */
.process-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.process-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(52,211,153,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.process-dot.active {
  background: var(--indigo);
  transform: scale(1.25);
}

/* Dots only make sense alongside the pinned desktop animation */
@media (prefers-reduced-motion: reduce), (max-width: 900px) {
  .process-dots { display: none; }
}

/* ============================================================
   SERVICES / EXPERTISE (existing 4 cards — kept)
   ============================================================ */
.card-service h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.card-service .num-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 1rem;
  display: block;
}
.card-service p { font-size: 0.95rem; line-height: 1.55; color: #475569; }

/* ============================================================
   CONTACT & FOOTER
   ============================================================ */
.contact-section {
  background: transparent;
  position: relative;
  overflow: hidden;
}

/* ---- Decorative rotating logo watermark + pulsing glow ---- */
.contact-decor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.contact-glow {
  position: absolute;
  width: min(640px, 90vw);
  height: min(640px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.16) 0%, rgba(56,189,248,0.10) 45%, transparent 72%);
  filter: blur(40px);
  animation: contactGlowPulse 7s ease-in-out infinite;
}
.contact-logo-mark {
  width: min(420px, 60vw);
  height: min(420px, 60vw);
  object-fit: contain;
  opacity: 0.10;
  animation: contactMarkSpin 60s linear infinite;
}
@keyframes contactGlowPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.75; }
  50%       { transform: scale(1.08); opacity: 1; }
}
@keyframes contactMarkSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-glow, .contact-logo-mark { animation: none; }
}

.contact-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-headline {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.contact-headline .accent {
  background: linear-gradient(120deg, var(--indigo-bright), var(--indigo-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtext {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-form {
  text-align: left;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: flex;
  gap: 1.1rem;
}
.form-row .form-field { flex: 1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.85);
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.18);
}
.contact-form .btn-primary {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}
.form-status {
  font-size: 0.85rem;
  color: var(--muted);
  min-height: 1.2em;
}
.form-status.success { color: var(--teal); font-weight: 600; }
.form-status.error { color: #ef4444; font-weight: 600; }

@media (max-width: 600px) {
  .form-row { flex-direction: column; }
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--ink);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(14,165,233,0.06);
}
.social-link:hover {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 6px 18px rgba(52,211,153,0.18);
  transform: translateY(-2px);
}

/* ============================================================
   BRAND MARQUEE (outline wordmark band before footer)
   ============================================================ */
.brand-marquee-section {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0 2rem;
  position: relative;
}
.brand-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.brand-marquee-content {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-marquee-item {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  padding: 0 1.25rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15,23,42,0.10);
  background: linear-gradient(120deg, rgba(52,211,153,0.16), rgba(56,189,248,0.16));
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---- Scroll-to-top button ---- */
.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(14,165,233,0.15);
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 28px rgba(52,211,153,0.25);
}

/* ---- Floating WhatsApp Widget ---- */
.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  display: flex;
  align-items: center;
}

.wa-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              height 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-radius 0.45s ease,
              background-color 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              transform 0.25s ease;
  will-change: width, height, border-radius;
}

/* Collapsed State: Just the raw WhatsApp Icon */
.wa-container.collapsed {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid transparent;
  box-shadow: none;
  padding: 0;
  animation: wa-float 3s ease-in-out infinite;
}

/* Expanded State: Rectangular chat-with-us card */
.wa-container.expanded {
  width: 295px;
  height: 68px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1.5px solid #25D366;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  padding: 10px 14px;
}

/* Hover effects */
.wa-container.collapsed:hover {
  transform: translateY(-4px) scale(1.08);
  animation-play-state: paused;
}
.wa-container.expanded:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.15);
}

/* WhatsApp Icon (stays rightmost) */
.wa-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              height 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-container.collapsed .wa-icon-wrapper {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.35));
}
.wa-container.expanded .wa-icon-wrapper {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 6px rgba(37, 211, 102, 0.15));
}

.wa-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Content Area (in the middle) */
.wa-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.25s ease,
              margin 0.45s ease;
  will-change: width, opacity;
}
.wa-container.collapsed .wa-content {
  width: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}
.wa-container.expanded .wa-content {
  width: 170px;
  opacity: 1;
  margin-right: 12px;
}

.wa-text-title {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
  white-space: nowrap;
}

.wa-text-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}

/* Chevron (on the left) */
.wa-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
  overflow: hidden;
  box-sizing: border-box;
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.25s ease,
              margin 0.45s ease,
              color 0.2s ease,
              transform 0.2s ease;
  will-change: width, opacity;
}
.wa-container.collapsed .wa-chevron {
  width: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}
.wa-container.expanded .wa-chevron {
  width: 16px;
  opacity: 1;
  margin-right: 8px;
}
.wa-container.expanded:hover .wa-chevron {
  color: var(--ink);
  transform: translateX(-2px);
}

/* Micro-animations */
@keyframes wa-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-container.collapsed { animation: none; }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .wa-container.expanded {
    width: 265px;
    height: 64px;
    padding: 8px 12px;
  }
  .wa-container.expanded .wa-content {
    width: 145px;
  }
  .wa-text-title { font-size: 13px; }
  .wa-text-subtitle { font-size: 11px; }
  .wa-container.expanded .wa-icon-wrapper {
    width: 38px;
    height: 38px;
  }
}

/* Footer */
.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.footer-card {
  padding: 2.5rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 320px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-brand .logo .logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(14,165,233,0.25);
}
.footer-brand .logo .logo-text {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--teal), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand .logo .dot { -webkit-text-fill-color: var(--sky); color: var(--sky); }
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}
.footer-socials { justify-content: flex-start; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-col h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a,
.footer-email {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-email:hover { color: var(--ink); }

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted-light);
}

@media (max-width: 640px) {
  .footer-card { padding: 1.75rem; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .site-footer { padding-bottom: 100px; }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 480px) {
  .bento-container { padding: 80px 14px 40px; gap: 16px; }
  .section-wrapper { padding: 56px 14px; }
  .process-card { padding: 1.75rem; }
  .pull-quote-card { padding: 1.75rem 1.5rem; }
}

/* Move the scroll-to-top button to the opposite corner on mobile/tablet
   so it never overlaps the expanded WhatsApp widget in the bottom-right */
@media (max-width: 900px) {
  .scroll-top-btn {
    right: auto;
    left: 16px;
    bottom: 20px;
  }
  .whatsapp-widget {
    right: 16px;
    bottom: 20px;
  }
}
