/* ══════════════════════════════════════════════
   FRONTIDA CARING SERVICES — Design System
   ══════════════════════════════════════════════ */
:root {
  --forest: #2E5E3A;
  --forest-deep: #1B3D24;
  --forest-dark: #142E1B;
  --sage: #5C9A63;
  --sage-light: #7BBF6E;
  --sage-pale: #E8F4E6;
  --sage-tint: #F3FAF2;
  --leaf: #A8D89A;
  --bark: #3A3A2D;
  --bark-light: #5A5A4D;
  --stone: #8A8A7D;
  --sand: #F7F5F0;
  --cream: #FDFBF7;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --shadow-s: 0 1px 4px rgba(30,60,36,.06);
  --shadow-m: 0 6px 24px rgba(30,60,36,.08);
  --shadow-l: 0 16px 48px rgba(30,60,36,.1);
  --r-s: 10px;
  --r-m: 16px;
  --r-l: 24px;
  --r-xl: 36px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--bark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest-dark);
}

/* ── Layout ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.sec { padding: 110px 0; }
.tc { text-align: center; }

/* ── Labels ── */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 20px;
}
.tag::before {
  content: ''; width: 32px; height: 2px;
  background: var(--sage-light); border-radius: 2px;
}
.sec-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.sec-desc {
  font-size: 1.05rem; color: var(--bark-light);
  line-height: 1.75; max-width: 600px;
}
.sec-desc.ctr { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: .92rem; padding: 15px 32px;
  border-radius: 60px; border: none; cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-fill {
  background: var(--forest); color: var(--white);
  box-shadow: 0 4px 18px rgba(46,94,58,.3);
}
.btn-fill:hover {
  background: var(--sage); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,94,58,.35);
}
.btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}
.btn-outline:hover { border-color: var(--sage-light); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--forest-dark); box-shadow: var(--shadow-m);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-l); }
.btn-sage {
  background: var(--sage); color: var(--white);
  box-shadow: 0 4px 18px rgba(92,154,99,.3);
}
.btn-sage:hover { background: var(--forest); transform: translateY(-2px); }
.btn-dark {
  background: var(--forest-dark); color: var(--white);
  box-shadow: 0 4px 18px rgba(20,46,27,.25);
}
.btn-dark:hover { background: var(--bark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 0;
  transition: all .4s ease;
}
.nav.stuck {
  background: rgba(253,251,247,.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 24px rgba(30,60,36,.06);
  padding: 10px 0;
}
.nav-in { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; transition: opacity .3s; }
.nav-logo:hover { opacity: .85; }
.nav-logo img { height: 62px; width: auto; transition: height .35s; }
.nav.stuck .nav-logo img { height: 44px; }
.nav-logo-dark { display: none; }
.nav.stuck .nav-logo-light { display: none; }
.nav.stuck .nav-logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.8); transition: color .3s;
}
.nav.stuck .nav-links a { color: var(--bark-light); }
.nav-links a:hover { color: var(--sage-light); }
.nav-cta {
  background: rgba(255,255,255,.12) !important;
  backdrop-filter: blur(8px);
  color: var(--white) !important;
  padding: 9px 24px !important; border-radius: 60px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
}
.nav.stuck .nav-cta {
  background: var(--forest) !important;
  border-color: transparent !important;
}
.nav-cta:hover { background: rgba(255,255,255,.22) !important; }
.nav.stuck .nav-cta:hover { background: var(--sage) !important; }
/* Light-bg nav (subpages) */
.nav-lt .nav-links a { color: var(--bark-light); }
.nav-lt .nav-cta { background: var(--forest) !important; border-color: transparent !important; }
.nav-lt .nav-cta:hover { background: var(--sage) !important; }
.nav-lt .nav-logo-light { display: none; }
.nav-lt .nav-logo-dark { display: block; }
.nav-lt .nav-ham span { background: var(--bark); }

