/* Lightweight scroll animation (replaces AOS library) */
[data-aos] { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-aos], [data-aos].aos-animate { transition: none; opacity: 1; transform: none; } }

:root {
  --bg: #FAF7F2;
  --bg-alt: #EDE7DC;
  --bg-white: #FFFFFF;
  --accent: #475B6B;
  --accent-dark: #3D4F5C;
  --sun: #FFC15E;
  --sun-dark: #E6A94E;
  --terra: #C1440E;
  --terra-dark: #A13A0C;
  --text: #2A2A2A;
  --text-muted: #3A3028;
  --text-light: #574B40;
  --green: #2E7D32;
  --border: rgba(42,42,42,0.1);
  --shadow-sm: 0 2px 12px rgba(42,42,42,0.06);
  --shadow-md: 0 8px 32px rgba(42,42,42,0.10);
  --shadow-lg: 0 20px 60px rgba(42,42,42,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --max-width: 1200px;
  --section-pad: 64px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: clip; max-width: 100vw; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; font-style: italic; line-height: 1.2; color: var(--text); }
h3 { font-family: var(--font-heading); font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 700; line-height: 1.3; }
p { font-family: var(--font-body); font-weight: 400; font-size: 1rem; line-height: 1.75; color: var(--text-muted); }
.eyebrow { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 16px; display: inline-block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); content-visibility: auto; contain-intrinsic-size: auto 800px; }
.section-alt { background: var(--bg-alt); }
.section-white { background: var(--bg-white); }

/* Nav */
.top-bar { background: var(--accent); padding: 8px 24px; font-family: var(--font-body); font-size: 0.875rem; color: rgba(255,255,255,0.95); }
.top-bar-inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--sun); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.top-bar a:hover { color: #fff; }
.top-bar a:focus-visible { outline: 2px solid var(--sun); outline-offset: 2px; border-radius: 2px; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.35s ease, box-shadow 0.3s ease, border-color 0.35s ease; }
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav.nav--on-light { background: rgba(250,247,242,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav.nav--on-light .nav-logo { color: var(--accent); }
.nav.nav--on-light .nav-links a { color: var(--text-muted); }
.nav.nav--on-light .nav-links a:hover { color: var(--accent); }
.nav.nav--on-light .nav-hamburger span { background: var(--text); }
.nav.nav--on-dark { background: rgba(42,42,42,0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav.nav--on-dark .nav-logo { color: #fff; }
.nav.nav--on-dark .nav-links a { color: rgba(255,255,255,0.8); }
.nav.nav--on-dark .nav-links a:hover { color: var(--sun); }
.nav.nav--on-dark .nav-hamburger span { background: #fff; }
.nav.nav--on-dark .nav-cta-call { background: var(--sun); color: #3D3018; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 72px; }
.nav-logo { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--accent); flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 72px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.nav:not(.nav--on-light) .nav-logo img { content: url('../images/main-logo-white.svg'); mix-blend-mode: normal; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta-group { display: flex; gap: 10px; align-items: center; }
.nav-cta { padding: 10px 20px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; border: none; }
.nav-cta-call { background: var(--sun); color: #3D3018; box-shadow: 0 2px 8px rgba(255,193,94,0.35); padding: 12px 24px; font-size: 0.9rem; }
.nav-cta-call:hover { background: var(--sun-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,193,94,0.45); }
.nav-cta-mobile { display: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; margin: -8px; border-radius: var(--radius-sm); }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(71,91,107,0.25); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sun { background: var(--sun); color: #3D3018; box-shadow: 0 4px 16px rgba(255,193,94,0.35); }
.btn-sun:hover { background: var(--sun-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

.img-block { background: var(--bg-alt); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; overflow: hidden; position: relative; }
.img-block img { width: 100%; height: 100%; object-fit: cover; }
.span-2 { grid-column: span 2; }

.card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; transition: box-shadow 0.3s, transform 0.3s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon { width: 52px; height: 52px; background: var(--bg-alt); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

/* Stats */
.stats-strip { background: var(--bg-alt); border-radius: var(--radius-md); display: flex; flex-wrap: wrap; justify-content: center; overflow: hidden; }
.stat-item { flex: 1; min-width: 140px; padding: 32px 20px; text-align: center; border-right: 1px solid rgba(71,91,107,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; line-height: 1; color: var(--accent); }
.stat-num.terra { color: var(--terra); }
.stat-label { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--text-light); margin-top: 6px; letter-spacing: 0.02em; }

/* Process */
.process-step { text-align: center; padding: 20px 12px; position: relative; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-white); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--accent); }
.step-circle.final { border-color: var(--sun); color: #b8860b; background: rgba(255,193,94,0.1); }
.step-title { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }

/* Testimonials */
.testimonial { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; }
.testimonial-stars { color: var(--sun); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; line-height: 1.75; color: var(--text-muted); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--accent); }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.875rem; color: var(--text-light); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn { width: 100%; padding: 20px 0; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text); text-align: left; gap: 16px; }
.faq-btn:hover { color: var(--accent); }
.faq-icon { font-size: 1.4rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 1rem; }

/* Footer */
.footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 56px 24px 28px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.82); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sun); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 10px; color: rgba(255,255,255,0.8); transition: color 0.2s; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); text-underline-offset: 3px; }
.footer-col a:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.5); }
.footer-col a:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; border-radius: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,0.8); }
.footer-bottom a { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom a:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; border-radius: 3px; }

/* WhatsApp Float */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; animation: wa-pulse 2s infinite; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); } }
@media (max-width: 767px) { .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; } }

