/* ============================================
   Evergrow Financials LLC - Stylesheet
   Brand Colors (from logo):
   - Forest Green:  #5F7A55  (primary)
   - Dark Forest:   #3F5538  (deep accent)
   - Sage Yellow:   #B8C77E  (secondary / accent)
   - Sage Light:    #D4DBA6  (highlights)
   - Off White:     #F8F9F4  (section bg)
   - Charcoal:      #2C3528  (body text headings)
   ============================================ */

:root {
    --green: #5F7A55;
    --green-dark: #3F5538;
    --sage: #B8C77E;
    --sage-light: #D4DBA6;
    --sage-pale: #EEF1DA;
    --off-white: #F8F9F4;
    --light-gray: #E6E9DC;
    --charcoal: #2C3528;
    --text: #3F4838;
    --text-muted: #6E7A66;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(63, 85, 56, 0.06);
    --shadow-md: 0 6px 20px rgba(63, 85, 56, 0.10);
    --shadow-lg: 0 16px 40px rgba(63, 85, 56, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--green-dark);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text); }

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.eyebrow {
    color: var(--green);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
}
.btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-accent {
    background: var(--sage);
    color: var(--green-dark);
    border-color: var(--sage);
}
.btn-accent:hover {
    background: var(--sage-light);
    border-color: var(--sage-light);
    color: var(--green-dark);
}

/* ===== Header / Navigation ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(10px);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    gap: 1.5rem;
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { width: auto; }
.nav-brand .logo-square { height: 64px; display: block; }
.nav-brand .logo-horizontal { height: 40px; display: none; }

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

.nav-menu a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.0625rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--green-dark); }

.nav-menu .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}
.nav-menu .btn::after { display: none; }

.nav-menu .btn-primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}
.nav-menu .btn-primary:hover {
    color: var(--white);
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--light-gray);
    padding: 0.4rem 0.7rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.lang-toggle:hover { color: var(--green-dark); border-color: var(--green); }
.lang-toggle::after { display: none !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--green-dark);
    margin: 6px 0;
    transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #4d6646 100%);
    color: var(--white);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 199, 126, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    color: var(--sage-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--sage-light); }

.hero p {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Page Hero ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(184, 199, 126, 0.20) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--sage-light);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.breadcrumb a { color: var(--sage-light); }
.breadcrumb a:hover { color: var(--white); }

/* ===== Stats Strip ===== */
.stats-strip {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--sage-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--green-dark);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--green);
    color: var(--white);
}

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Why Choose Us ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list { list-style: none; margin-top: 1.5rem; }

.feature-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--sage);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-list strong {
    color: var(--green-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.125rem;
}

.feature-list span {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.image-panel {
    background: linear-gradient(135deg, var(--green) 0%, var(--sage) 100%);
    border-radius: 12px;
    padding: 3rem;
    color: var(--white);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
}

.image-panel-content { position: relative; z-index: 1; }

.image-panel h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.image-panel p { color: rgba(255, 255, 255, 0.92); margin-bottom: 0; }

/* ===== Service Detail ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--light-gray);
    align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-label {
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.service-detail h2 { font-size: 2rem; margin-bottom: 0; }

.service-detail-body ul { list-style: none; margin-top: 1rem; }

.service-detail-body ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text);
}

.service-detail-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--green);
    font-weight: 700;
}

/* ===== CTA Band ===== */
.cta-band {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184, 199, 126, 0.18) 0%, transparent 60%);
}

.cta-band-content { position: relative; }

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }

.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
}

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--sage-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.contact-item-content h4 {
    color: var(--green-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-item-content a:hover { color: var(--green); }

.contact-form {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
}

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

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(95, 122, 85, 0.15);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ===== Values / About ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    text-align: center;
}

.value-card .service-icon { margin: 0 auto 1.25rem; }

.value-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Forms Page ===== */
.forms-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-category {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.form-category:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow-md);
}

.form-category-header {
    background: var(--sage-pale);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-category-header .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    background: var(--white);
}

.form-category-header h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
    color: var(--green-dark);
}

