/* =====================
   CUSTOM PROPERTIES
   ===================== */
:root {
    --green-900: #0d2417;
    --green-800: #1a3d2b;
    --green-700: #2d6a4f;
    --green-600: #3d8a68;
    --green-500: #52b788;
    --green-400: #74c69d;
    --green-300: #95d5b2;
    --green-200: #b7e4c7;
    --green-100: #d8f3dc;
    --cream: #f8f5f0;
    --light: #f0ede8;
    --text: #1c1c1e;
    --text-mid: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --border: #e2e8f0;

    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 24px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.05);

    --radius: 8px;
    --radius-lg: 16px;
    --ease: .2s ease;

    --max-w: 1160px;
    --pad-section: 88px;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================
   LAYOUT
   ===================== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: var(--pad-section) 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--green-800); }

/* =====================
   TYPOGRAPHY HELPERS
   ===================== */
.label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 10px;
}
.label--light { color: var(--green-300); }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--green-800);
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.section-title--light { color: var(--white); }

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 580px;
    line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,.75); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease);
    border: 2px solid transparent;
    text-decoration: none;
    font-family: var(--font-sans);
}
.btn-primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-600);
}
.btn-ghost:hover {
    background: var(--green-100);
}

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}
.wordmark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 180px;
    overflow: hidden;
}
.logo-img {
    height: 34px;
    max-height: 34px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: opacity var(--ease);
}
.wordmark:hover .logo-img { opacity: .8; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: all var(--ease);
}
.nav-links a:hover { color: var(--green-700); background: var(--green-100); }
.nav-links a.active { color: var(--green-700); font-weight: 600; }
.nav-links .nav-cta {
    background: var(--green-700);
    color: var(--white);
    margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--green-800); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-toggle {
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    /* Large enough tap target on mobile */
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .07em;
    cursor: pointer;
    color: var(--text-mid);
    font-family: var(--font-sans);
    transition: all var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lang-toggle:hover {
    border-color: var(--green-500);
    color: var(--green-700);
    background: var(--green-100);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    background: none;
    border-radius: var(--radius);
    padding: 8px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--ease);
}

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 45%, var(--green-700) 80%, #3d8a68 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 80% 20%, rgba(82,183,136,.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(116,198,157,.12) 0%, transparent 50%);
    pointer-events: none;
}
/* Decorative leaf rings */
.hero::after {
    content: '';
    position: absolute;
    width: 640px;
    height: 640px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    border: 80px solid rgba(82,183,136,.06);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 100px;
    color: var(--green-200);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: 14px;
}
.hero h1 em {
    font-style: normal;
    color: var(--green-300);
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
    flex-wrap: wrap;
}
.stat-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-300);
    line-height: 1.2;
}
.stat-item span {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .07em;
}
.stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    letter-spacing: .06em;
    animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(7px); }
}

/* =====================
   SERVICES
   ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 52px;
    max-width: 860px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
    opacity: 0;
    transition: opacity var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--green-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: background var(--ease);
}
.service-card:hover .service-icon { background: var(--green-200); }

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 3px;
}
.service-en {
    font-size: .8rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 14px;
}
.service-card p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--green-600);
    font-size: .85rem;
    font-weight: 600;
    margin-top: 16px;
    transition: gap var(--ease);
}
.service-link:hover { gap: 9px; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
}
.testimonial-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .3s ease;
}
.testimonial-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-3px);
}
.stars {
    color: #fbbf24;
    font-size: .85rem;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: .9rem;
    color: rgba(255,255,255,.82);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 22px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 11px;
}
.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}
.author-name {
    font-weight: 600;
    font-size: .88rem;
    color: var(--white);
}
.author-role {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin-top: 2px;
}

/* =====================
   VALUES / MISSION
   ===================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
}
.value-item {
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all .3s ease;
}
.value-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-200); }
.value-glyph {
    width: 64px;
    height: 64px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 20px;
}
.value-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 12px;
}
.value-item p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* =====================
   CONTACT CTA BAND
   ===================== */
.cta-band {
    background: linear-gradient(135deg, var(--green-900), var(--green-800));
    padding: 72px 0;
}
.cta-band .section-title--light { margin-bottom: 10px; }
.cta-band .section-sub--light { margin-bottom: 36px; }

.contact-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.88);
    font-size: 1rem;
    font-weight: 500;
}
.contact-detail a { color: inherit; transition: color var(--ease); }
.contact-detail a:hover { color: var(--green-300); }
.contact-detail-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--green-900);
    color: rgba(255,255,255,.5);
    text-align: center;
    padding: 32px 24px;
    font-size: .82rem;
}
.footer-wordmark {
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255,255,255,.85);
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    padding: 56px 0 52px;
    color: var(--white);
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.025em;
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    max-width: 560px;
}

/* =====================
   RESOURCES — SCHEDULE
   ===================== */
