/* ============================================================
   McSbuSing – Global Stylesheet
   site.css – single source of truth for all pages
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ───────────────────────────────────────── */
:root {
    --green:       #0c501a;
    --green-mid:   #1a7a4a;
    --green-light: #e8f4ed;
    --amber:       #FFB400;
    --amber-dark: rgba(27, 104, 4, 0.55);
    --ink:         #0d1f12;
    --muted:       #556b5e;
    --rule:        #d0e4d8;
    --surface:     #f4f8f5;
    --white:       #ffffff;
    --navy:        #0a1628;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--white);
}

/* Homepage uses Ubuntu */
body.home { font-family: 'ubuntu', sans-serif; }

/* Schedule page surface background */
body.page-schedule { background: var(--surface); min-height: 100vh; }

/* Docs pages slightly taller line-height */
body.page-terms,
body.page-privacy { line-height: 1.75; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'ubuntu', sans-serif; line-height: 1.15; }

.label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
}

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */

/* Base: sub-pages always show dark nav */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 1rem 0;

}

/* Scrolled state – amber on all pages */
.site-nav.scrolled {
    background: var(--amber-dark);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(14, 64, 2, 0.73);
}

.site-nav.scrolled .nav-links a           { color: rgba(255,255,255,0.88); }
.site-nav.scrolled .nav-links a:hover     { color: #fff; }
.site-nav.scrolled .nav-links a.active    { color: #fff; font-weight: 700; }
.site-nav.scrolled .nav-cta               { background: #fff !important; color: var(--amber-dark) !important; }
.site-nav.scrolled .nav-cta:hover         { background: var(--ink) !important; color: #fff !important; }

/* Homepage additional scrolled overrides (light → dark transition) */
 .site-nav.scrolled .nav-logo span   { color: #fff; }
 .site-nav.scrolled .nav-toggle      { color: #fff; }
 .site-nav.scrolled .nav-logo img    { filter: brightness(0) invert(1); height: 40px; }
 .site-nav.scrolled .nav-links a.active { color: var(--amber); }

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

/* Sub-pages: small white logo */
.nav-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }

/* Homepage: large full-colour logo */
 .nav-logo img { height: 80px; filter: none; }

.nav-logo span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--ink);
    letter-spacing: -0.3px;
}
.nav-logo span em { color: var(--green); font-style: normal; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Sub-pages: white links on dark nav */
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }

/* Homepage: dark links on light hero */
.nav-links a        { color: var(--ink); }
.nav-links a:hover  { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 600; }

.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: #083810 !important; color: #fff !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 950;
}
 .nav-toggle { color: var(--ink); }

/* Mobile nav */
@media (max-width: 900px) {
    .nav-links { display: none; flex-direction: column; gap: 1rem; }
    .nav-links.open {
        display: flex;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(27, 104, 4, 0.55);
        box-shadow: 0 2px 20px rgba(14, 64, 2, 0.4);
        backdrop-filter: blur(16px);
        align-items: center;
        justify-content: center;
        z-index: 800;
    }
    .nav-links.open a                      { color: rgba(255,255,255,0.9) !important; font-size: 1.1rem; }
    .nav-links.open a:hover,
    .nav-links.open a.active               { color: rgba(238, 170, 39, 0.97) !important; font-weight: 700; }
    .nav-toggle                            { display: block; z-index: 850; }
    .site-nav.scrolled {
        background: var(--amber-dark);
        backdrop-filter: none!important;
        box-shadow: 0 2px 20px rgba(14, 64, 2, 0.4);
    }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — HERO
   ═══════════════════════════════════════════════════════════ */

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes blobDrift1 {
    0%, 100% { transform: translate(0, 0)       scale(1);    }
    33%       { transform: translate(-28px, 22px) scale(1.06); }
    66%       { transform: translate(18px, -24px) scale(0.94); }
}
@keyframes blobDrift2 {
    0%, 100% { transform: translate(0, 0)       scale(1);   }
    40%       { transform: translate(38px, -18px) scale(1.1); }
    70%       { transform: translate(-22px, 26px) scale(0.9); }
}
@keyframes blobDrift3 {
    0%, 100% { transform: translate(0, 0);      }
    50%       { transform: translate(18px, -28px); }
}

.hero {
    min-height: 100vh;
    background: #f2f8f4;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(12,80,26,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 85% 40%, rgba(12,80,26,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 5%  75%, rgba(255,180,0,0.06)  0%, transparent 60%);
    pointer-events: none;
}

.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }

.hero-blob-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(12,80,26,0.13) 0%, transparent 70%);
    top: -120px; right: -80px;
    animation: blobDrift1 14s ease-in-out infinite;
}
.hero-blob-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,180,0,0.10) 0%, transparent 70%);
    bottom: -60px; left: 38%;
    animation: blobDrift2 17s ease-in-out infinite;
}
.hero-blob-3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(26,122,74,0.09) 0%, transparent 70%);
    top: 35%; left: -60px;
    animation: blobDrift3 11s ease-in-out infinite;
}