/* Scroll to Top */
@media (max-width: 767px) {
  .scroll-top-btn { position: fixed; bottom: 96px; right: 16px; z-index: 1000; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); border: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(71,91,107,0.35); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; }
  .scroll-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .scroll-top-btn svg { width: 20px; height: 20px; fill: #fff; }
}
@media (min-width: 768px) { .scroll-top-btn { display: none; } }

/* USP blocks */
.usp-card { transition: box-shadow 0.3s, transform 0.3s; }
.usp-card:hover { box-shadow: 0 6px 24px rgba(42,42,42,0.08); transform: translateY(-4px); }
.usp-card.accent-bg { background: rgba(71,91,107,0.08); border: 1px solid rgba(71,91,107,0.12); }
.usp-card.sun-bg { background: rgba(255,193,94,0.1); border: 1px solid rgba(255,193,94,0.2); }
.usp-icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }

/* Package Cards — Stacked with Side Highlight */
.pkg-card { display: flex; background: var(--bg-white); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; margin-bottom: 20px; transition: box-shadow 0.3s, transform 0.3s; position: relative; }
.pkg-card:hover { box-shadow: 0 8px 32px rgba(42,42,42,0.08); transform: translateY(-2px); }
.pkg-featured { border: 2px solid var(--sun); box-shadow: 0 0 0 4px rgba(255,193,94,0.15), 0 12px 40px rgba(42,42,42,0.1); }
.pkg-featured:hover { box-shadow: 0 0 0 4px rgba(255,193,94,0.25), 0 16px 48px rgba(42,42,42,0.12); transform: translateY(-3px); }

