/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green-dark:   #1a3a2a;
    --green-mid:    #2d5a3d;
    --green-light:  #4a7c5f;
    --green-pale:   #e8f0e8;
    --green-bg:     #f4f6f0;
    --gold:         #c9a84c;
    --gold-light:   #e8c96a;
    --navy:         #1a2744;
    --white:        #ffffff;
    --gray-100:     #f7f8f6;
    --gray-200:     #eaeee8;
    --gray-400:     #9aaa94;
    --gray-600:     #5a6b55;
    --gray-800:     #2e3d2a;
    --text:         #1e2d1a;
    --text-light:   #4a5e44;
    --radius:       8px;
    --radius-lg:    14px;
    --shadow-sm:    0 1px 4px rgba(0,0,0,.08);
    --shadow-md:    0 4px 16px rgba(0,0,0,.12);
    --shadow-lg:    0 8px 32px rgba(0,0,0,.16);
    --transition:   .2s ease;
    --max-width:    1200px;
    --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.bg-light { background: var(--green-bg); }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
}
.btn-secondary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}
.btn-outline-light:hover {
    background: var(--gold);
    color: var(--green-dark);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-block { display: flex; width: 100%; }

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--green-dark);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

/* Brand */
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-icon { width: 40px; height: 40px; flex-shrink: 0; }
.brand-icon .site-logo { width: 40px; height: 40px; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .5px;
    line-height: 1.2;
}
.brand-tagline {
    font-size: .7rem;
    color: var(--gold);
    letter-spacing: .8px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list li a {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-list li a:hover,
.nav-list li.current-menu-item > a {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
.nav-list li a.nav-cta {
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    border-radius: var(--radius);
}
.nav-list li a.nav-cta:hover {
    background: var(--gold-light);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius);
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 100%);
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 60px;
    max-width: 760px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,.2);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-title .highlight { color: var(--gold); }
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }


.hero-wave {
    position: relative;
    height: 60px;
}
.hero-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* === STATS BAR === */
.stats-bar {
    background: var(--green-bg);
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-dark);
}
.stat-label {
    font-size: .8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 500;
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.service-card--cta {
    background: var(--green-pale);
    border-color: var(--green-mid);
}
.service-icon { width: 48px; height: 48px; }
.service-icon svg { width: 100%; height: 100%; }
.service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-dark);
}
.service-desc {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}
.service-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--green-mid);
    margin-top: 4px;
}
.service-link:hover { color: var(--green-dark); }

/* === STEPS === */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--green-dark);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}
.step-desc {
    font-size: .875rem;
    color: var(--text-light);
    line-height: 1.6;
}
.step-arrow {
    font-size: 1.5rem;
    color: var(--green-light);
    flex-shrink: 0;
}

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--green-mid); }
.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--green-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: var(--white);
    transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--green-mid);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { background: var(--green-pale); }
.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
}
.faq-answer p + p { margin-top: 12px; }
.faq-answer ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.faq-answer ul li { margin-bottom: 6px; }
.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--navy));
    padding: 80px 0;
}
.cta-box {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--navy));
    padding: 60px 0;
}
.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.8);
    max-width: 600px;
    line-height: 1.7;
}

/* === PAGE LAYOUT (with sidebar) === */
.page-main { padding: 60px 0; }
.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}
.page-header { margin-bottom: 32px; }
.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-dark);
}
.entry-content { font-size: 1rem; color: var(--text); line-height: 1.8; }
.entry-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin: 32px 0 12px; }
.entry-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin: 24px 0 10px; }
.entry-content p { margin-bottom: 16px; }
.entry-content ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; }

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-widget .widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}
.sidebar-links li { border-bottom: 1px solid var(--gray-200); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
    display: block;
    padding: 10px 0;
    font-size: .9rem;
    color: var(--text-light);
}
.sidebar-links a:hover { color: var(--green-mid); padding-left: 4px; }

/* === LEGAL AREAS === */
.legal-area {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    overflow: hidden;
}
.legal-area-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--green-pale);
    border-bottom: 1px solid var(--gray-200);
}
.legal-area-icon { width: 48px; height: 48px; flex-shrink: 0; }
.legal-area-icon svg { width: 100%; height: 100%; }
.legal-area-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-dark);
}
.legal-area-body {
    padding: 32px;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.8;
}
.legal-area-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 24px 0 10px;
}
.legal-area-body p { margin-bottom: 14px; }
.legal-area-body ul {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}
.legal-area-body ul li {
    padding: 8px 12px 8px 32px;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    font-size: .9rem;
}
.legal-area-body ul li:last-child { border-bottom: none; }
.legal-area-body ul li::before {
    content: '›';
    position: absolute;
    left: 12px;
    color: var(--green-mid);
    font-weight: 700;
    font-size: 1.1rem;
}
.legal-disclaimer {
    background: rgba(201,168,76,.1);
    border-left: 4px solid var(--gold);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: .875rem;
    color: var(--gray-800);
    margin-top: 20px;
}