.hero-body {
    flex: 1;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: stretch;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3rem 3rem clamp(1.5rem, calc((100vw - 1160px) / 2 + 2rem), 6rem);
    max-width: 640px;
    margin-left: auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(12,80,26,0.08);
    border: 1px solid rgba(12,80,26,0.2);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: fadeInDown 0.6s ease both 0.1s;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1.4rem;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.7s ease both 0.3s;
}
.hero h1 .accent { color: var(--green-mid); }

.hero-lead {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    animation: fadeInUp 0.7s ease both 0.5s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease both 0.7s;
}

.btn-primary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: #fff;
    padding: 0.85rem 1.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary-v2:hover { background: #083810; transform: translateY(-2px); color: #fff; text-decoration: none; box-shadow: 0 8px 24px rgba(12,80,26,0.25); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--ink);
    padding: 0.85rem 1.8rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1.5px solid rgba(12,80,26,0.3);
    border-radius: 10px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); background: rgba(12,80,26,0.05); text-decoration: none; }

.hero-image-wrap {
    overflow: hidden;
    animation: fadeInRight 0.8s ease both 0.4s;
}
.hero-img {
    width: 95%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
}

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
    background: rgba(244,248,245,0.85);
    padding: 1.8rem 0;
    border-top: 1px solid var(--rule);
}

.trust-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.trust-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

@keyframes logoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: logoScroll 38s linear infinite;
}
.logo-carousel:hover .logo-track { animation-play-state: paused; }

.logo-track img {
    height: 34px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s;
    flex-shrink: 0;
}
.logo-track img:hover { filter: grayscale(0%) opacity(1); }

