/* =========================================
   DOCNOW — sultandigital.ai
   Single stylesheet
   ========================================= */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0E1A14;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: italic; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
svg { display: block; }

/* TOKENS */
:root {
  --ink:        #0E1A14;
  --forest:     #0A2118;
  --forest-2:   #030B07;
  --orange:     #FF5A1F;
  --orange-2:   #FF7A3D;
  --accent:     #1E5B3F;
  --paper:      #FFFFFF;
  --mist:       #F2F3EF;
  --pill-border:#D9DCD3;
  --max-w:      1200px;
}

.display {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
@media (prefers-reduced-motion: no-preference) {
  [data-anim] { opacity: 0; will-change: opacity, transform; transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s cubic-bezier(.2,.7,.2,1); }
  [data-anim="fade-up"]    { transform: translateY(40px); }
  [data-anim="fade-down"]  { transform: translateY(-30px); }
  [data-anim="fade-left"]  { transform: translateX(-50px); }
  [data-anim="fade-right"] { transform: translateX(50px); }
  [data-anim="zoom"]       { transform: scale(.92); }
  [data-anim="rise"]       { transform: translateY(60px) scale(.96); }
  [data-anim="blur"]       { filter: blur(14px); transform: translateY(20px); }
  [data-anim="tilt"]       { transform: perspective(900px) rotateX(12deg) translateY(40px); transform-origin: 50% 100%; }
  [data-anim].is-in        { opacity: 1; transform: none; filter: none; }
  [data-anim-stagger] > *  { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  [data-anim-stagger].is-in > * { opacity: 1; transform: none; }
  [data-anim-stagger].is-in > *:nth-child(1) { transition-delay: .05s; }
  [data-anim-stagger].is-in > *:nth-child(2) { transition-delay: .15s; }
  [data-anim-stagger].is-in > *:nth-child(3) { transition-delay: .25s; }
  [data-anim-stagger].is-in > *:nth-child(4) { transition-delay: .35s; }
  [data-anim-stagger].is-in > *:nth-child(5) { transition-delay: .45s; }
  [data-anim-stagger].is-in > *:nth-child(6) { transition-delay: .55s; }
  .hero [data-anim-on-load] { opacity: 0; transform: translateY(28px); animation: heroIn 1s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero [data-anim-on-load][data-delay="1"] { animation-delay: .15s; }
  .hero [data-anim-on-load][data-delay="2"] { animation-delay: .3s; }
  .hero [data-anim-on-load][data-delay="3"] { animation-delay: .45s; }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(14,26,20,0.7);
  padding: 6px 16px;
  border: 1px solid rgba(14,26,20,0.15);
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.eyebrow.on-dark {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: rgba(14,26,20,0.06);
  box-shadow: 0 6px 24px -16px rgba(14,26,20,0.18);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 32px; height: 84px; } }

.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img {
  height: 40px;
  width: auto;
}
@media (min-width: 768px) { .nav-logo img { height: 46px; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  color: rgba(14,26,20,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--orange); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  box-shadow: 0 6px 18px -8px rgba(255,90,31,0.55);
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(255,90,31,0.65);
}
.btn-primary:active { transform: translateY(0); }

.nav-cta { display: none; }
@media (min-width: 700px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  border-radius: 8px;
  margin-left: auto;
}
@media (min-width: 900px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(14,26,20,0.06);
  background: #fff;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(14,26,20,0.05);
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: 0; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 112px 0 56px;
  background: var(--paper);
  overflow: visible;
}
@media (min-width: 1024px) { .hero { padding: 128px 0 72px; } }

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(40px, 7.6vw, 92px);
}
.hero h1 .accent {
  color: var(--accent);
  display: block;
  margin-top: 8px;
}
.hero-lead {
  margin: 28px auto 0;
  font-size: 17px;
  color: rgba(14,26,20,0.7);
  line-height: 1.65;
  max-width: 620px;
  text-wrap: pretty;
}
@media (min-width: 768px) { .hero-lead { font-size: 19px; } }

.stats {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 880px;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.stat-num {
  font-size: clamp(40px, 5.6vw, 64px);
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label { margin-top: 14px; font-weight: 600; color: var(--ink); font-size: 15px; }
.stat-sub { margin-top: 6px; font-size: 13px; color: rgba(14,26,20,0.55); line-height: 1.45; }

.curved-badge {
  display: none;
  position: absolute;
  right: 16px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1024px) {
  .curved-badge { display: block; right: 24px; bottom: -56px; width: 200px; height: 200px; }
}
@media (min-width: 1280px) {
  .curved-badge { right: 40px; width: 220px; height: 220px; }
}
.curved-badge svg {
  animation: spin 22s linear infinite;
  transform-origin: center;
  width: 100%;
  height: 100%;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   PARTNERS BAND
   ========================================= */
.partners {
  background: var(--forest);
  color: #fff;
  padding: 24px 0;
}
.partners-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) { .partners-inner { padding: 0 32px; } }
@media (min-width: 768px) {
  .partners-inner { flex-direction: row; justify-content: space-between; gap: 32px; }
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) { .partner-logos { gap: 36px; } }

.partners-strip { height: 56px; width: auto; max-width: 100%; display: block; object-fit: contain; }
@media (max-width: 600px) { .partners-strip { height: 44px; } }

.partners-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.55;
}
@media (min-width: 768px) { .partners-tagline { text-align: right; } }

/* =========================================
   SECTIONS - GENERAL
   ========================================= */
section { padding: 64px 0; }
@media (min-width: 1024px) { section { padding: 88px 0; } }

.section-head { text-align: center; max-width: 760px; margin: 0 auto; }
.section-head.left { text-align: left; max-width: none; margin: 0; }
.section-head h2 { font-size: clamp(30px, 4.8vw, 56px); }
.section-head p {
  margin-top: 24px;
  font-size: 16px;
  color: rgba(14,26,20,0.7);
  line-height: 1.65;
  text-wrap: pretty;
}
@media (min-width: 768px) { .section-head p { font-size: 17px; } }

/* =========================================
   SOLUSI
   ========================================= */
#solusi { background: var(--paper); }
.solusi-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .solusi-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.phone-frame {
  background: #FAFAFA;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
}
.phone-frame img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.feature-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--mist);
  padding: 18px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  transition: background .2s ease, transform .2s ease;
}
.feature-pill:hover { background: #ECEEE6; transform: translateX(4px); }
@media (min-width: 768px) { .feature-pill { font-size: 16px; } }
.check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-circle svg { width: 14px; height: 14px; }

/* =========================================
   CARA KERJA
   ========================================= */
#cara-kerja {
  background: var(--forest-2);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#cara-kerja::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, #1E5B3F 0%, transparent 45%),
    radial-gradient(circle at 80% 75%, #1E5B3F 0%, transparent 45%);
  opacity: 0.22;
  pointer-events: none;
}

.cara-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .cara-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
  .cara-intro { position: sticky; top: 120px; align-self: start; }
}
.cara-grid h2 { font-size: clamp(32px, 5vw, 60px); }
.cara-grid .lead {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.steps { position: relative; }
.steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,90,31,0.35) 8%, rgba(255,90,31,0.35) 92%, transparent 100%);
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px -6px rgba(255,90,31,0.45);
}
.step-card {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  border-radius: 16px;
  padding: 20px 22px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.step-card:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.step-title { font-weight: 600; font-size: 17px; }
.step-card p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* =========================================
   PERMASALAHAN
   ========================================= */
#permasalahan { background: var(--paper); }
.permasalahan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) { .permasalahan-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.permasalahan-grid h2 { font-size: clamp(32px, 5vw, 60px); }
.permasalahan-grid .lead {
  margin-top: 24px;
  color: rgba(14,26,20,0.7);
  font-size: 18px;
  line-height: 1.65;
  max-width: 440px;
  text-wrap: pretty;
}
.problem-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-pill {
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  padding: 16px 28px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}
.problem-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* =========================================
   FULL-BLEED PHOTO
   ========================================= */
.photo-band { background: var(--paper); }
.photo-band img {
  width: 100%;
  filter: grayscale(100%);
  display: block;
  max-height: 360px;
  object-fit: cover;
}

/* =========================================
   MENGAPA BERBEDA
   ========================================= */
#mengapa { background: var(--paper); }
#mengapa h2 { font-size: clamp(32px, 5vw, 60px); max-width: 900px; }

.diff-list {
  margin-top: 56px;
  border-top: 1px solid rgba(14,26,20,0.1);
}
.diff-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(14,26,20,0.1);
  align-items: center;
  transition: background .2s ease;
}
.diff-row:hover { background: rgba(14,26,20,0.015); }
@media (min-width: 768px) {
  .diff-row { grid-template-columns: 60px 1fr 1.5fr; gap: 24px; }
}
.diff-num {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(14,26,20,0.35);
}
.diff-title { font-weight: 600; font-size: 18px; }
.diff-desc { color: rgba(14,26,20,0.65); font-size: 15px; line-height: 1.55; }
@media (min-width: 768px) { .diff-desc { padding-left: 32px; } }
@media (max-width: 767px) {
  .diff-desc { grid-column: 1 / -1; }
  .diff-title { grid-column: 2; }
}

