/* ============================================================
   TARKET — Premium grocery delivery brand site
   style.css  |  Pure CSS, mobile-first, lightweight
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand greens */
  --green-900: #07331F;
  --green-800: #0A4A2E;
  --green-700: #0B7A4C;   /* primary */
  --green-600: #109960;
  --green-500: #16B873;   /* bright accent */
  --green-300: #7FD9AE;
  --green-100: #E6F6EE;
  --green-50:  #F2FBF6;

  /* Neutrals */
  --ink:   #0F1B14;       /* headings */
  --body:  #3E4D45;       /* body text */
  --muted: #6C7C73;       /* secondary text */
  --line:  #E4EDE8;       /* borders */
  --white: #FFFFFF;
  --cloud: #F6F9F7;       /* alt section bg */

  /* Support accents (used sparingly) */
  --gold:  #E8A93B;       /* FSSAI / trust highlight */
  --wa:    #25D366;       /* WhatsApp */

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15,27,20,.05), 0 1px 3px rgba(15,27,20,.06);
  --sh-md: 0 6px 18px rgba(11,122,76,.08), 0 2px 6px rgba(15,27,20,.05);
  --sh-lg: 0 20px 48px rgba(11,122,76,.14), 0 8px 18px rgba(15,27,20,.06);
  --sh-ring: 0 0 0 4px rgba(22,184,115,.18);

  /* Radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Type */
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 800;
}

::selection { background: var(--green-300); color: var(--green-900); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 9vw, 110px); }
.section--tint { background: var(--green-50); }
.section--cloud { background: var(--cloud); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}
.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 14px 0 0; }

.lead { font-size: 1.12rem; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  box-shadow: var(--sh-md);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn--ghost {
  background: var(--white);
  color: var(--green-800);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--green-300); transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: var(--sh-md); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn--lg { padding: 16px 30px; font-size: 1.04rem; }
.btn--block { width: 100%; }

/* Google Play badge button */
.gp-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 11px 20px 11px 18px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--sh-md);
}
.gp-badge:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.gp-badge svg { width: 26px; height: 26px; }
.gp-badge .gp-text { line-height: 1.1; text-align: left; }
.gp-badge .gp-text small { display: block; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.gp-badge .gp-text b { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(15,27,20,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand .logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand .logo-word span { color: var(--green-700); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  color: var(--body);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--green-700); background: var(--green-50); }
.nav-links a.active { color: var(--green-700); background: var(--green-100); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 86px); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 88% -8%, var(--green-100), transparent 60%),
    radial-gradient(760px 420px at -6% 108%, #EAF7F0, transparent 60%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.1rem, 5.6vw, 3.7rem);
  letter-spacing: -.035em;
}
.hero-copy h1 .hl { color: var(--green-700); }
.hero-copy .lead { margin: 20px 0 28px; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-trust .ht {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--green-800);
}
.hero-trust .ht svg { width: 18px; height: 18px; color: var(--green-600); }

.hero-art { position: relative; }
.hero-art .blob { width: 100%; height: auto; }
.float { animation: float 6s ease-in-out infinite; }
.float.slow { animation-duration: 8s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Marquee strip of credentials */
.cred-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
  padding-block: 18px;
}
.cred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 30px;
}
.cred-row .cred {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--muted);
}
.cred-row .cred svg { width: 20px; height: 20px; color: var(--green-600); }
.cred-row .cred b { color: var(--ink); font-weight: 700; }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--green-100); }
.feature-card .ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 20px;
}
.feature-card .ico svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- How it works (timeline) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 27px; left: 7%; right: 7%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-300) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step .dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-300);
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: var(--sh-md);
  transition: transform .3s, background .3s, color .3s;
}
.step:hover .dot { background: var(--green-700); color: #fff; transform: scale(1.06); }
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Trust badges ---------- */
.badge-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.trust-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.trust-badge:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.trust-badge .tb-ico {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-100), #DCF1E6);
  color: var(--green-700);
}
.trust-badge .tb-ico svg { width: 26px; height: 26px; }
.trust-badge h4 { font-size: 1rem; }
.trust-badge p { margin: 4px 0 0; font-size: .82rem; color: var(--muted); }