/* ── Section header ──────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 3.5rem; }

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0.5rem 0 1rem;
}
.section-head p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-rule {
    width: 48px;
    height: 3px;
    background: var(--amber);
    margin: 0 auto 0.8rem;
}

/* ── Experience banner ───────────────────────────────────── */
.exp-banner {
    background: var(--green);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.exp-banner::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 320px; height: 320px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.exp-banner::after {
    content: '';
    position: absolute;
    left: -40px; bottom: -60px;
    width: 220px; height: 220px;
    background: rgba(255,180,0,0.06);
    border-radius: 50%;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.exp-item { text-align: center; }
.exp-num {
    font-family: 'ubuntu', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.exp-desc { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── Services ────────────────────────────────────────────── */
.services { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.svc-card {
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 2rem 1.8rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--green);
    transition: height 0.3s ease;
}
.svc-card:hover { border-color: var(--green); box-shadow: 0 12px 40px rgba(12,80,26,0.1); transform: translateY(-4px); }
.svc-card:hover::before { height: 100%; }

.svc-icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: var(--green);
    transition: background 0.3s, color 0.3s;
}
.svc-card:hover .svc-icon { background: var(--green); color: #fff; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.svc-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── Process ─────────────────────────────────────────────── */
.process { background: var(--surface); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: var(--rule);
}

.step { text-align: center; position: relative; }
.step-num {
    width: 56px; height: 56px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--green);
    position: relative;
    z-index: 1;
}
.step h4 { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.step p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── Portfolio ───────────────────────────────────────────── */
.portfolio { background: var(--white); }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.proj-card {
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 1.8rem;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}
.proj-card:hover { box-shadow: 0 12px 40px rgba(12,80,26,0.1); transform: translateY(-3px); }

.proj-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.proj-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    padding: 2px 8px;
    border-radius: 2px;
}
.proj-year { font-size: 0.75rem; color: var(--muted); }
.proj-card h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.proj-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; flex: 1; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-v2 { background: var(--surface); }

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-sub-head {
    text-align: center;
    border-top: 1px solid var(--rule);
    margin-top: 4rem;
    padding-top: 3.5rem;
    margin-bottom: 2.5rem;
}
.pricing-sub-head h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0.4rem 0 0.6rem;
}
.pricing-sub-head p { font-size: 0.88rem; color: var(--muted); }

.price-rate { display: flex; align-items: baseline; gap: 0.3rem; }
.price-rate-amount {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green);
}
.price-rate-unit { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.price-min {
    font-size: 0.74rem;
    color: var(--muted);
    padding: 0.65rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 1.4rem;
}

.price-card.popular .price-rate-amount { color: var(--amber); }
.price-card.popular .price-rate-unit   { color: rgba(255,255,255,0.6); }
.price-card.popular .price-min         { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }

.price-card {
    background: var(--white);
    border: 1.5px solid var(--rule);
    border-radius: 8px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(12,80,26,0.12); }
.price-card.popular { border-color: var(--green); background: var(--green); color: #fff; }

.price-badge {
    position: absolute;
    top: -12px; left: 1.8rem;
    background: var(--amber);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 2px;
}

.price-tier { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.4rem; }
.price-card.popular .price-tier { color: rgba(255,255,255,0.65); }

.price-name { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--ink); margin-bottom: 0.25rem; }
.price-card.popular .price-name { color: #fff; }

.price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
}
.price-card.popular .price-amount { color: var(--amber); border-bottom-color: rgba(255,255,255,0.2); }

.price-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.price-card.popular .price-desc { color: rgba(255,255,255,0.75); }

.price-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.6rem; }
.price-features li {
    font-size: 0.84rem;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.45;
}
.price-features li::before { content: '✓'; font-size: 0.72rem; font-weight: 700; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-card.popular .price-features li         { color: rgba(255,255,255,0.9); }
.price-card.popular .price-features li::before { color: var(--amber); }

.price-timeline {
    font-size: 0.74rem;
    color: var(--muted);
    padding: 0.75rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 1.4rem;
}
.price-card.popular .price-timeline          { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
.price-card.popular .price-timeline strong   { color: #fff; }

.price-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    text-decoration: none;
}
.price-btn:hover { background: #083810; color: #fff; text-decoration: none; }
.price-card.popular .price-btn       { background: var(--amber); color: var(--ink); }
.price-card.popular .price-btn:hover { background: var(--amber-dark); }

.price-note {
    background: #fdf3e1;
    border-left: 3px solid var(--amber);
    padding: 1rem 1.2rem;
    font-size: 0.8rem;
    color: #7a5a10;
    line-height: 1.55;
    margin-top: 2rem;
    border-radius: 0 4px 4px 0;
}

/* ── About strip ─────────────────────────────────────────── */
.about-strip { background: var(--navy); padding: 5rem 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-content .label { color: var(--amber); }
.about-content h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin: 0.5rem 0 1.2rem; }
.about-content p  { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 1rem; }

.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 1.5rem 0; }
.about-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.about-list li i { color: var(--amber); margin-top: 2px; flex-shrink: 0; }

.about-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 2.5rem;
}
.about-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--amber); margin-bottom: 1.2rem; }
.about-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.about-card .role { font-size: 0.8rem; color: var(--amber); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.about-card blockquote { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-style: italic; line-height: 1.7; border-left: 2px solid var(--amber); padding-left: 1rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-v2 { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h3 { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin: 0.5rem 0 1rem; }
.contact-info p  { font-size: 0.93rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item-v2 { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-box {
    width: 44px; height: 44px;
    background: var(--green-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item-v2 h5 { font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-bottom: 0.15rem; }
.contact-item-v2 p  { font-size: 0.88rem; color: var(--muted); margin: 0; }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 2.5rem;
}
.contact-form h3  { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.contact-form .sub { font-size: 0.84rem; color: var(--muted); margin-bottom: 1.8rem; }

/* ── Form fields (shared across pages) ──────────────────── */
.form-field { margin-bottom: 1.2rem; }

.form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.form-field label .req { color: #c0392b; margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--rule);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(12,80,26,0.08);
}
.form-field textarea { resize: vertical; min-height: 110px; }

/* ── Homepage footer ─────────────────────────────────────── */
.site-footer { background: var(--ink); padding: 3rem 0 2rem; }

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.footer-brand img { height: 100px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

.footer-social { display: flex; gap: 1rem; }
.social-btn {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--amber); color: var(--amber); }

.footer-copy    { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal-box {
    background: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-header {
    background: var(--green);
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header h2 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.modal-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.3rem; cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: #fff; }
.modal-body { padding: 1.8rem; }
.modal-note {
    background: var(--green-light);
    border-left: 3px solid var(--green);
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    color: var(--green);
    border-radius: 0 4px 4px 0;
    margin-bottom: 1.5rem;
}
.modal-footer { padding: 1rem 1.8rem 1.8rem; display: flex; gap: 0.8rem; }

/* ── Scroll to top ───────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 500;
    box-shadow: 0 4px 16px rgba(12,80,26,0.4);
    transition: background 0.2s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover   { background: #083810; }

/* ── Counter animation ───────────────────────────────────── */
.count-up { display: inline-block; }

/* ── Google Reviews ──────────────────────────────────────── */
.reviews { background: var(--surface); }

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}
.reviews-rating-big { font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--ink); line-height: 1; }
.reviews-stars      { color: var(--amber); font-size: 1.1rem; display: flex; gap: 0.2rem; margin: 0.5rem 0 0.3rem; }
.reviews-count      { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; }
.reviews-google-badge { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.35rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(12,80,26,0.1); }

.review-card-stars { color: var(--amber); font-size: 0.85rem; display: flex; gap: 0.15rem; }
.review-text {
    font-size: 0.87rem;
    color: var(--ink);
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--rule);
    padding-top: 1rem;
    margin-top: auto;
}
.review-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-name { font-size: 0.84rem; font-weight: 700; color: var(--ink); }
.review-time { font-size: 0.74rem; color: var(--muted); }

.reviews-cta { text-align: center; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    border: 1.5px solid var(--green);
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}
.btn-google:hover { background: var(--green); color: #fff; }

.btn-google-filled {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: var(--green);
    border: 1.5px solid var(--green);
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
}
.btn-google-filled:hover { background: #083810; border-color: #083810; }

#reviews-loading { text-align: center; color: var(--muted); font-size: 0.88rem; padding: 3rem; }

/* ── Own Products ────────────────────────────────────────── */
.own-products { background: var(--ink); }
.own-products .section-head h2 { color: #fff; }
.own-products .section-head p  { color: rgba(255,255,255,0.55); }
.own-products .section-rule    { background: rgba(255,255,255,0.15); }

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover { border-color: rgba(255,255,255,0.22); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

.product-icon { height: 52px; display: flex; align-items: center; }
.product-icon img { height: 100%; width: auto; object-fit: contain; }

.product-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    background: var(--amber);
    color: #fff;
    width: fit-content;
}

.product-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.product-features li { font-size: 0.84rem; color: rgba(255,255,255,0.78); display: flex; align-items: flex-start; gap: 0.6rem; }
.product-features li::before { content: '✓'; font-size: 0.72rem; font-weight: 700; color: var(--green-mid); flex-shrink: 0; margin-top: 2px; }

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}
.product-url { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-family: monospace; }

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--amber);
    text-decoration: none;
    padding: 0.6rem 1.3rem;
    border-radius: 10px;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-product:hover { background: var(--amber-dark); color: #fff; }

/* ── Homepage responsive ─────────────────────────────────── */
@media (max-width: 900px) {
    .hero-split          { grid-template-columns: 1fr; }
    .hero-image-wrap     { display: none; }
    .exp-grid            { grid-template-columns: 1fr 1fr; }
    .services-grid       { grid-template-columns: 1fr 1fr; }
    .process-steps       { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .portfolio-grid      { grid-template-columns: 1fr 1fr; }
    .pricing-grid-v2     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid        { grid-template-columns: 1fr; }
    .products-grid       { grid-template-columns: 1fr; }
    .product-card        { padding: 1.8rem; }
    .reviews-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    section              { padding: 4rem 0; }
    .services-grid       { grid-template-columns: 1fr; }
    .portfolio-grid      { grid-template-columns: 1fr; }
    .process-steps       { grid-template-columns: 1fr; }
    .exp-grid            { grid-template-columns: 1fr 1fr; }
    .hero h1             { font-size: 2rem; }
    .products-grid       { grid-template-columns: 1fr 1fr; gap: 0.85rem; max-width: none; display: block !important; }
    .product-card        { padding: 1.1rem; gap: 0.6rem; margin-bottom: 10px !important; }
    .product-icon        { height: 36px; }
    .product-icon img    { max-height: 36px; max-width: 100%; }
    .product-tagline     { font-size: 0.78rem; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .product-footer      { flex-direction: column; padding-top: 0.65rem; gap: 0.5rem; }
    .product-url         { display: none; }
    .btn-product         { width: 100%; justify-content: center; font-size: 0.75rem; padding: 0.5rem 0.75rem; }
    .reviews-grid        { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SUB-PAGE SHARED (terms + privacy)
   ═══════════════════════════════════════════════════════════ */

.page-hero {
    background: var(--green);
    padding: 5.5rem 2rem 4rem;
    text-align: center;
}
.page-hero .eyebrow {
    display: inline-block;
    background: rgba(255,180,0,0.2);
    border: 1px solid rgba(255,180,0,0.4);
    color: var(--amber);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 0.92rem; max-width: 520px; margin: 0 auto; }

.content-wrap { max-width: 820px; margin: 0 auto; padding: 4rem 2rem 6rem; }

.last-updated {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--muted);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2.5rem;
}

.toc {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 1.4rem 1.8rem;
    margin-bottom: 3rem;
}
.toc h2 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 0.8rem; }
.toc ol  { padding-left: 1.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 1.5rem; }
.toc ol li { font-size: 0.85rem; }
.toc ol a  { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.toc ol a:hover { color: var(--green); }

.section { margin-bottom: 3rem; scroll-margin-top: 5rem; }
.section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--green-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.section h2 .sec-num {
    background: var(--green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    letter-spacing: 0.05em;
}
.section p          { margin-bottom: 1rem; color: var(--ink); font-size: 0.93rem; }
.section p:last-child { margin-bottom: 0; }
.section ul,
.section ol         { padding-left: 1.4rem; margin-bottom: 1rem; }
.section li         { font-size: 0.93rem; color: var(--ink); margin-bottom: 0.45rem; }
.section strong     { color: var(--ink); }

.highlight-box {
    background: var(--green-light);
    border-left: 3px solid var(--green);
    padding: 1rem 1.2rem;
    border-radius: 0 4px 4px 0;
    margin: 1.2rem 0;
    font-size: 0.88rem;
    color: var(--green);
}

.contact-block {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 1.6rem 2rem;
    margin-top: 3rem;
    font-size: 0.88rem;
}
.contact-block h3     { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; margin-bottom: 0.8rem; }
.contact-block a      { color: var(--green); text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }

/* ── Sub-page footer ─────────────────────────────────────── */
.page-footer {
    background: var(--ink);
    padding: 2rem;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}
.page-footer a       { color: rgba(255,255,255,0.55); text-decoration: none; margin: 0 0.5rem; transition: color 0.2s; }
.page-footer a:hover { color: var(--amber); }

@media (max-width: 600px) {
    .toc ol { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SCHEDULE PAGE
   ═══════════════════════════════════════════════════════════ */

.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10rem 2rem 5rem;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
    align-items: start;
}

.sidebar { position: sticky; top: 5rem; }

.sidebar-card {
    background: var(--green);
    border-radius: 10px;
    padding: 2.2rem 2rem;
    color: #fff;
}
.sidebar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,180,0,0.2);
    border: 1px solid rgba(255,180,0,0.4);
    color: var(--amber);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}
.sidebar-card h2 { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.8rem; line-height: 1.2; }
.sidebar-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1.6rem; }

.sidebar-steps { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-steps li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.84rem; color: rgba(255,255,255,0.85); }

.step-dot {
    width: 24px; height: 24px;
    background: rgba(255,180,0,0.2);
    border: 1px solid rgba(255,180,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 1px;
}
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 1.6rem 0; }
.sidebar-contact   { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.sidebar-contact a { color: var(--amber); text-decoration: none; }

.form-card { background: #fff; border: 1px solid var(--rule); border-radius: 10px; padding: 2.5rem; }
.form-card h1 { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.form-card .subtitle { font-size: 0.92rem; color: var(--muted); margin-bottom: 2rem; }

.form-section-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin: 1.8rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }

.time-btn {
    padding: 0.65rem 0.5rem;
    border: 1.5px solid var(--rule);
    border-radius: 10px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.time-btn:hover    { border-color: var(--green); color: var(--green); }
.time-btn.selected { border-color: var(--green); background: var(--green); color: #fff; }

.time-hint { font-size: 0.74rem; color: var(--muted); margin-top: 0.5rem; }
.time-placeholder { font-size: 0.85rem; color: var(--muted); padding: 0.9rem 1rem; background: var(--surface); border: 1.5px dashed var(--rule); border-radius: 5px; text-align: center; }
.time-loading { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--muted); padding: 0.9rem 0; }
.time-none { font-size: 0.85rem; color: #c0392b; background: #fdf0f0; border: 1px solid #e8b4b4; border-radius: 5px; padding: 0.8rem 1rem; }

.form-notice {
    background: var(--green-light);
    border-left: 3px solid var(--green);
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    color: var(--green);
    border-radius: 0 4px 4px 0;
    margin: 1.5rem 0;
    line-height: 1.55;
}

.consent-field { display: flex; align-items: flex-start; gap: 0.75rem; margin: 1.2rem 0 0.4rem; }
.consent-field input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.consent-field label { font-size: 0.84rem; color: var(--muted); line-height: 1.55; cursor: pointer; }
.consent-field label a { color: var(--green); font-weight: 600; text-decoration: none; }
.consent-field label a:hover { text-decoration: underline; }

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}
.submit-btn:hover:not(:disabled) { background: #083810; transform: translateY(-1px); }
.submit-btn:disabled              { opacity: 0.6; cursor: not-allowed; }

.result-box { display: none; border-radius: 6px; padding: 1.2rem 1.4rem; font-size: 0.9rem; margin-top: 1rem; line-height: 1.55; }
.result-box.success { background: var(--green-light); border: 1px solid var(--green); color: var(--green); }
.result-box.error   { background: #fdf0f0; border: 1px solid #e8b4b4; color: #7a1a1a; }

@media (max-width: 820px) {
    .page-wrap  { grid-template-columns: 1fr; }
    .sidebar    { position: static; }
    .form-row   { grid-template-columns: 1fr; }
    .time-grid  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .form-card { padding: 1.5rem; }
    .time-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PRIVACY PAGE
   ═══════════════════════════════════════════════════════════ */

.popia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-light);
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 1.2rem 0; }
.data-table th { background: var(--green); color: #fff; padding: 0.7rem 1rem; text-align: left; font-weight: 600; font-size: 0.78rem; }
.data-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
.data-table tr:last-child td  { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--surface); }

.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.2rem 0; }
.right-card { background: var(--surface); border: 1px solid var(--rule); border-radius: 5px; padding: 1rem; }
.right-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--green); margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.4rem; }
.right-card p  { font-size: 0.8rem; color: var(--muted); margin: 0; }

@media (max-width: 600px) {
    .rights-grid { grid-template-columns: 1fr; }
}
