/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --white:      #FFFDF9;   /* barely-warm white */
  --gray-50:    #FFF8F0;   /* peach-tinted cream */
  --gray-100:   #FCEEE0;   /* soft apricot */
  --gray-200:   #F5DECA;   /* warm sand */
  --gray-400:   #C4956A;   /* warm tan */
  --gray-500:   #9C7055;   /* warm mid-brown */
  --gray-600:   #7A5640;   /* warm dark-brown */
  --gray-700:   #3D2010;   /* deep warm espresso */
  --navy:       #1C0D04;   /* richest warm dark — body text & dark sections */
  --navy-light: #2E1A08;
  --blue:       #FF5C0A;   /* vivid mango-orange — primary CTA */
  --blue-dark:  #D94A06;   /* deep tangerine — hover */
  --blue-50:    #FFF2EB;   /* palest peach tint */
  --blue-100:   #FFD5B5;   /* light apricot — tag fills */
  --blue-200:   #FFB085;   /* medium apricot — tag borders */
  --border:     #EDDCC8;   /* warm sand border */
  --shadow-sm:  0 1px 3px rgba(28,13,4,.07), 0 1px 2px rgba(28,13,4,.04);
  --shadow-md:  0 4px 16px rgba(28,13,4,.09), 0 1px 4px rgba(28,13,4,.05);
  --shadow-lg:  0 12px 40px rgba(28,13,4,.11), 0 4px 12px rgba(28,13,4,.07);
  --shadow-xl:  0 24px 64px rgba(28,13,4,.14), 0 8px 24px rgba(28,13,4,.08);
  --gold:       #FFAB00;   /* sunny golden-yellow — secondary pop */
  --font:       'Plus Jakarta Sans', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* Lenis handles smooth */
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; margin-right: auto; }
.logo-img { height: 38px; width: auto; display: block; }
/* Footer invert — make black logo white on dark background */
.footer-brand .logo-img { filter: brightness(0) invert(1); opacity: .85; }
.nav-links { display: flex; gap: 1.75rem; }
.nav-link { font-size: .875rem; font-weight: 500; color: var(--gray-600); transition: color .25s; }
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--blue); }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,92,10,.5); }
  60%       { box-shadow: 0 0 0 10px rgba(255,92,10,0); }
}
.nav-cta {
  background: var(--blue); color: #fff; font-size: .85rem; font-weight: 600;
  padding: .55rem 1.25rem; border-radius: 100px;
  transition: background .2s, transform .2s;
  animation: cta-pulse 3.5s ease-in-out infinite;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; padding: 8rem 0 5rem; display: flex; align-items: center; overflow: hidden; }
.hero-bg-blob { position: absolute; top: -200px; right: -100px; width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(255,92,10,.10) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.hero-bg-blob-2 { top: auto; right: auto; bottom: -250px; left: -150px; width: 500px; height: 500px; background: radial-gradient(ellipse, rgba(255,160,60,.07) 0%, transparent 65%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* Badge */
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue); font-size: .78rem; font-weight: 600; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.75rem; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2.2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(.7)} }

/* Title word-clip reveal
   NOTE: .clip-word has NO CSS initial transform/opacity — GSAP sets them via gsap.set() */
.hero-title { font-size: clamp(2.8rem,5.5vw,4.5rem); font-weight: 800; line-height: 1.06; letter-spacing: -.04em; color: var(--navy); margin-bottom: 1.5rem; }
.word-line { display: block; overflow: hidden; line-height: 1.1; }
.clip-word {
  display: inline-block;
  margin-right: .22em;
  will-change: transform, opacity;
  /* NO transform or opacity set here — GSAP owns the initial state */
}
/* Blue words on the second line */
.word-line-blue .clip-word { color: var(--blue); }

