/* =========================================================================
   Artha — Profit Analytics for Indian D2C  |  Design System v2
   Refined, premium, light. Deep forest-green brand. No build step.
   ========================================================================= */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5faf7;        /* very light mint */
  --bg-alt: #f7f9fb;         /* very light slate */
  --card: #ffffff;
  --line: #e9eef2;
  --line-2: #eef2f6;

  /* Ink / text */
  --ink: #101a17;
  --ink-2: #3f4b47;
  --muted: #6b7770;

  /* Brand — deep forest green */
  --green: #0c5d43;
  --green-700: #094a36;
  --green-800: #073827;
  --emerald: #10b981;        /* positive accents / charts */
  --mint-100: #e7f4ee;
  --mint-200: #c9e8da;

  /* Signals */
  --danger: #dc2b3f;
  --danger-soft: #fdecee;
  --amber: #d98324;

  /* Effects */
  --grad-hero: radial-gradient(55% 55% at 12% 6%, #d9f0e480 0%, transparent 60%),
               radial-gradient(45% 45% at 92% 0%, #e3ece980 0%, transparent 55%),
               radial-gradient(40% 40% at 78% 92%, #eef3f080 0%, transparent 60%);
  --shadow-xs: 0 1px 2px rgba(16,26,23,.05);
  --shadow-sm: 0 2px 8px rgba(16,26,23,.06);
  --shadow-md: 0 10px 30px rgba(16,26,23,.08);
  --shadow-lg: 0 30px 70px rgba(16,26,23,.12);

  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { line-height: 1.14; letter-spacing: -.02em; margin: 0; font-weight: 800; }
h1 { letter-spacing: -.03em; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--alt { background: var(--bg-alt); }
.center { text-align: center; }
.gt { color: var(--green); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--green-700);
  background: var(--mint-100); border: 1px solid var(--mint-200); padding: 7px 14px; border-radius: 999px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }
.eyebrow.plain::before { display: none; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 620px; font-weight: 400; }
.center .lead { margin-left: auto; margin-right: auto; }
.h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.muted { color: var(--muted); }
.sec-head { max-width: 660px; margin: 0 auto 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-weight: 650; font-size: .96rem; border-radius: 11px; padding: 12px 20px;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(12,93,67,.22); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(12,93,67,.30); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: #dbe3e8; }
.btn-lg { padding: 15px 26px; font-size: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(12px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-xs); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; }
.brand__mark {
  width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
  background: var(--green); color: #fff; font-weight: 900; font-size: .9rem;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--ink-2); font-weight: 550; font-size: .94rem; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .login { font-weight: 600; font-size: .94rem; color: var(--ink-2); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.5rem; }

/* ---------- Hero (centered) ---------- */
.hero { position: relative; padding: 80px 0 72px; overflow: hidden; text-align: center; }
.hero::before { content: ""; position: absolute; inset: -10% -10% auto -10%; height: 760px; z-index: -2; background: var(--grad-hero); }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: -1; animation: drift 20s ease-in-out infinite; }
.blob--1 { width: 380px; height: 380px; background: #bfe9d4; top: -90px; left: -40px; }
.blob--2 { width: 320px; height: 320px; background: #d6e4dd; top: 0; right: -40px; animation-delay: -7s; }
.blob--3 { width: 300px; height: 300px; background: #e6efe9; bottom: -140px; left: 36%; animation-delay: -12s; }
@keyframes drift { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(26px,-22px) scale(1.05);} 66%{transform:translate(-20px,16px) scale(.97);} }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); max-width: 880px; margin: 18px auto 0; }
.u-swash { position: relative; white-space: nowrap; }
.u-swash::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.12em; height: .16em; border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald), var(--green)); opacity: .55;
}
.hero__sub { margin: 20px auto 0; font-size: 1.1rem; color: var(--muted); max-width: 600px; font-weight: 400; }
.hero__cta { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__trust { margin-top: 16px; color: var(--muted); font-size: .86rem; }

/* ---------- Hero dashboard composition ---------- */
.hero-dash {
  margin: 52px auto 0; max-width: 960px;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; text-align: left;
}
.dash-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 20px; }
.dash-main { display: flex; flex-direction: column; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.dash-label { font-size: .82rem; color: var(--muted); font-weight: 600; }
.dash-pill { font-size: .76rem; font-weight: 700; color: var(--ink-2); background: var(--bg-alt); border: 1px solid var(--line); padding: 4px 10px; border-radius: 8px; }
.dash-profit { font-size: 2.3rem; font-weight: 900; letter-spacing: -.03em; }
.dash-delta { color: var(--emerald); font-weight: 700; font-size: .85rem; margin-left: 8px; }
.chart { display: flex; align-items: flex-end; gap: 8px; height: 150px; margin-top: auto; padding-top: 18px; }
.chart i { flex: 1; border-radius: 6px 6px 0 0; height: 8%; background: #cfe8dd; transition: height 1.1s var(--ease); }
.chart i.hot { background: linear-gradient(180deg, var(--emerald), var(--green)); }
.side-cards { display: grid; grid-template-rows: auto auto 1fr; gap: 16px; }
.s-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 16px; }
.s-card .top { display: flex; justify-content: space-between; align-items: center; }
.s-card .lbl { font-size: .8rem; color: var(--muted); font-weight: 600; }
.s-card .val { font-size: 1.4rem; font-weight: 800; margin-top: 6px; }
.s-card .sub { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.s-card.red .val { color: var(--danger); }
.s-icon { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--bg-alt); color: var(--muted); }
.s-card.red .s-icon { background: var(--danger-soft); color: var(--danger); }
.mini-track { height: 6px; background: var(--bg-alt); border-radius: 999px; margin-top: 10px; overflow: hidden; }
.mini-track i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg,var(--emerald),var(--green)); width: 0; transition: width 1.1s var(--ease); }
.card-dark { background: linear-gradient(150deg, var(--green), var(--green-800)); color: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; justify-content: center; }
.card-dark .lbl { color: #bfe9d4; font-size: .8rem; font-weight: 600; }
.card-dark .big { font-size: 1.9rem; font-weight: 900; margin-top: 4px; }
.card-dark .sub { color: #cfeadd; font-size: .78rem; margin-top: 4px; }

/* ---------- Trust logos ---------- */
.trust { padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust__cap { text-align: center; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.trust__logos { margin-top: 18px; display: flex; gap: 44px; justify-content: center; align-items: center; flex-wrap: wrap; }
.trust__logos span { color: #9aa6a0; font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }

/* ---------- Feature cards (refined, line icons) ---------- */
.fcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-xs); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fcard .tile { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--mint-100); color: var(--green); margin-bottom: 16px; }
.fcard h3 { font-size: 1.1rem; margin-bottom: 8px; }
.fcard p { color: var(--muted); font-size: .96rem; }
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { width: 24px; height: 24px; }

/* ---------- Generic pain cards (kept for other pages) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.pain { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.pain:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; background: var(--mint-100); color: var(--green); margin-bottom: 14px; }
.pain h3 { font-size: 1.06rem; margin-bottom: 6px; }
.pain p { color: var(--muted); font-size: .95rem; }

/* ---------- Feature rows (alternating) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 36px 0; }
.feature:nth-child(even) .feature__media { order: -1; }
.feature h3 { font-size: clamp(1.4rem,2.6vw,1.9rem); margin-bottom: 12px; }
.feature p { color: var(--ink-2); font-size: 1.02rem; max-width: 460px; }
.feature .tick { margin-top: 18px; display: grid; gap: 10px; padding: 0; }
.feature .tick li { list-style: none; display: flex; gap: 10px; align-items: center; color: var(--ink-2); font-weight: 550; }
.feature .tick svg { flex: none; color: var(--green); }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 22px; position: relative; overflow: hidden; }
.panel > * { position: relative; z-index: 1; }
.dash-label.danger { color: var(--danger); }
.row-bars { display: grid; gap: 12px; margin-top: 12px; }
.rbar { display: grid; grid-template-columns: 92px 1fr 64px; gap: 10px; align-items: center; font-size: .85rem; font-weight: 600; }
.rbar .track { height: 11px; background: var(--bg-alt); border-radius: 999px; overflow: hidden; }
.rbar .fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg,var(--emerald),var(--green)); width: 0; transition: width 1.1s var(--ease); }
.rbar .fill.red { background: linear-gradient(90deg,#f0738a,var(--danger)); }
.rbar .fill.indigo { background: linear-gradient(90deg,#7aa79a,var(--green)); }
.ptable { width: 100%; border-collapse: collapse; font-size: .9rem; }
.ptable th { text-align: left; color: var(--muted); font-weight: 600; padding: 8px; font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; }
.ptable td { padding: 10px 8px; border-top: 1px solid var(--line); font-weight: 600; }
.tag-pos { color: var(--green-700); background: var(--mint-100); padding: 3px 8px; border-radius: 7px; font-size: .8rem; }
.tag-neg { color: var(--danger); background: var(--danger-soft); padding: 3px 8px; border-radius: 7px; font-size: .8rem; }
.phone { width: 230px; margin: 0 auto; background: #fff; border: 8px solid #101a17; border-radius: 34px; box-shadow: var(--shadow-lg); padding: 16px 14px; position: relative; }
.phone::before { content:""; position:absolute; top:12px; left:50%; transform:translateX(-50%); width:66px; height:5px; border-radius:999px; background:#101a17;}
.phone .p-net { font-size: 1.6rem; font-weight: 900; margin-top: 14px; }
.mini-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mini { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; }
.mini b { display: block; font-size: .98rem; }
.mini span { font-size: .68rem; color: var(--muted); font-weight: 600; }
.mini.red b { color: var(--danger); }
.mini.indigo b { color: var(--green); }

/* ---------- Testimonial band (dark green) ---------- */
.tband { background: linear-gradient(150deg, var(--green), var(--green-800)); color: #fff; }
.tband .quote { max-width: 820px; margin: 0 auto; text-align: center; }
.tband .qmark { font-size: 3rem; line-height: 1; color: #58a585; font-weight: 900; }
.tband blockquote { font-size: clamp(1.3rem,2.6vw,1.9rem); font-weight: 700; letter-spacing: -.02em; margin: 6px 0 24px; }
.tband .who { display: inline-flex; align-items: center; gap: 12px; }
.tband .ava { width: 42px; height: 42px; border-radius: 50%; background: #3f8a6c; display: grid; place-items: center; font-weight: 800; }
.tband .who b { display: block; } .tband .who span { color: #bfe9d4; font-size: .88rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-xs); }
.step__n { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Integrations ---------- */
.logos { display: grid; grid-template-columns: repeat(7,1fr); gap: 12px; }
.logo { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 8px; text-align: center; font-weight: 650; font-size: .85rem; color: var(--ink-2); box-shadow: var(--shadow-xs); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo .em { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.soon { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.soon span { background: var(--bg-alt); border: 1px dashed #c7d2cc; color: var(--muted); border-radius: 999px; padding: 7px 14px; font-size: .82rem; font-weight: 600; }

/* ---------- Pricing tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-xs); position: relative; display: flex; flex-direction: column; }
.tier.pop { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.tier .pop-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.tier .name { font-weight: 700; font-size: 1.05rem; }
.tier .vol { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.tier .price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.03em; margin: 16px 0 0; }
.tier .price span { font-size: .9rem; color: var(--muted); font-weight: 600; }
.tier .rate { color: var(--green-700); font-weight: 700; font-size: .85rem; margin-top: 4px; }
.tier ul { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 11px; }
.tier li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink-2); font-size: .94rem; font-weight: 500; }
.tier li svg { flex: none; color: var(--green); margin-top: 2px; }
.tier .btn { margin-top: auto; width: 100%; justify-content: center; }
.price-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 22px; }

/* legacy single price card (used on pricing.html) */
.price-card { max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); padding: 34px; text-align: center; position: relative; overflow: hidden; }
.price-card::before { content:""; position:absolute; inset:0 0 auto 0; height:5px; background: var(--green); }
.price-card .ribbon { display:inline-block; background:var(--mint-100); color:var(--green-700); font-weight:700; font-size:.8rem; padding:6px 14px; border-radius:999px; border:1px solid var(--mint-200); }
.price-card .amt { font-size: 3.2rem; font-weight: 900; letter-spacing: -.03em; margin: 14px 0 2px; }
.price-card .amt span { font-size: 1.05rem; color: var(--muted); font-weight: 700; }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; text-align: left; }
.price-card li { display: flex; gap: 10px; align-items: center; color: var(--ink-2); font-weight: 550; }
.roi { color: var(--muted); font-size: .9rem; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-xs); }
.qa button { width: 100%; text-align: left; background: none; border: 0; padding: 18px 20px; font-weight: 650; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; color: var(--ink); }
.qa .a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); color: var(--muted); padding: 0 20px; }
.qa .a p { padding-bottom: 18px; }
.qa.open .a { max-height: 260px; }
.qa.open .chev { transform: rotate(45deg); }
.chev { transition: transform .3s var(--ease); color: var(--green); font-weight: 900; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 24px; padding: 60px 40px; text-align: center; background: linear-gradient(150deg, var(--green), var(--green-800)); color: #fff; }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-band .lead { color: #cfeadd; }
.form-inline { margin: 26px auto 0; max-width: 720px; display: grid; grid-template-columns: 1.2fr 1.2fr 1fr auto; gap: 10px; }
.form-inline input, .form-inline select { padding: 14px 16px; border-radius: 12px; border: 1px solid transparent; background: #fff; font: inherit; color: var(--ink); }
.form-inline input:focus, .form-inline select:focus { outline: 3px solid #58a58566; }

/* ---------- Footer ---------- */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.footer a { display: block; color: var(--ink-2); font-weight: 500; padding: 5px 0; font-size: .93rem; }
.footer a:hover { color: var(--green-700); }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: .85rem; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 8px; }
.legal h2 { font-size: 1.3rem; margin: 32px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 20px; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-dash, .feature, .grid-2, .footer__grid { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .fcards, .logos, .grid-3, .steps, .tiers { grid-template-columns: 1fr; }
  .tier.pop { transform: none; }
  .form-inline { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 18px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); gap: 16px; }
  .section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__logos { gap: 24px; }
}