.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-ham span {
  width: 24px; height: 2.5px; background: var(--white);
  border-radius: 3px; transition: all .3s;
}
.nav.stuck .nav-ham span { background: var(--bark); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--forest-dark) 0%, #234A2D 45%, var(--forest) 100%);
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,.022) 1px, transparent 0);
  background-size: 36px 36px;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 70% 45%, rgba(92,154,99,.12) 0%, transparent 70%),
              radial-gradient(ellipse 35% 55% at 25% 85%, rgba(168,216,154,.06) 0%, transparent 55%);
}
.hero-tree {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 860px; height: 860px;
  background: url('tree-bg.png') center/contain no-repeat;
  pointer-events: none;
}
.hero-body { position: relative; z-index: 2; padding: 150px 0 100px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 56px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(92,154,99,.14); border: 1px solid rgba(92,154,99,.22);
  color: var(--sage-light); padding: 7px 18px; border-radius: 60px;
  font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: 26px;
}
.hero-pill-dot {
  width: 7px; height: 7px; background: var(--sage-light);
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)}
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.2rem);
  color: var(--white); line-height: 1.08; margin-bottom: 10px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--leaf) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1rem; color: rgba(255,255,255,.38);
  font-style: italic; margin-bottom: 22px;
  font-family: 'Fraunces', serif; font-weight: 300;
}
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.65);
  line-height: 1.8; margin-bottom: 36px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; align-items: center; gap: 26px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.48); font-size: .82rem;
}
.hero-trust-ico {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.hero-trust-ico svg { width: 16px; height: 16px; color: var(--sage-light); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl); padding: 36px;
}
.hero-card-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage-light); margin-bottom: 22px;
}
.hero-card-list { display: flex; flex-direction: column; gap: 12px; }
.hero-card-row {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 16px; background: rgba(255,255,255,.04);
  border-radius: var(--r-s); border: 1px solid rgba(255,255,255,.05);
  transition: all .3s;
}
.hero-card-row:hover { background: rgba(255,255,255,.09); transform: translateX(5px); }
.hero-card-ico {
  width: 38px; height: 38px; background: rgba(92,154,99,.18);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.hero-card-ico svg { width: 18px; height: 18px; color: var(--sage-light); }
.hero-card-txt strong {
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: .9rem; color: #fff; display: block; margin-bottom: 1px;
}
.hero-card-txt span { font-size: .78rem; color: rgba(255,255,255,.42); }

/* ══════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════ */
.trust {
  background: var(--white);
  border-bottom: 1px solid rgba(30,60,36,.04);
  padding: 30px 0;
}
.trust-in {
  display: flex; align-items: center; justify-content: center;
  gap: 44px; flex-wrap: wrap;
}
.trust-i {
  display: flex; align-items: center; gap: 11px;
  color: var(--bark-light); font-size: .86rem; font-weight: 500;
}
.trust-ico {
  width: 38px; height: 38px; background: var(--sage-pale);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.trust-ico svg { width: 18px; height: 18px; color: var(--forest); }

/* ══════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════ */
.svc-bg { background: var(--sand); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 26px; margin-top: 52px;
}
.svc {
  background: var(--white); border-radius: var(--r-l);
  padding: 36px 30px; border: 1px solid rgba(30,60,36,.04);
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.svc::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg,var(--forest),var(--sage));
  opacity: 0; transition: opacity .35s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.svc:hover::after { opacity: 1; }
.svc-ico {
  width: 52px; height: 52px; background: var(--sage-pale);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; transition: all .4s;
}
.svc:hover .svc-ico { background: var(--forest); }
.svc-ico svg { width: 24px; height: 24px; color: var(--forest); transition: color .4s; }
.svc:hover .svc-ico svg { color: var(--white); }
.svc h3 { font-size: 1.2rem; margin-bottom: 10px; }
.svc p { font-size: .9rem; color: var(--bark-light); line-height: 1.7; }
.svc-list { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.svc-list li {
  display: flex; align-items: center; gap: 7px;
  font-size: .83rem; color: var(--bark-light);
}
.svc-list li svg { width: 15px; height: 15px; color: var(--sage); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how { background: var(--cream); }
.how-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 30px; margin-top: 52px; position: relative;
}
.how-grid::before {
  content: ''; position: absolute; top: 42px; left: 13%; right: 13%;
  height: 2px;
  background: repeating-linear-gradient(90deg,var(--sage-pale) 0,var(--sage-pale) 8px,transparent 8px,transparent 16px);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 60px; height: 60px; background: var(--white);
  border: 3px solid var(--sage-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Fraunces', serif; font-size: 1.35rem;
  color: var(--forest); position: relative; z-index: 2;
  transition: all .35s;
}
.step:hover .step-num {
  background: var(--forest); border-color: var(--forest);
  color: var(--white); transform: scale(1.1);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .86rem; color: var(--bark-light); line-height: 1.65; }

/* ══════════════════════════════════════════════
   WHY SECTION (dark)
   ══════════════════════════════════════════════ */
.why {
  background: var(--forest-dark); position: relative; overflow: hidden;
}
.why::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 55% at 78% 22%,rgba(92,154,99,.09) 0%,transparent 60%),
              radial-gradient(ellipse 35% 45% at 12% 85%,rgba(168,216,154,.05) 0%,transparent 50%);
}
.why .tag { color: var(--sage-light); }
.why .sec-title { color: #fff; }
.why .sec-desc { color: rgba(255,255,255,.55); }
.why-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 22px; margin-top: 52px; position: relative; z-index: 2;
}
.why-card {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-l); padding: 32px 28px;
  display: flex; gap: 18px; transition: all .3s;
}
.why-card:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.why-ico {
  width: 46px; height: 46px; background: rgba(92,154,99,.13);
  border-radius: 13px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.why-ico svg { width: 20px; height: 20px; color: var(--sage-light); }
.why-card h3 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1rem; color: #fff; margin-bottom: 6px;
}
.why-card p { font-size: .86rem; color: rgba(255,255,255,.48); line-height: 1.65; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.test { background: var(--cream); }
.test-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 26px; margin-top: 52px;
}
.tcard {
  background: var(--white); border-radius: var(--r-l);
  padding: 32px 28px; border: 1px solid rgba(30,60,36,.04);
  transition: all .35s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.tcard-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.tcard-stars svg { width: 16px; height: 16px; color: var(--gold); }
.tcard-q {
  font-size: .92rem; color: var(--bark-light);
  line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.tcard-who {
  display: flex; align-items: center; gap: 11px;
  padding-top: 16px; border-top: 1px solid rgba(30,60,36,.05);
}
.tcard-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-pale); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: .85rem;
  color: var(--forest);
}
.tcard-name strong { display: block; font-size: .88rem; color: var(--forest-dark); }
.tcard-name span { font-size: .78rem; color: var(--stone); }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq-bg { background: var(--sand); }
.faq-list { max-width: 760px; margin: 52px auto 0; }
.faq-item {
  background: var(--white); border-radius: var(--r-m);
  margin-bottom: 11px; border: 1px solid rgba(30,60,36,.04);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 26px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: .95rem; color: var(--forest-dark);
  background: none; border: none; width: 100%; text-align: left;
  gap: 14px; transition: color .3s;
}
.faq-q:hover { color: var(--forest); }
.faq-q svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; transition: transform .3s; }
.faq-item.on .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.on .faq-a { max-height: 400px; }
.faq-a-in { padding: 0 26px 22px; font-size: .9rem; color: var(--bark-light); line-height: 1.7; }

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta-ban {
  background: linear-gradient(135deg, var(--forest) 0%, #3A7E44 50%, var(--sage) 100%);
  position: relative; overflow: hidden;
}
.cta-ban::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 70% at 78% 28%,rgba(255,255,255,.06) 0%,transparent 60%);
}
.cta-ban-in {
  text-align: center; padding: 78px 0;
  position: relative; z-index: 2;
}
.cta-ban h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: #fff; margin-bottom: 16px;
}
.cta-ban p {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  max-width: 540px; margin: 0 auto 34px; line-height: 1.7;
}
.cta-ban-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.foot {
  background: var(--forest-dark); color: rgba(255,255,255,.45);
  padding: 60px 0 30px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.foot-logo { height: 42px; width: auto; margin-bottom: 14px; }
.foot-brand p { font-size: .86rem; line-height: 1.7; max-width: 280px; }
.foot h4 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 18px;
}
.foot ul li { margin-bottom: 11px; }
.foot ul li a { font-size: .86rem; color: rgba(255,255,255,.45); transition: color .3s; }
.foot ul li a:hover { color: var(--sage-light); }
.foot-bot {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════ */
.pg-contact { padding: 150px 0 80px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-top: 36px;
}
.c-form { display: flex; flex-direction: column; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: .86rem; font-weight: 600; color: var(--forest-dark); }
.fg input, .fg textarea, .fg select {
  padding: 13px 16px; border: 2px solid rgba(30,60,36,.08);
  border-radius: var(--r-s); font-family: 'Outfit', sans-serif;
  font-size: .92rem; color: var(--bark); background: var(--white);
  transition: border-color .3s; outline: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--sage); }