.form-category ul {
    list-style: none;
    padding: 0.5rem 0;
    flex: 1;
}

.form-category li {
    border-bottom: 1px solid var(--off-white);
}
.form-category li:last-child { border-bottom: none; }

.form-category li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.5rem;
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.15s ease;
}

.form-category li a:hover {
    background: var(--sage-pale);
    color: var(--green-dark);
}

.form-category li a::after {
    content: '↗';
    color: var(--green);
    font-weight: 700;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.form-note-box {
    background: var(--sage-pale);
    border-left: 4px solid var(--green);
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
    margin-top: 2rem;
}

.form-note-box strong {
    color: var(--green-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.form-note-box p {
    margin-bottom: 0;
    color: var(--text);
    font-size: 0.9375rem;
}

/* ===== Insights ===== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sage);
}

.insight-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--green) 0%, var(--sage) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-card-image .icon-large {
    color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.insight-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 52, 28, 0.10) 0%, rgba(31, 52, 28, 0.45) 100%);
    pointer-events: none;
}

.insight-card-image .tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    z-index: 2;
}

.insight-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-card-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.insight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.insight-card h3 a { color: var(--green-dark); }
.insight-card h3 a:hover { color: var(--green); }

.insight-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex: 1;
}

.insight-card-more {
    color: var(--green);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.insight-card-more:hover { color: var(--green-dark); }

.featured-insight {
    background: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.featured-insight-image {
    background-color: var(--green-dark);
    background-size: cover;
    background-position: center;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-insight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 52, 28, 0.25) 0%, rgba(31, 52, 28, 0.55) 100%);
    pointer-events: none;
}

.featured-insight-image .icon-large {
    color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.featured-insight-image .tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--sage);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 2;
}

.featured-insight-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-insight-body .insight-card-meta { color: var(--green); }

.featured-insight-body h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.featured-insight-body h2 a { color: var(--green-dark); }
.featured-insight-body h2 a:hover { color: var(--green); }

.newsletter-panel {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.newsletter-panel h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.5rem; }

.newsletter-panel p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9375rem;
}

.newsletter-form input:focus { outline: 2px solid var(--sage); }

/* ===== Article ===== */
.article-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.article-hero.has-photo {
    background-size: cover;
    background-position: center;
}

.article-hero.has-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 52, 28, 0.88) 0%, rgba(63, 85, 56, 0.78) 100%);
    pointer-events: none;
    z-index: 1;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(184, 199, 126, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.article-hero-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    z-index: 2;
}

.article-hero .breadcrumb { justify-content: center; }

.article-hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
}

.article-meta {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9375rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
}

.article-body h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }

.article-body ul, .article-body ol {
    margin: 0 0 1.25rem 1.5rem;
}
.article-body ul li, .article-body ol li { margin-bottom: 0.5rem; }

.article-body blockquote {
    border-left: 4px solid var(--sage);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.75rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--green-dark);
    font-style: italic;
}

.article-body strong { color: var(--green-dark); }

.article-tldr {
    background: var(--sage-pale);
    border-left: 4px solid var(--green);
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem;
    border-radius: 0 6px 6px 0;
}