.month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 18px;
    margin-top: 40px;
}
.month-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: all .3s ease;
}
.month-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}
.month-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.month-badge {
    background: var(--green-100);
    color: var(--green-700);
    padding: 3px 11px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.month-header h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--green-800);
}
.month-tasks { padding: 0; }
.month-tasks li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: .83rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--light);
    line-height: 1.45;
}
.month-tasks li:last-child { border-bottom: none; }
.month-tasks li::before {
    content: '✓';
    color: var(--green-500);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* =====================
   RESOURCES — DECISION APP
   ===================== */
.app-feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}
.app-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
}
.app-feature-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: center;
}
.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.app-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.app-features strong {
    display: block;
    font-size: .97rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 4px;
}
.app-features p {
    font-size: .87rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}
.app-cta { align-self: flex-start; }

.app-preview {
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.app-preview-inner { text-align: center; }
.app-preview-icon { font-size: 3.5rem; margin-bottom: 12px; }
.app-preview-label {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .app-feature-grid { grid-template-columns: 1fr; }
    .app-preview { min-height: 140px; }
    .app-feature-card { padding: 24px; }
}

/* =====================
   RESOURCES — CALCULATOR
   ===================== */
.calc-placeholder {
    background: var(--white);
    border: 2px dashed var(--green-300);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    margin-top: 40px;
}
.calc-placeholder .calc-icon { font-size: 3rem; margin-bottom: 18px; }
.calc-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 8px;
}
.calc-placeholder p { font-size: .92rem; color: var(--text-light); max-width: 400px; margin: 0 auto; }

/* =====================
   RESOURCES — BEST PRACTICES
   ===================== */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.practice-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: all .3s ease;
}
.practice-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.practice-card h4 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.practice-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-card h2 { font-size: 1.45rem; font-weight: 800; color: var(--green-800); margin-bottom: 4px; }
.form-card .form-sub { font-size: .88rem; color: var(--text-light); margin-bottom: 30px; }

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .92rem;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--ease), box-shadow var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: .97rem;
    margin-top: 6px;
}

.contact-sidebar { position: sticky; top: 80px; }
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 18px;
}
.sidebar-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 18px;
}
.sidebar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--light);
}
.sidebar-row:last-child { border-bottom: none; }
.sidebar-icon {
    width: 36px;
    height: 36px;
    background: var(--green-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}
.sidebar-row a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--green-700);
    transition: color var(--ease);
}
.sidebar-row a:hover { color: var(--green-900); }
.sidebar-row small { display: block; font-size: .72rem; color: var(--text-light); margin-top: 2px; }

.sidebar-hours p { font-size: .85rem; color: var(--text-mid); line-height: 1.8; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root { --pad-section: 60px; }

    .nav { position: relative; }
    .wordmark { max-width: 140px; }
    .logo-img { height: 26px; max-height: 26px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 12px;
        gap: 2px;
        box-shadow: var(--shadow-md);
        z-index: 10;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 11px 14px; width: 100%; }
    .nav-links .nav-cta { margin-left: 0; margin-top: 4px; }
    .nav-toggle { display: flex; }

    .services-grid,
    .testimonials-grid,
    .values-grid { grid-template-columns: 1fr; }

    .practices-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .contact-details { flex-direction: column; gap: 16px; }

    .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 540px) {
    .month-grid { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }
}

/* =====================
   PHONE MOCKUP (app preview)
   ===================== */
.phone-mockup {
    background: #0d1f14;
    border-radius: 18px;
    padding: 16px 14px 20px;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    border: 2px solid #1a3d2b;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.phone-top-bar {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a3d2b;
}
.phone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2d6a4f;
    flex-shrink: 0;
}
.phone-dot:first-child { background: #e53e3e; }
.phone-dot:nth-child(2) { background: #d97706; }
.phone-header {
    font-size: .78rem;
    font-weight: 700;
    color: #95d5b2;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #1a3d2b;
}
.phone-row--scan {
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    background: #1a3d2b;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 10px;
    cursor: default;
}
.phone-results {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.phone-result {
    font-size: .73rem;
    color: #74c69d;
    background: rgba(82,183,136,.12);
    border-left: 3px solid #52b788;
    border-radius: 0 6px 6px 0;
    padding: 6px 10px;
}

/* =====================
   PROCESS SECTION
   ===================== */
.process-section { background: var(--cream); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
    counter-reset: process-counter;
}
.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    position: relative;
    overflow: hidden;
    counter-increment: process-counter;
    transition: all .3s ease;
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}
.process-step::before {
    content: counter(process-counter, decimal-leading-zero);
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--green-100);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.process-step p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

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

/* =====================
   FOOTER (expanded)
   ===================== */
.site-footer {
    background: var(--green-900);
    color: rgba(255,255,255,.5);
    padding: 40px 24px 28px;
    font-size: .82rem;
}
.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-tagline {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    max-width: 280px;
    line-height: 1.5;
}
.footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    font-weight: 500;
    transition: color var(--ease);
    text-decoration: none;
}
.footer-nav a:hover { color: var(--green-300); }
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.1);
    margin: 0 0 20px;
}
.footer-copy {
    text-align: center;
    color: rgba(255,255,255,.4);
    font-size: .78rem;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-inner { flex-direction: column; }
    .footer-nav { gap: 14px; }
}