/* ---------- App showcase ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}
.app-points { list-style: none; display: grid; gap: 18px; margin-top: 26px; }
.app-points li { display: flex; gap: 14px; align-items: flex-start; }
.app-points .pico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--green-100);
  color: var(--green-700);
}
.app-points .pico svg { width: 22px; height: 22px; }
.app-points h4 { font-size: 1.06rem; margin-bottom: 3px; }
.app-points p { margin: 0; font-size: .95rem; color: var(--muted); }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-wrap::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--green-100), transparent 68%);
  border-radius: 50%;
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 290px;
  background: #0d1411;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--sh-lg);
}
.phone .screen {
  background: var(--green-50);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19.2;
}
.phone .notch {
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0d1411;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.app-ui { display: flex; flex-direction: column; height: 100%; font-size: 12px; }
.app-ui .ui-top {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  padding: 38px 16px 16px;
}
.app-ui .ui-top .loc { font-size: 10px; opacity: .85; }
.app-ui .ui-top .addr { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.app-ui .ui-search {
  margin: 14px 12px 0;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  color: var(--muted);
  box-shadow: var(--sh-sm);
  font-size: 11px;
}
.app-ui .ui-track {
  margin: 14px 12px 0;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--sh-sm);
}
.app-ui .ui-track .tt { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 12px; }
.app-ui .ui-track .badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 4px;
}
.app-ui .ui-prog { display: flex; align-items: center; margin-top: 14px; }
.app-ui .ui-prog .pdot { width: 14px; height: 14px; border-radius: 50%; background: var(--green-500); flex: none; }
.app-ui .ui-prog .pdot.idle { background: var(--line); }
.app-ui .ui-prog .pline { height: 3px; flex: 1; background: var(--green-300); }
.app-ui .ui-prog .pline.idle { background: var(--line); }
.app-ui .ui-cats { margin: 14px 12px 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.app-ui .ui-cats .cat { background: #fff; border-radius: 10px; padding: 8px 4px; text-align: center; box-shadow: var(--sh-sm); }
.app-ui .ui-cats .cat .cdot { width: 24px; height: 24px; border-radius: 8px; margin: 0 auto 4px; }
.app-ui .ui-cats .cat span { font-size: 8.5px; color: var(--muted); }

/* ---------- Support cards ---------- */
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.support-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.support-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.support-card .sc-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  background: var(--green-100);
  color: var(--green-700);
}
.support-card.wa .sc-ico { background: #E4FBEC; color: var(--wa); }
.support-card .sc-ico svg { width: 26px; height: 26px; }
.support-card h4 { font-size: 1.04rem; margin-bottom: 4px; }
.support-card a, .support-card p { font-size: 1rem; color: var(--green-800); font-family: var(--font-display); font-weight: 600; word-break: break-word; }
.support-card small { display: block; color: var(--muted); font-weight: 400; font-family: var(--font-body); margin-top: 4px; font-size: .85rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 64px);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(540px 280px at 85% -20%, rgba(255,255,255,.12), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 14px auto 28px; }
.cta-band .gp-badge { background: #fff; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.72);
  padding-block: clamp(48px, 7vw, 72px) 28px;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.site-footer .brand .logo-word { color: #fff; }
.site-footer .brand .logo-word span { color: var(--green-300); }
.footer-about { margin: 16px 0 0; max-width: 34ch; color: rgba(255,255,255,.6); }
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.72); transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-legal { display: grid; gap: 8px; }
.footer-legal .li { display: flex; gap: 8px; font-size: .86rem; color: rgba(255,255,255,.6); }
.footer-legal .li b { color: rgba(255,255,255,.92); font-family: var(--font-display); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 360px at 92% -30%, var(--green-100), transparent 60%),
    var(--green-50);
  padding-block: clamp(46px, 7vw, 78px);
  border-bottom: 1px solid var(--line);
}
.breadcrumb { display: flex; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb span { color: var(--green-700); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: var(--muted); margin: 14px 0 0; max-width: 60ch; }
.updated { display: inline-block; margin-top: 18px; font-size: .85rem; color: var(--green-800); background: var(--green-100); padding: 6px 14px; border-radius: var(--r-pill); font-weight: 600; }

/* ---------- Legal / content layout ---------- */
.doc-layout { display: grid; grid-template-columns: 250px 1fr; gap: 50px; align-items: start; }
.doc-toc {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--sh-sm);
}
.doc-toc h5 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.doc-toc ul { list-style: none; display: grid; gap: 4px; }
.doc-toc a {
  display: block;
  font-size: .9rem;
  color: var(--body);
  padding: 7px 12px;
  border-radius: 9px;
  border-left: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.doc-toc a:hover, .doc-toc a.active { background: var(--green-50); color: var(--green-700); border-left-color: var(--green-500); }

.doc-body { max-width: 760px; }
.doc-body h2 {
  font-size: 1.5rem;
  margin: 44px 0 14px;
  padding-top: 8px;
  scroll-margin-top: 96px;
}
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 { font-size: 1.12rem; margin: 26px 0 8px; }
.doc-body p { margin: 0 0 16px; }
.doc-body ul:not(.clean), .doc-body ol { margin: 0 0 18px; padding-left: 22px; display: grid; gap: 8px; }
.doc-body li { line-height: 1.6; }
.doc-body a { color: var(--green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.doc-body strong { color: var(--ink); }
.callout {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  margin: 0 0 22px;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--green-800); }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
  font-size: .96rem;
}
.info-table th, .info-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--line); }
.info-table th { background: var(--green-50); font-family: var(--font-display); color: var(--ink); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.ci-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.ci-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.ci-card .ci-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.ci-card .ci-ico svg { width: 23px; height: 23px; }
.ci-card h4 { font-size: 1rem; margin-bottom: 2px; }
.ci-card a, .ci-card p { display: block; color: var(--green-800); font-family: var(--font-display); font-weight: 600; margin: 0; word-break: break-word; }
.ci-card small { display: block; margin-top: 3px; color: var(--muted); font-weight: 400; font-family: var(--font-body); font-size: .85rem; }
.ci-card > div { min-width: 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--sh-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cloud);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
  box-shadow: var(--sh-ring);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .err { display: none; color: #C0392B; font-size: .84rem; margin-top: 6px; }
.field.invalid input, .field.invalid textarea { border-color: #E74C3C; }
.field.invalid .err { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 600;
  font-family: var(--font-display);
}
.form-status.show { display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--ink);
}
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--green-600); transition: transform .3s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

/* ---------- About / values ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px,5vw,60px); align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.value-card .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; margin-bottom: 16px; }
.value-card .ico svg { width: 25px; height: 25px; }
.value-card h3 { font-size: 1.14rem; margin-bottom: 7px; }
.value-card p { margin: 0; color: var(--muted); font-size: .97rem; }

.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 24px; text-align: center; box-shadow: var(--sh-sm);
}
.stat b { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--green-700); letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--green-700); color: #fff; padding: 10px 18px; border-radius: 10px; font-weight: 600;
}
.skip-link:focus { left: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-art { max-width: 460px; margin: 8px auto 0; }
  .showcase-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .showcase-grid .phone-wrap { order: -1; }
  .doc-layout { grid-template-columns: 1fr; gap: 26px; }
  .doc-toc { position: static; }
  .grid-3, .support-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    padding: 16px var(--gutter) 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.2,.7,.3,1);
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 13px 16px; font-size: 1.02rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .grid-3, .support-grid, .badge-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .hero-actions .gp-badge { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Official logo + finalize additions (additive, no redesign) ---------- */
.logo-img { height: 42px; width: auto; display: block; }
.footer-brand .logo-mark-img { height: 40px; width: auto; display: block; }
.footer-addr { margin-top: 14px; font-style: normal; color: rgba(255,255,255,.6); font-size: .86rem; line-height: 1.65; max-width: 34ch; }
.hero-timing { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--green-800); background: var(--green-100); padding: 9px 16px; border-radius: var(--r-pill); }
.hero-timing svg { width: 18px; height: 18px; color: var(--green-600); flex: none; }
.cta-mark { height: 56px; width: auto; margin: 0 auto 18px; display: block; filter: drop-shadow(0 8px 16px rgba(0,0,0,.28)); }
.addr-block { font-style: normal; line-height: 1.7; }
@media (max-width: 720px) { .logo-img { height: 34px; } }