.article-tldr strong {
    display: block;
    color: var(--green-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.article-tldr p { margin-bottom: 0; color: var(--text); }

/* ===== FAQ Accordion ===== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.open { border-color: var(--sage); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.1rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--green-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::after {
    content: '+';
    color: var(--green);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--text);
    font-size: 0.9375rem;
}

.faq-item.open .faq-answer { display: block; }

@media (max-width: 900px) {
    .featured-insight { grid-template-columns: 1fr; }
    .featured-insight-image { min-height: 220px; }
    .featured-insight-body { padding: 2rem 1.5rem; }
    .newsletter-form { flex-direction: column; }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.footer-brand-llc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    max-width: 320px;
}

.footer-col h5 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9375rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--sage-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

/* ============================================
   HERO VARIANTS (V2 carousel, V3 photo hero)
   ============================================ */

/* Bigger logo header for consumer-facing variants */
.site-header.header-bold .nav-brand .logo-square { display: none; }
.site-header.header-bold .nav-brand .logo-horizontal {
    display: block;
    height: 50px;
}
.site-header.header-bold .nav-wrap {
    padding: 1.25rem 0;
    justify-content: flex-start;
    gap: 2rem;
}
.site-header.header-bold .nav-brand { margin-right: auto; }
.site-header.header-bold .nav-menu { gap: 1.5rem; }

.header-topbar {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.header-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.header-topbar a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    margin-left: 1.25rem;
}
.header-topbar a:hover { color: var(--sage-light); }
.header-topbar .topbar-left { display: flex; gap: 1.25rem; align-items: center; }
.header-topbar .topbar-left strong { color: var(--sage-light); margin-right: 0.25rem; letter-spacing: 0.04em; }

/* === V2: Carousel hero === */
.hero-carousel {
    position: relative;
    height: 620px;
    overflow: hidden;
    color: var(--white);
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(31,52,28,0.78) 0%, rgba(63,85,56,0.55) 50%, rgba(63,85,56,0.25) 100%);
}
.hero-slide-content {
    position: relative;
    max-width: 720px;
    padding: 0 1.5rem;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}
.hero-slide-content .eyebrow {
    color: var(--sage-light);
    margin-bottom: 1rem;
}
.hero-slide-content h1 {
    color: var(--white);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-slide-content h1 .accent { color: var(--sage-light); }
.hero-slide-content p {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-carousel .container.hero-overlay {
    position: relative;
    width: 100%;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.carousel-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 4;
}
.carousel-dots button {
    width: 36px;
    height: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
    padding: 0;
}
.carousel-dots button.active { background: var(--sage-light); }

/* === V3: Bold photo hero === */
.hero-photo {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(31,52,28,0.88) 0%, rgba(63,85,56,0.7) 45%, rgba(63,85,56,0.25) 100%);
}
.hero-photo .container { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 5rem; }
.hero-photo .hero-content { max-width: 720px; }
.hero-photo h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-photo h1 .accent { color: var(--sage-light); }
.hero-photo .hero-eyebrow {
    color: var(--sage-light);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(63,85,56,0.55);
    border: 1px solid rgba(212, 219, 166, 0.4);
    border-radius: 4px;
}
.hero-photo p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.96);
    max-width: 620px;
    margin-bottom: 2.25rem;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

/* === Trust strip with credentials === */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 1.5rem 0;
}
.trust-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-strip-label {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.trust-badges {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    flex-wrap: wrap;
}
.trust-badge {
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 600;
}
.trust-badge strong { color: var(--green-dark); font-style: normal; font-family: 'Inter', sans-serif; }

/* === Service tile (image-based) for V3 === */
.service-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.service-tile {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.service-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,52,28,0) 35%, rgba(31,52,28,0.85) 100%);
}
.service-tile:hover { transform: translateY(-3px); }
.service-tile-content { position: relative; z-index: 2; }
.service-tile h3 {
    color: var(--white);
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}
.service-tile p {
    color: rgba(255,255,255,0.92);
    font-size: 0.9rem;
    margin: 0;
}

/* === Testimonials === */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-left: 4px solid var(--sage);
    padding: 1.75rem 1.5rem;
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-sm);
}
.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 0.975rem;
    line-height: 1.65;
}
.testimonial-card-meta {
    color: var(--green-dark);
    font-size: 0.875rem;
    font-weight: 600;
}
.testimonial-card-meta span {
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    font-size: 0.825rem;
    margin-top: 0.125rem;
}

@media (max-width: 720px) {
    .hero-carousel { height: 540px; }
    .hero-photo { min-height: 540px; }
    .header-topbar .container { flex-direction: column; align-items: flex-start; }
    .site-header.header-bold .nav-brand .logo-horizontal { height: 56px; }
}