.fg textarea { min-height: 150px; resize: vertical; }
.fg input[type="file"] { padding: 11px; background: var(--sand); cursor: pointer; }
.c-info {
  background: var(--forest-dark); border-radius: var(--r-xl);
  padding: 42px; color: var(--white);
}
.c-info h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 22px; }
.c-info-row {
  display: flex; align-items: flex-start; gap: 13px;
  margin-bottom: 22px; color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.6;
}
.c-info-row strong { color: var(--white); display: block; margin-bottom: 2px; font-family: 'Outfit', sans-serif; }
.c-info-ico {
  width: 42px; height: 42px; background: rgba(92,154,99,.14);
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.c-info-ico svg { width: 18px; height: 18px; color: var(--sage-light); }

/* ══════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════ */
.pg-legal { padding: 150px 0 80px; }
.pg-legal h1 { font-size: 2rem; margin-bottom: 10px; }
.pg-legal .pg-meta { font-size: .86rem; color: var(--stone); margin-bottom: 36px; }
.legal { max-width: 780px; }
.legal h2 {
  font-size: 1.3rem; margin: 34px 0 14px;
  padding-top: 22px; border-top: 1px solid rgba(30,60,36,.07);
}
.legal h3 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--bark); margin: 20px 0 10px;
}
.legal p { font-size: .9rem; color: var(--bark-light); line-height: 1.75; margin-bottom: 12px; }
.legal ul, .legal ol { margin: 10px 0 16px 22px; }
.legal li {
  font-size: .9rem; color: var(--bark-light);
  line-height: 1.7; margin-bottom: 7px; list-style: disc;
}
.legal ol li { list-style: decimal; }
.legal strong { color: var(--bark); }
.legal a { color: var(--forest); }

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width:1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card-wrap { display: none; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .sec { padding: 75px 0; }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px 24px; gap: 0;
    box-shadow: var(--shadow-l); border-radius: 0 0 var(--r-l) var(--r-l);
  }
  .nav-links.open a {
    color: var(--bark) !important; padding: 13px 0;
    border-bottom: 1px solid rgba(0,0,0,.04);
  }
  .nav-links.open .nav-cta {
    background: var(--forest) !important; color: var(--white) !important;
    text-align: center; margin-top: 10px; border: none !important;
  }
  .svc-grid, .test-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2,1fr); gap: 22px; }
  .how-grid::before { display: none; }
  .trust-in { gap: 22px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .hero-trust { gap: 14px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bot { flex-direction: column; gap: 10px; text-align: center; }
  .pg-contact, .pg-legal { padding: 115px 0 60px; }
}
@media (max-width:480px) {
  .how-grid { grid-template-columns: 1fr; }
  .trust-in { flex-direction: column; gap: 14px; }
  .hero-tree { width: 500px; height: 500px; }
}
