:root {
    --ink: #17212b;
    --gold: #d8a03a;
    --blue: #1d506c;
    --clay: #a85f3a;
    --muted: #60717d;
    --paper: #fbf7ef;
    --cream: #fffaf1;
    --green: #1f6f55;
    --green-dark: #104433;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--paper);
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, .brand-logo, .nav-link, .btn, .chip {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

nav {
    background: rgba(16, 68, 51, 0.92);
    box-shadow: none;
}

nav .brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

nav .brand-logo img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

nav ul a {
    font-weight: 700;
}

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 37, 31, 0.93), rgba(15, 37, 31, 0.58) 52%, rgba(15, 37, 31, 0.25)),
    radial-gradient(circle at 75% 18%, rgba(216, 160, 58, 0.38), transparent 28%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 90px;
    padding-bottom: 90px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.92;
    margin: 0 0 26px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.hero .lead {
    max-width: 780px;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.55;
    color: #f4ead7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-large, .btn {
    border-radius: 999px;
    text-transform: none;
    font-weight: 800;
    letter-spacing: 0;
}

.btn-primary {
    background: var(--gold);
    color: #1d1607;
}

.btn-primary:hover, .btn-primary:focus {
    background: #e8b858;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.section-wrap {
    padding: 82px 0;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.section-kicker {
    color: var(--clay);
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-lead {
    color: var(--muted);
    font-size: 1.22rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.feature-card {
    min-height: 292px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(23, 33, 43, 0.08);
    box-shadow: 0 22px 60px rgba(23, 33, 43, 0.10);
}

.feature-card .card-content {
    padding: 28px;
}

.feature-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(31, 111, 85, 0.12);
    color: var(--green);
}

.feature-card h5 {
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.feature-card p, .feature-card li {
    color: var(--muted);
    line-height: 1.62;
    font-size: 1rem;
}

.feature-card ul {
    margin: 12px 0 0;
}

.feature-card li {
    margin: 8px 0;
}

.stats-band {
    background: linear-gradient(135deg, rgba(29, 80, 108, 0.96), rgba(16, 68, 51, 0.96)),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: white;
    border-radius: 34px;
    padding: 44px;
    box-shadow: 0 30px 80px rgba(16, 68, 51, 0.24);
}

.stat h3 {
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 6px;
}

.stat p {
    color: #dce9df;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.workflow {
    background: var(--cream);
}

.timeline-card {
    background: white;
    border-left: 7px solid var(--gold);
    border-radius: 20px;
    margin-bottom: 18px;
    padding: 24px 26px;
    box-shadow: 0 16px 42px rgba(23, 33, 43, 0.08);
}

.timeline-card h5 {
    margin-top: 0;
    font-weight: 900;
    color: var(--blue);
}

.parallax-container {
    height: 470px;
}

.parallax-caption {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.parallax-caption .section-lead {
    color: #f7f2e8;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.parallax-container:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 38, 47, 0.82), rgba(16, 38, 47, 0.40));
    z-index: 1;
}

.dark-panel {
    background: #12201b;
    color: white;
}

.dark-panel .section-lead, .dark-panel p {
    color: #d9e4dd;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-grid .chip {
    height: auto;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(216, 160, 58, 0.15);
    color: #f7e5be;
    border: 1px solid rgba(216, 160, 58, 0.35);
    font-weight: 800;
}

.integration-label {
    color: white;
    font-weight: 900;
    margin: 0 0 12px;
}

.integration-note {
    color: #c8d8cf;
    margin-top: 18px;
}

.cta-panel {
    background: radial-gradient(circle at 12% 20%, rgba(216, 160, 58, 0.36), transparent 26%),
    linear-gradient(135deg, #17392f, #10232b);
    color: white;
    border-radius: 38px;
    padding: 54px;
    overflow: hidden;
    position: relative;
}

.cta-panel:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    bottom: -110px;
    border-radius: 50%;
    border: 48px solid rgba(255, 255, 255, 0.07);
}

.cta-panel h2, .cta-panel p, .cta-panel a {
    position: relative;
    z-index: 1;
}

footer.page-footer {
    background: var(--green-dark);
}

@media only screen and (max-width: 600px) {
    .hero {
        min-height: 660px;
    }

    .hero-content {
        padding-top: 72px;
    }

    .stats-band, .cta-panel {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .parallax-container {
        height: 560px;
    }
}