/* Process / How We Work */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    counter-reset: step;
}
.process-step {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: all 0.25s ease;
}
.process-step:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.process-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sage-pale);
    color: var(--green-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid var(--sage);
}
.process-step h4 {
    color: var(--green-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.process-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}
@media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 540px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* ===== Article comparison tables ===== */
.comparison-table {
    margin: 1.5rem 0 2rem;
    overflow-x: auto;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
}
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}
.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
    vertical-align: top;
}
.comparison-table th {
    background: var(--sage-pale);
    color: var(--green-dark);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.comparison-table td:first-child {
    font-weight: 600;
    color: var(--green-dark);
    width: 30%;
}
.comparison-table tr:last-child td { border-bottom: none; }

/* ===== Forms page extras ===== */
.forms-intro {
    background: var(--sage-pale);
    border-left: 4px solid var(--green);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 0 6px 6px 0;
}
.forms-intro p { margin: 0; color: var(--text); }
.form-category-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    padding: 1rem 1.5rem 0.25rem;
    margin: 0;
    line-height: 1.55;
}
.form-category a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.file-meta {
    display: inline-block;
    background: var(--sage-pale);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.form-category a:hover .file-meta {
    background: var(--sage);
    color: var(--green-dark);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .two-col,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 4rem 0 3.5rem; }
    .nav-brand .logo-square { display: none; }
    .nav-brand .logo-horizontal { display: block; }
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        border-top: 1px solid var(--light-gray);
        border-bottom: 1px solid var(--light-gray);
        padding: 1rem 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-md);
    }
    .nav-menu.open { display: flex; }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    .nav-menu li:last-child { border-bottom: none; padding-top: 0.5rem; }
    .nav-menu a { display: block; padding: 0.875rem 0; }
    .nav-menu .btn { width: 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta .btn { width: 100%; }
    .contact-form { padding: 1.5rem; }
}

/* ============================================================
   Mobile optimizations (dedicated block — keep last)
   Tuned for phones in portrait (≤540px) and very narrow (≤380px).
   ============================================================ */