/* === FAQ FULL PAGE === */
.faq-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}
.faq-nav {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 90px;
}
.faq-nav-title {
    font-size: .875rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
}
.faq-nav ul { display: flex; flex-direction: column; gap: 4px; }
.faq-nav a {
    display: block;
    padding: 8px 12px;
    font-size: .9rem;
    color: var(--text-light);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.faq-nav a:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}
.faq-group { margin-bottom: 48px; }
.faq-group-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}
.faq-cta {
    background: var(--green-pale);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
}
.faq-cta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}
.faq-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* === CONTACT === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.contact-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 28px;
}
.form-row { margin-bottom: 0; }
.form-row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}
.required { color: #c0392b; }
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45,90,61,.1);
}
.form-textarea { resize: vertical; min-height: 160px; }
.form-hint {
    display: block;
    font-size: .8rem;
    color: var(--gray-400);
    margin-top: 6px;
}
.form-group--check { display: flex; align-items: flex-start; gap: 10px; }
.form-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .875rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}
.form-check-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--green-mid);
    margin-top: 1px;
}
.form-submit { margin-top: 8px; }

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: .95rem;
}
.alert-success {
    background: #e6f4ea;
    border: 1px solid #81c995;
    color: #1a4731;
}
.alert-error {
    background: #fce8e6;
    border: 1px solid #f28b82;
    color: #5c1f1a;
}

/* Contact info cards */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.contact-info-card--warning {
    background: #fff9e6;
    border-color: var(--gold);
}
.contact-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.info-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.info-icon svg { width: 100%; height: 100%; }
.contact-info-list strong { display: block; font-size: .9rem; color: var(--text); }
.contact-info-list span { font-size: .85rem; color: var(--text-light); }
.contact-info-card--warning p {
    font-size: .875rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.contact-info-card--warning ul { padding-left: 0; }
.contact-info-card--warning li {
    padding: 6px 0;
    font-size: .875rem;
    border-bottom: 1px solid rgba(201,168,76,.2);
}
.contact-info-card--warning li:last-child { border-bottom: none; }

/* === FOOTER === */
.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,.8);
    padding: 60px 0 0;
    border-top: 3px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}
.footer-desc {
    font-size: .875rem;
    line-height: 1.7;
    color: rgba(255,255,255,.65);
}
.footer-title {
    font-size: .875rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-text {
    font-size: .875rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 16px;
    line-height: 1.6;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
}
.footer-legal,
.footer-credit {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
}

/* === SERVICE TAG (eje principal) === */
.service-card--featured {
    border-color: var(--green-mid);
    background: linear-gradient(160deg, var(--white) 80%, var(--green-pale));
}
.service-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}

/* === ABOUT PAGE === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}
.about-block { margin-bottom: 48px; }
.about-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
}
.about-block p { font-size: .95rem; color: var(--text); line-height: 1.8; margin-bottom: 14px; }

.about-pillars { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--green-pale);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--green-mid);
}
.pillar-icon { width: 44px; height: 44px; flex-shrink: 0; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-title { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.pillar-desc { font-size: .875rem; color: var(--text-light); line-height: 1.7; }

.focus-areas { display: flex; flex-direction: column; gap: 20px; }
.focus-area {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}
.focus-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}
.focus-area h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.focus-area p { font-size: .875rem; color: var(--text-light); line-height: 1.7; }

/* Collaboration card */
.collab-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--green-pale);
    border: 1px solid var(--green-mid);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.collab-logo { flex-shrink: 0; }
.collab-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}
.collab-desc {
    font-size: .875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Sidebar highlight variant */
.sidebar-widget--highlight { background: var(--green-pale); border-color: var(--green-mid); }
.values-list { display: flex; flex-direction: column; gap: 0; }
.values-list li {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}
.values-list li:last-child { border-bottom: none; }
.values-list strong { font-size: .9rem; color: var(--green-dark); }
.values-list span { font-size: .8rem; color: var(--text-light); margin-top: 2px; }

/* === NOTICE EMPTY === */
.notice-empty {
    background: var(--green-pale);
    border: 1px dashed var(--green-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    font-size: .95rem;
}
.notice-empty a { color: var(--green-mid); font-weight: 600; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info { display: grid; grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--green-dark);
        border-top: 1px solid rgba(255,255,255,.1);
        border-bottom: 3px solid var(--gold);
        padding: 16px 24px;
        display: none;
        box-shadow: var(--shadow-lg);
    }
    .primary-nav.is-open { display: flex; }
    .nav-list { flex-direction: column; width: 100%; gap: 4px; }
    .nav-list li a { display: block; padding: 12px 16px; }
    .nav-list li a.nav-cta { text-align: center; margin-top: 8px; }

    .hero-actions { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    .services-grid { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-nav { position: static; }
    .page-layout { grid-template-columns: 1fr; }
    .form-row--two { grid-template-columns: 1fr; }
    .about-sidebar { grid-template-columns: 1fr; }
    .pillar { flex-direction: column; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-info { grid-template-columns: 1fr; }
    .section-pad { padding: 56px 0; }
}

@media (max-width: 480px) {
    .hero { padding: 48px 0 0; }
    .hero-title { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .header-inner { height: 60px; }
    .legal-area-header { padding: 20px; }
    .legal-area-body { padding: 20px; }
}