.hero-desc { font-size: 1.05rem; color: var(--gray-500); line-height: 1.75; max-width: 460px; font-weight: 400; margin-bottom: 2.25rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font); font-size: .9rem; font-weight: 600; padding: .8rem 1.75rem; border-radius: 100px; transition: all .2s var(--ease); cursor: pointer; border: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 24px rgba(255,92,10,.4); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid #CBD5E1; }
.btn-ghost:hover { border-color: var(--navy); background: var(--gray-50); }
.btn-full { width: 100%; justify-content: center; border-radius: 10px; }

.hero-actions { display: flex; gap: .875rem; align-items: center; margin-bottom: 2.25rem; flex-wrap: wrap; }

.hero-trust { display: flex; align-items: center; gap: .875rem; flex-wrap: wrap; }
.trust-label { font-size: .8rem; color: var(--gray-400); font-weight: 500; }
.trust-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.trust-pill { font-size: .75rem; font-weight: 600; color: var(--gray-600); background: var(--gray-100); border: 1px solid var(--border); padding: .25rem .75rem; border-radius: 100px; }

/* ── Hero Visual ── */
.hero-visual { position: relative; will-change: transform; }
.app-mockup { background: #fff; border-radius: 16px; box-shadow: var(--shadow-xl); border: 1px solid var(--border); overflow: hidden; will-change: transform; }
.mockup-chrome { display: flex; align-items: center; gap: .75rem; padding: .7rem 1rem; background: var(--gray-50); border-bottom: 1px solid var(--border); }
.chrome-dots { display: flex; gap: 5px; }
.chrome-dots i { display: block; width: 11px; height: 11px; border-radius: 50%; }
.chrome-url { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: .28rem .6rem; font-size: .68rem; color: var(--gray-500); display: flex; align-items: center; gap: .4rem; }
.mockup-body { display: flex; min-height: 280px; }
.mockup-sidebar { width: 110px; border-right: 1px solid var(--border); padding: 1rem .75rem; display: flex; flex-direction: column; gap: 1rem; background: var(--gray-50); flex-shrink: 0; }
.ms-logo { width: 32px; height: 32px; background: var(--navy); border-radius: 8px; color: #fff; font-size: .7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.ms-nav { display: flex; flex-direction: column; gap: 2px; }
.ms-item { font-size: .7rem; font-weight: 500; color: var(--gray-500); padding: .45rem .6rem; border-radius: 7px; }
.ms-active { background: var(--blue-50); color: var(--navy); font-weight: 700; }
.mockup-main { flex: 1; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: .875rem; }
.mm-topbar { display: flex; align-items: center; justify-content: space-between; }
.mm-heading { font-size: .8rem; font-weight: 700; color: var(--navy); }
.mm-quarter { font-size: .65rem; color: var(--gray-400); background: var(--gray-100); padding: .15rem .5rem; border-radius: 100px; font-weight: 500; }
.mm-stats { display: flex; gap: 1rem; }
.mm-stat { display: flex; flex-direction: column; gap: 1px; }
.mms-num { font-size: 1.15rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.mms-lbl { font-size: .62rem; color: var(--gray-400); font-weight: 500; }
.mm-projects { display: flex; flex-direction: column; gap: .6rem; }
.mp-row { display: grid; grid-template-columns: 8px 1fr 80px 32px; align-items: center; gap: .5rem; }
.mp-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mp-name { font-size: .7rem; font-weight: 500; color: var(--navy-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mp-bar { height: 5px; background: var(--gray-100); border-radius: 100px; overflow: hidden; }
.mp-fill { height: 100%; border-radius: 100px; }
.mp-pct { font-size: .62rem; font-weight: 700; color: var(--gray-500); text-align: right; }

/* Floating cards */
.float-card { position: absolute; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: .75rem 1rem; display: flex; align-items: center; gap: .75rem; z-index: 3; white-space: nowrap; will-change: transform; }
.float-card-top { top: -22px; right: -28px; }
.float-card-bottom { bottom: -22px; left: -28px; }
.fc-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon-green { background: var(--blue); }
.fc-text { display: flex; flex-direction: column; gap: 1px; }
.fc-title { font-size: .75rem; font-weight: 700; color: var(--navy); }
.fc-sub { font-size: .65rem; color: var(--gray-400); }
.fc-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-100); color: var(--navy); font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-check { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ─────────────────────────────────────────
   MARQUEE STRIP
───────────────────────────────────────── */
.expertise-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--gray-50); padding: 1rem 0; overflow: hidden; }
.marquee-track { overflow: hidden; }
.marquee-content { display: flex; align-items: center; gap: 2.5rem; white-space: nowrap; animation: marquee 30s linear infinite; font-size: .78rem; font-weight: 600; color: var(--gray-600); }
.mdot { color: var(--gold); font-size: .5rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */
.section-eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: .875rem; }
.section-title { font-size: clamp(1.9rem,3.5vw,2.75rem); font-weight: 800; letter-spacing: -.03em; color: var(--navy); line-height: 1.1; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services { padding: 7rem 0; }
.section-header-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 3.5rem; }
.section-desc { font-size: 1rem; color: var(--gray-500); line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.75rem; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon-wrap {
  width: 44px; height: 44px; background: var(--blue-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  margin-bottom: 1.25rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.service-card:hover .sc-icon-wrap { background: var(--blue); color: #fff; }
.sc-num { display: block; font-size: .7rem; font-weight: 700; color: var(--blue); letter-spacing: .06em; margin-bottom: .5rem; }
.sc-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; letter-spacing: -.01em; }
.sc-desc { font-size: .85rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1.25rem; }
.sc-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.sc-tags span { font-size: .68rem; font-weight: 600; color: var(--blue); background: var(--blue-50); border: 1px solid var(--blue-100); padding: .2rem .6rem; border-radius: 100px; }

/* ─────────────────────────────────────────
   SHOWCASE — horizontal pin scroll
   Structure: .showcase (trigger, sets scroll height via pinSpacing)
              > .showcase-pin (pinned 100vh flex column)
                > .showcase-head (header)
                > .showcase-overflow (overflow:hidden — only this clips)
                  > .showcase-cards (GSAP translates X)
                > .showcase-progress-outer
───────────────────────────────────────── */
.showcase { background: var(--navy); color: #fff; position: relative; }

/* The pinned element — full viewport height, column layout */
.showcase-pin {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 0 2.5rem;
}

/* Header row: eyebrow/title on left, hint on right */
.showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.showcase-head-left { display: flex; flex-direction: column; }
.showcase-eyebrow { color: rgba(255,255,255,.5); }
.showcase-title { color: #fff; font-size: clamp(2rem,4vw,3rem); }

.showcase-hint {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.4);
  padding-bottom: .3rem; flex-shrink: 0;
}

/* The clipping container — overflow:hidden ONLY here */
.showcase-overflow {
  overflow: hidden;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  /* small padding gives room for hover translateY */
  padding: .75rem 0;
  margin: -.75rem 0;
}

/* The translating cards track */
.showcase-cards {
  display: flex;
  gap: 1.5rem;
  /* Left padding aligns first card with content; right padding shows end of track */
  padding: 0 3rem 0 calc((100vw - 1200px) / 2 + 2rem);
  will-change: transform;
  flex-shrink: 0; /* don't compress — must overflow to the right */
}

/* Individual cards */
.showcase-card {
  flex: none; width: 400px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.showcase-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.25); box-shadow: 0 20px 60px rgba(0,0,0,.3); }

.sc-img-wrap { height: 260px; overflow: hidden; position: relative; }
.sc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.showcase-card:hover .sc-img-wrap img { transform: scale(1.05); }

/* Phone screenshot — contain so full app UI is visible */
.sc-img-phone { background: #0d0d0d; }
.sc-img-phone img { object-fit: contain; object-position: center; padding: .75rem 3.5rem; }

/* Clickable card */
.showcase-card-link { cursor: pointer; text-decoration: none; display: block; }

/* Brand row — logo + tag side by side */
.sc-brand-row { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; flex-wrap: wrap; }
.sc-brand-logo { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: .85; flex-shrink: 0; }

/* "Visit ↗" hint that appears on hover */
.sc-link-hint {
  display: inline-block; margin-top: .75rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.showcase-card-link:hover .sc-link-hint { color: rgba(255,255,255,.9); }

.sc-meta { padding: 1.5rem; }
.sc-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  padding: .25rem .65rem; border-radius: 100px;
}
.sc-meta h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .5rem; letter-spacing: -.02em; }
.sc-meta p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* Progress bar */
.showcase-progress-outer {
  height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  margin: 1.75rem 2rem 0;
  overflow: hidden;
}
.showcase-progress-inner {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 100px;
  transition: width .08s linear;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about { padding: 7rem 0 4rem; background: var(--gray-50); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.about .section-title { margin-bottom: 1.25rem; }
.about-desc { font-size: .975rem; color: var(--gray-500); line-height: 1.8; margin-bottom: .875rem; }

/* Simplified about image: single image + absolute overlays */
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}
.about-img-stat {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 14px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: .15rem;
}
.about-img-stat .stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue); letter-spacing: -.04em; line-height: 1; }
.about-img-stat .stat-lbl { display: block; font-size: .75rem; font-weight: 600; color: var(--navy); }
.about-img-tag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .75rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: .4rem;
  box-shadow: var(--shadow-md);
}

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding-bottom: 3rem; }
.stats-row-item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s; }
.stats-row-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--blue); letter-spacing: -.04em; line-height: 1; margin-bottom: .25rem; }
.stat-lbl { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.stat-desc { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process { padding: 7rem 0; }
.process-sub { font-size: 1rem; color: var(--gray-500); margin-bottom: 3.5rem; max-width: 500px; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.process-step { padding: 0 1.5rem 0 0; }
.ps-num-wrap { display: flex; align-items: center; margin-bottom: 1.5rem; }
.ps-num { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); border: 2px solid var(--blue); color: #fff; font-size: .8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.ps-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--blue-200), var(--blue-100)); }
.ps-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; letter-spacing: -.01em; }
.ps-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-bg { background: linear-gradient(145deg, #1C0D04 0%, #FF5C0A 100%); padding: 7rem 0; }
.contact-card { background: var(--white); border-radius: 24px; box-shadow: var(--shadow-xl); overflow: hidden; display: grid; grid-template-columns: 1fr 1.25fr; }
.contact-left { padding: 3.5rem; background: var(--navy); color: #fff; display: flex; flex-direction: column; }
.contact-title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1rem; color: #fff; }
.contact-sub { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2.5rem; flex: 1; }
.contact-detail { display: flex; flex-direction: column; gap: .875rem; }
.cd-item { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.75); }
.cd-item a { color: rgba(255,255,255,.9); }
.cd-item a:hover { color: #fff; }
.cd-item svg { flex-shrink: 0; opacity: .65; }
.contact-right { padding: 3rem 3.5rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field label { font-size: .78rem; font-weight: 600; color: var(--gray-700); }
.form-field input, .form-field textarea, .form-field select { font-family: var(--font); background: var(--gray-50); border: 1.5px solid var(--border); border-radius: 10px; padding: .75rem 1rem; font-size: .9rem; color: var(--navy); outline: none; transition: border-color .2s, box-shadow .2s, background .2s; resize: none; -webkit-appearance: none; width: 100%; color: #1a0e05; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray-400); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(255,92,10,.14); }
.form-field select { cursor: pointer; color: var(--gray-600); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-brand { margin-right: auto; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: .35rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* Back to top button */
.back-to-top {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s, color .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .ps-line { display: none; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .section-header-split { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { height: 320px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 2.5rem; }
  .showcase-head { flex-direction: column; gap: .75rem; align-items: flex-start; }
  .showcase-hint { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-brand { margin-right: 0; }
  .footer-right { align-items: center; }
  .showcase-cards { padding: 0 1rem; }
  .showcase-card { width: 300px; }
  .showcase-card .sc-img-wrap { height: 200px; }
}
