:root {
    --bg: #F7F4EF;
    --primary: #2A6F7F;
    --primary-dark: #1F5563;
    --accent: #E07A5F;
    --secondary: #F2CC8F;
    --text: #2D3436;
    --text-muted: #636E72;
    --card-bg: #FFFFFF;
    --border: rgba(45, 52, 54, 0.1);
    --shadow: 0 8px 32px rgba(42, 111, 127, 0.12);
    --radius: 16px;
    --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 244, 239, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.brand:hover { text-decoration: none; }

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav a {
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--primary);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(42, 111, 127, 0.25);
}

.btn-primary:hover { background: var(--primary-dark); color: #fff; }

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(224, 122, 95, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover { background: var(--primary); color: #fff; }

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(160deg, var(--bg) 0%, #EDE8DF 55%, #E8F0F2 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(42, 111, 127, 0.1);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--text);
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-card h3 {
    margin: 0 0 1rem;
    color: var(--primary);
    font-size: 1.125rem;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

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

.hero-list .icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(42, 111, 127, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.75rem;
    color: var(--text);
}

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

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

.feature-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-icon.teal { background: rgba(42, 111, 127, 0.12); }
.feature-icon.coral { background: rgba(224, 122, 95, 0.12); }
.feature-icon.gold { background: rgba(242, 204, 143, 0.35); }
.feature-icon.green { background: rgba(129, 178, 154, 0.2); }

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
}

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

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

.step-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
}

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

.cta-band {
    background: var(--primary);
    color: #fff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0 0;
}

.cta-band h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

.cta-band p {
    margin: 0 auto 1.5rem;
    max-width: 520px;
    opacity: 0.92;
}

.cta-band .btn-accent { font-size: 1rem; padding: 0.875rem 1.5rem; }

/* Page content */
.page-hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(160deg, var(--bg) 0%, #EDE8DF 100%);
}

.page-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.page-hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 640px;
}

.content-block {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.content-block h2 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.content-block p,
.content-block li {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.content-block ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
}

.contact-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
}

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

.contact-card a {
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #1F5563;
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255, 255, 255, 0.65); }

.footer-brand p {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer-col h4 {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    text-decoration: none;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .features-grid,
    .steps,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle { display: block; }

    .site-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--card-bg);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .site-nav.open { display: flex; }

    .site-nav a { padding: 0.75rem; }

    .header-actions .btn-outline { display: none; }
}

@media (max-width: 600px) {
    .hero { padding: 2.5rem 0 3rem; }
    .section { padding: 2.5rem 0; }
    .cta-band { padding: 2rem 1.25rem; }
}