/* =========================================
   YANG KAMI BANGUN
   ========================================= */
.yang-kami {
  padding: 32px 0 48px;
  background: var(--paper);
}
.yang-kami-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 24px;
  background: var(--mist);
  border-radius: 24px;
}
@media (min-width: 768px) { .yang-kami-card { padding: 56px; } }
.yang-kami-card .eyebrow { background: var(--paper); }
.yang-kami-card h2 {
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.4;
  font-weight: 700;
  text-wrap: pretty;
}

/* =========================================
   SEKTOR PENGGUNA
   ========================================= */
#sektor-pengguna {
  background: var(--forest-2);
  color: #fff;
}
#sektor-pengguna .section-head h2 { font-size: clamp(32px, 5vw, 60px); }
#sektor-pengguna .section-head p { color: rgba(255,255,255,0.7); }

.sektor-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .sektor-grid { grid-template-columns: 1fr 1fr; } }

.sektor-card {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  border-radius: 24px;
  padding: 32px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
@media (min-width: 768px) { .sektor-card { padding: 40px; } }
.sektor-card:hover {
  border-color: rgba(255,90,31,0.45);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.sektor-card h3 { font-weight: 700; font-size: 22px; margin-bottom: 20px; }
.sektor-card ul { display: flex; flex-direction: column; gap: 4px; }
.sektor-card ul li {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.sektor-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 10px;
}

/* =========================================
   TESTIMONI
   ========================================= */
#testimoni {
  background: var(--paper);
  overflow: hidden;
  padding-bottom: 88px;
}
#testimoni .section-head h2 { font-size: clamp(32px, 5vw, 60px); }

.testi-track-wrap {
  margin-top: 56px;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 80s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--mist);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testi-quote {
  color: rgba(14,26,20,0.28);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 0.6;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 14px;
  color: rgba(14,26,20,0.85);
  line-height: 1.65;
  flex: 1;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.testi-meta img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testi-role { font-size: 12px; color: rgba(14,26,20,0.55); margin-top: 2px; }

/* =========================================
   FINAL CTA
   ========================================= */
.cta-section {
  padding: 32px 0 64px;
  background: var(--paper);
}
.cta-card {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--forest);
  color: #fff;
  border-radius: 28px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 220px;
}
@media (min-width: 768px) {
  .cta-card {
    padding: 64px 56px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(30,91,63,0.45), transparent 60%);
  pointer-events: none;
}
.cta-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.cta-content h2 { font-size: clamp(26px, 4vw, 48px); }
.cta-content p { margin-top: 12px; color: rgba(255,255,255,0.75); font-size: 15px; max-width: 75%; }
@media (min-width: 768px) {
  .cta-content p { max-width: none; font-size: 16px; margin-top: 16px; }
  .cta-content h2 { font-size: clamp(28px, 4vw, 48px); }
}
.cta-content .btn-primary { margin-top: 20px; }

.cta-badge {
  position: absolute;
  right: -90px;
  bottom: -10px;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}
@media (min-width: 768px) {
  .cta-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 200px;
    height: 200px;
    align-self: center;
    opacity: 1;
  }
}
.cta-badge svg {
  animation: spin 22s linear infinite;
  transform-origin: center;
  width: 100%;
  height: 100%;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--paper);
  border-top: 1px solid rgba(14,26,20,0.08);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1.4fr 0.8fr;
    padding: 64px 32px 48px;
    gap: 56px;
  }
}
.footer-logo img {
  height: 56px;
  width: auto;
}

.footer-contact {
  font-size: 14px;
  color: rgba(14,26,20,0.75);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact .name {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 15px;
}
.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  transition: color .2s;
}
.contact-row svg { width: 14px; height: 14px; flex-shrink: 0; }
.contact-row:hover { color: var(--orange); }
.footer-contact .address {
  margin-top: 8px;
  line-height: 1.6;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 4px; }
.footer-nav li { padding: 4px 0; }
.footer-nav a {
  color: rgba(14,26,20,0.75);
  font-size: 14px;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--orange); }

.footer-copy {
  border-top: 1px solid rgba(14,26,20,0.08);
  padding: 22px 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(14,26,20,0.55);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .testi-track,
  .curved-badge svg,
  .cta-badge svg { animation: none !important; }
}