@media (max-width: 720px) {
    /* Container: tighter horizontal padding on phones */
    .container { padding: 0 1.125rem; }

    /* Top bar (mobile): hide phone + email entirely — they live in the footer.
       Keep only Client Portal + language switcher, right-aligned and compact. */
    .header-topbar { padding: 0.4rem 0; font-size: 0.8rem; }
    .header-topbar .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        gap: 0.75rem;
    }
    .header-topbar .topbar-left { display: none; }
    .header-topbar > .container > div:last-child a {
        margin-left: 1rem;
        font-size: 0.8rem;
    }
    .header-topbar > .container > div:last-child a:first-child { margin-left: 0; }

    /* Sticky header: tighten padding and logo */
    .nav-wrap { padding: 0.55rem 0; }
    .site-header.header-bold .nav-brand .logo-horizontal { height: 36px; }

    /* Hero photo: shorter and tighter */
    .hero-photo { min-height: 520px; }
    .hero-photo .container { padding-top: 3rem; padding-bottom: 3rem; }
    .hero-photo h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    .hero-photo .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        padding: 0.35rem 0.7rem;
        margin-bottom: 1rem;
    }
    .hero-photo p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 1.75rem;
    }
    .hero-cta { flex-direction: column; gap: 0.75rem; }

    /* Inner page hero (About, Services, Forms, Insights, Contact) */
    .page-hero { padding: 3.25rem 0 2.75rem; }
    .page-hero p { font-size: 1rem; }

    /* Trust strip: stack cleanly, center, smaller */
    .trust-strip { padding: 1.1rem 0; }
    .trust-strip .container { justify-content: center; text-align: center; gap: 0.75rem; }
    .trust-strip-label { font-size: 0.7rem; width: 100%; margin-bottom: 0.1rem; }
    .trust-badges { gap: 0.75rem 1.25rem; justify-content: center; }
    .trust-badge { font-size: 0.9rem; }
    .trust-badge strong { font-size: 0.95rem; }

    /* Service tiles: single column, shorter */
    .service-tiles { grid-template-columns: 1fr; gap: 0.875rem; }
    .service-tile { height: 180px; padding: 1.25rem; }
    .service-tile h3 { font-size: 1.2rem; }
    .service-tile p { font-size: 0.875rem; }

    /* Two-column sections collapse with less gap */
    .two-col { gap: 1.5rem; }
    .image-panel { min-height: 240px; }
    .image-panel-content { padding: 1.5rem !important; }

    /* Feature list: tighter left indent */
    .feature-list li { padding: 0.85rem 0 0.85rem 2rem; }

    /* CTA band tighter */
    .cta-band { padding: 3rem 0; }
    .cta-band h2 { font-size: 1.5rem; }
    .cta-band p { font-size: 1rem; }

    /* Section headers */
    .section-header { margin: 0 auto 2rem; }
    .section-header p { font-size: 0.975rem; }

    /* Forms page cards */
    .form-category-header { padding: 1rem 1.125rem; }
    .form-category-header h3 { font-size: 1.05rem; }
    .form-category-desc { padding: 0.875rem 1.125rem 0.25rem; font-size: 0.9rem; }
    .form-category li a { padding: 0.75rem 1.125rem; font-size: 0.9rem; }
    .form-note-box { padding: 1rem 1.125rem; }

    /* Forms grid goes single-column */
    .forms-categories { grid-template-columns: 1fr; gap: 1rem; }

    /* Insights cards: single column */
    .insights-grid { grid-template-columns: 1fr; gap: 1rem; }
    .insight-card-image { height: 160px; }
    .insight-card-body { padding: 1.25rem; }
    .insight-card h3 { font-size: 1.125rem; }

    /* Featured insight on mobile */
    .featured-insight-body { padding: 1.75rem 1.25rem !important; }
    .featured-insight-body h2 { font-size: 1.375rem; line-height: 1.25; }

    /* Article reading pages */
    .article-hero { padding: 3.5rem 0 2.75rem; }
    .article-hero h1 { font-size: 1.65rem; line-height: 1.2; }
    .article-meta { font-size: 0.85rem; gap: 0.75rem; }
    .article-body { padding: 2.5rem 0 2.5rem; }
    .article-body h2 { font-size: 1.3rem; margin-top: 2rem; }
    .article-body p,
    .article-body li { font-size: 0.975rem; }
    .article-tldr { padding: 1.25rem 1.25rem; }

    /* Tables inside articles: allow horizontal scroll */
    .comparison-table { font-size: 0.85rem; }
    .comparison-table th,
    .comparison-table td { padding: 0.6rem 0.75rem; }

    /* Contact page: stack info + form */
    .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-info { padding: 1.25rem; }
    .contact-form h3 { font-size: 1.25rem; }

    /* FAQs: tighter */
    .faq-question { padding: 0.95rem 1.125rem; font-size: 0.95rem; }
    .faq-answer { padding: 0 1.125rem 1rem; font-size: 0.9rem; }

    /* Services page: lists inside service-detail blocks */
    .service-detail { gap: 1rem !important; padding: 2rem 0 !important; }
    .service-detail h2 { font-size: 1.5rem; }
    .service-detail li { font-size: 0.95rem; }

    /* Newsletter panel */
    .newsletter-panel { padding: 2rem 1.5rem; }
    .newsletter-panel h3 { font-size: 1.25rem; }

    /* Breadcrumb */
    .breadcrumb { font-size: 0.8rem; }

    /* Footer: tighter spacing */
    .site-footer { padding: 2.75rem 0 1.25rem; }
    .footer-grid { gap: 1.75rem; margin-bottom: 2rem; }
    .footer-brand p { font-size: 0.9rem; }

    /* Process steps: cap H4 size */
    .process-step h4 { font-size: 1rem; }
}

/* Extra-narrow phones */
@media (max-width: 400px) {
    .header-topbar { font-size: 0.74rem; }
    .hero-photo h1 { font-size: 1.9rem; }
    .hero-photo p { font-size: 0.95rem; }
    .service-tile { height: 160px; }
    .trust-badges { gap: 0.5rem 1rem; }
    .trust-badge { font-size: 0.82rem; }
    .trust-badge strong { font-size: 0.88rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem !important; }
    .stat-number { font-size: 2rem !important; }
}

/* Disable hover transforms on touch devices to avoid sticky hover effect */
@media (hover: none) {
    .service-tile:hover,
    .insight-card:hover,
    .value-card:hover,
    .form-category:hover {
        transform: none;
    }
}