.pkg-sidebar { flex: 0 0 220px; padding: 36px 28px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; }
.pkg-sidebar-std { background: var(--bg-alt); }
.pkg-sidebar-prem { background: var(--accent); }
.pkg-sidebar-lux { background: linear-gradient(135deg, #2A2A2A, #3D4F5C); }

.pkg-badge { position: absolute; top: 12px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: var(--sun); color: #3D3018; padding: 3px 12px; border-radius: 10px; z-index: 1; }

.pkg-label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.pkg-label-std { color: var(--accent); }
.pkg-label-prem { color: rgba(255,255,255,0.8); }
.pkg-label-lux { color: var(--sun); }

.pkg-price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.pkg-rupee { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.pkg-rupee-std { color: var(--text-muted); }
.pkg-rupee-prem { color: rgba(255,255,255,0.8); }
.pkg-rupee-lux { color: rgba(255,255,255,0.7); }
.pkg-amount { font-family: var(--font-heading); font-size: clamp(2.2rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1; }
.pkg-amount-std { color: var(--text); }
.pkg-amount-prem { color: #fff; }
.pkg-amount-lux { color: var(--sun); }
.pkg-unit { font-family: var(--font-body); font-size: 0.82rem; margin-top: 4px; margin-bottom: 20px; }
.pkg-unit-std { color: var(--text-light); }
.pkg-unit-prem { color: rgba(255,255,255,0.7); }
.pkg-unit-lux { color: rgba(255,255,255,0.7); }

.pkg-cta { display: inline-flex; align-items: center; gap: 6px; padding: 11px 22px; border-radius: var(--radius-sm); text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 0.82rem; transition: all 0.2s; }
.pkg-cta-std { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.pkg-cta-std:hover { border-color: var(--accent); color: var(--accent); }
.pkg-cta-prem { background: #fff; color: var(--accent); }
.pkg-cta-prem:hover { background: var(--bg); }
.pkg-cta-lux { background: var(--sun); color: #3D3018; }
.pkg-cta-lux:hover { background: var(--sun-dark); }

.pkg-body { flex: 1; padding: 28px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }

.pkg-acc-item { border-bottom: 1px solid var(--border); }
.pkg-acc-btn { width: 100%; padding: 12px 0; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--text); text-align: left; gap: 12px; }
.pkg-acc-btn:hover { color: var(--accent); }
.pkg-acc-icon { font-size: 1.1rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.pkg-acc-btn[aria-expanded="true"] .pkg-acc-icon { transform: rotate(45deg); }
.pkg-acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.pkg-acc-panel.open { max-height: 900px; }
.pkg-acc-panel ul { list-style: none; padding: 0 0 10px 0; }
.pkg-acc-panel ul li { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); padding: 4px 0 4px 16px; position: relative; line-height: 1.5; }
.pkg-acc-panel ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 48px 16px; }
  .nav-links, .nav-cta-group { display: none; }
  .nav-cta-mobile { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--sun); color: #3D3018; border-radius: 50%; margin-left: auto; margin-right: 12px; }
  .nav-hamburger { display: flex; }
  .top-bar { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pkg-card { flex-direction: column; }
  .pkg-sidebar { flex: none; padding: 28px 24px; }
  .pkg-body { grid-template-columns: 1fr; padding: 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(71,91,107,0.1); }
  .stat-item:last-child { border-bottom: none; }
  /* Hero: Full-screen image with text overlay */
  #hero { padding: 0 !important; position: relative; min-height: 100vh; min-height: 100dvh; overflow: hidden; }
  #hero > .container { padding: 0 !important; position: static; }
  .hero-grid { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .hero-img-wrap { position: absolute !important; inset: 0; z-index: 1; }
  .hero-img-wrap .img-block { height: 100% !important; width: 100% !important; border-radius: 0 !important; }
  .hero-img-wrap .img-block img { border-radius: 0 !important; }
  #hero::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.8) 100%); pointer-events: none; }
  .hero-grid > div:first-child { position: relative; z-index: 3; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 20px 28px !important; }
  .hero-grid > div:first-child .eyebrow { color: #f0c77b !important; }
  .hero-grid > div:first-child h1 { color: #fff !important; }
  .hero-grid > div:first-child h1 em { color: #f0c77b !important; }
  .hero-grid > div:first-child p { color: rgba(255,255,255,0.88) !important; }
  .hero-grid > div:first-child .btn-outline { border-color: rgba(255,255,255,0.5) !important; color: #fff !important; }
  .hero-grid > div:first-child .btn-outline:hover { border-color: #fff !important; }
  .hero-grid > div:first-child div[style*="color: var(--text-light)"] { color: rgba(255,255,255,0.75) !important; }
  #hero .stats-strip { position: relative; z-index: 3; margin: 0 !important; border-radius: 0 !important; background: rgba(255,255,255,0.1) !important; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: none !important; border-top: 1px solid rgba(255,255,255,0.15) !important; }
  #hero .stats-strip .stat-num { color: #fff !important; }
  #hero .stats-strip .stat-label { color: rgba(255,255,255,0.75) !important; }
  #hero .stats-strip .stat-item { border-color: rgba(255,255,255,0.15) !important; }
  /* Force nav dark + transparent on mobile */
  .nav { background: transparent !important; border-bottom-color: transparent !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none !important; }
  .nav .nav-logo { color: #fff !important; }
  .nav .nav-logo img { visibility: hidden; position: relative; }
  .nav .nav-logo { background: url('../images/main-logo-white.svg') no-repeat left center; background-size: contain; min-height: 56px; min-width: 180px; }
  .nav.scrolled .nav-logo img { visibility: hidden; }
  .nav .nav-hamburger span { background: #fff !important; }
  .nav.scrolled { background: rgba(42,42,42,0.92) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important; }
  /* Reduce hero content to fit one screen */
  .hero-grid > div:first-child h1 { font-size: clamp(1.4rem, 4.8vw, 1.9rem) !important; margin-bottom: 6px !important; line-height: 1.3 !important; }
  .hero-grid > div:first-child p { font-size: 0.88rem !important; margin: 10px 0 18px !important; line-height: 1.5 !important; }
  .hero-grid > div:first-child .btn-group { gap: 8px !important; }
  .hero-grid > div:first-child .btn { padding: 10px 16px !important; font-size: 0.84rem !important; }
  .hero-grid > div:first-child div[style*="margin-top: 40px"] { margin-top: 14px !important; gap: 8px !important; }
  .hero-grid > div:first-child div[style*="margin-top: 40px"] div { font-size: 0.75rem !important; }
  .hero-grid > div:first-child .eyebrow { font-size: 0.7rem !important; margin-bottom: 6px !important; }
  /* Stats strip: horizontal 2x2 grid on mobile */
  #hero .stats-strip { display: grid !important; grid-template-columns: 1fr 1fr !important; flex-direction: unset !important; padding: 12px !important; }
  #hero .stats-strip .stat-item { border-bottom: none !important; border-right: none !important; padding: 10px 8px !important; text-align: center; }
  #hero .stats-strip .stat-num { font-size: 1.3rem !important; }
  #hero .stats-strip .stat-label { font-size: 0.65rem !important; }
  .process-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .project-grid { grid-template-columns: 1fr !important; }
  .project-grid .span-2 { grid-column: auto !important; }
  h1 { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .btn-group { flex-direction: column; gap: 10px; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .contact-channels { grid-template-columns: 1fr 1fr !important; }
  .container { padding: 0 16px; }
  .pkg-acc-panel.open { max-height: 1000px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr !important; }
  .contact-channels { grid-template-columns: 1fr !important; }
  h1 { font-size: clamp(1.6rem, 5vw, 2.2rem) !important; }
}

.skip-link { position: absolute; top: -100%; left: 16px; background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 4px; font-weight: 600; transition: top 0.2s; z-index: 9999; font-size: 0.9rem; }
.skip-link:focus { top: 16px; }
