:root {
    --bg: #f3efe8;
    --bg-alt: #fffdf9;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --ink: #172126;
    --muted: #52606d;
    --line: rgba(23, 33, 38, 0.12);
    --brand: #0d5a61;
    --brand-strong: #083c42;
    --accent: #d77d42;
    --accent-soft: #f2d8c6;
    --shadow: 0 24px 60px rgba(9, 31, 35, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --wrap: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(215, 125, 66, 0.14), transparent 24%),
        radial-gradient(circle at 85% 12%, rgba(13, 90, 97, 0.15), transparent 22%),
        linear-gradient(180deg, #fcfaf6 0%, #f3efe8 54%, #f7f4ee 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    width: min(calc(100% - 2rem), var(--wrap));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(252, 250, 246, 0.82);
    border-bottom: 1px solid rgba(23, 33, 38, 0.08);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: "Avenir Next Condensed", "Futura Condensed Extra Bold", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-strong);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.brand-copy {
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--brand);
}

.nav-cta {
    padding: 0.82rem 1.15rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(13, 90, 97, 0.2);
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 2rem;
    align-items: stretch;
}

.hero-copy,
.visual-panel {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(13, 90, 97, 0.1);
    color: var(--brand-strong);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Avenir Next", "Futura", "Trebuchet MS", sans-serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    margin-top: 1rem;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    max-width: 10ch;
}

.hero-copy p {
    margin: 1.2rem 0 0;
    font-size: 1.08rem;
    max-width: 60ch;
    color: var(--muted);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.button,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
    background: linear-gradient(135deg, var(--brand) 0%, #12747d 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(13, 90, 97, 0.24);
}

.button-secondary {
    border: 1px solid rgba(13, 90, 97, 0.18);
    background: rgba(255, 255, 255, 0.65);
    color: var(--brand-strong);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
    transform: translateY(-2px);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    grid-column: 1 / -1;
}

.hero-points div,
.audience-panel,
.stat,
.service-card,
.feature-card,
.faq-item,
.contact-panel,
.visual-panel,
.trust-panel {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-points div {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.audience-panel {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
}

.audience-panel h2 {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
}

.audience-points {
    display: grid;
    gap: 0.8rem;
}

.audience-points div {
    padding: 0.95rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 33, 38, 0.08);
}

.hero-points strong {
    display: block;
    font-size: 1.05rem;
    color: var(--brand-strong);
}

.hero-points span {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
}

.visual-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
        linear-gradient(145deg, rgba(13, 90, 97, 0.16), rgba(215, 125, 66, 0.16));
    padding: 1.4rem;
    min-height: 100%;
}

.visual-card {
    border-radius: 22px;
    background: linear-gradient(160deg, #113a40 0%, #0f5d64 62%, #1d7e87 100%);
    padding: 1.35rem;
    color: #fff;
    min-height: 100%;
}

.visual-card small {
    display: inline-block;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.visual-card h2 {
    margin-top: 1rem;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    max-width: 10ch;
}

.visual-card p {
    margin: 1rem 0 1.4rem;
    color: rgba(255, 255, 255, 0.84);
    max-width: 34ch;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.stat {
    position: relative;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.95rem;
}

.stat-icon {
    display: inline-block;
    position: relative;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
}

.stat-icon::before,
.stat-icon::after {
    content: "";
    position: absolute;
}

.stat-icon-epc::before {
    inset: 0.6rem 0.8rem 0.75rem;
    border-radius: 6px;
    background: #f7f1e9;
}

.stat-icon-epc::after {
    top: 0.92rem;
    left: 1.08rem;
    width: 0.9rem;
    height: 1.15rem;
    border-top: 0.16rem solid #0d5a61;
    border-bottom: 0.16rem solid #0d5a61;
    box-shadow: 0 0.35rem 0 0 #0d5a61;
}

.stat-icon-photo::before {
    inset: 0.85rem 0.65rem;
    border-radius: 0.5rem;
    border: 0.18rem solid #f7f1e9;
}

.stat-icon-photo::after {
    top: 1.18rem;
    left: 1.17rem;
    width: 0.68rem;
    height: 0.68rem;
    border: 0.18rem solid #f7f1e9;
    border-radius: 999px;
    box-shadow: 0.92rem -0.24rem 0 -0.06rem #f7f1e9;
}

.stat-icon-plan::before {
    inset: 0.68rem;
    border-radius: 0.42rem;
    border: 0.16rem solid #f7f1e9;
    box-shadow:
        inset 0.74rem 0 0 -0.58rem #f7f1e9,
        inset 1.48rem 0 0 -0.58rem #f7f1e9,
        inset 0 0.74rem 0 -0.58rem #f7f1e9,
        inset 0 1.48rem 0 -0.58rem #f7f1e9;
}

.stat-icon-plan::after {
    right: 0.52rem;
    bottom: 0.48rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background: #d77d42;
    box-shadow: 0 0 0 0.12rem rgba(247, 241, 233, 0.85);
}

.stat strong {
    display: block;
    font-size: 1.2rem;
}

.stat span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

section {
    padding: 2rem 0;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-head p {
    margin: 0.6rem 0 0;
    max-width: 60ch;
    color: var(--muted);
}

.services-grid,
.features-grid,
.faq-grid {
    display: grid;
    gap: 1.25rem;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 1.2rem;
    backdrop-filter: blur(12px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #efe4d9, #f8f5ef);
}

.service-card h3 {
    font-size: 1.4rem;
}

.service-card p {
    margin: 0.85rem 0 0;
    color: var(--muted);
}

.service-card ul {
    padding-left: 1.1rem;
    margin: 0.9rem 0 0;
    color: var(--muted);
}

.service-card li + li {
    margin-top: 0.45rem;
}

.trust-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 242, 0.76));
}

.trust-panel p {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.trust-panel img {
    width: min(180px, 28vw);
    height: auto;
}

.features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    padding: 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.feature-card strong {
    display: block;
    font-size: 1rem;
    color: var(--brand-strong);
}

.feature-card p {
    margin: 0.55rem 0 0;
    color: var(--muted);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    padding: 1.2rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.step span {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--brand-strong);
    font-weight: 800;
}

.step p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    padding: 1.2rem;
}

.faq-item p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1.4rem;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 245, 0.75));
}

.contact-panel p {
    margin: 0.8rem 0 0;
    color: var(--muted);
    max-width: 58ch;
}

.contact-card {
    padding: 1.25rem;
    border-radius: 20px;
    background: var(--brand-strong);
    color: #fff;
}

.contact-card dl {
    margin: 0;
}

.contact-card dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.62);
}

.contact-card dd {
    margin: 0.3rem 0 1rem;
    font-size: 1.02rem;
    font-weight: 700;
}

.site-footer {
    padding: 2rem 0 3rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(23, 33, 38, 0.1);
}

@media (max-width: 1024px) {
    .hero-grid,
    .contact-panel,
    .services-grid,
    .features-grid,
    .steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-points,
    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-points {
        grid-column: auto;
    }

    .trust-panel {
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

@media (max-width: 760px) {
    .site-header .wrap,
    .section-head,
    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 3.2rem;
    }

    h1 {
        max-width: none;
    }

    .hero-points,
    .stats {
        grid-template-columns: 1fr;
    }

    .brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-mark {
        font-size: 1.55rem;
    }

    .nav-cta,
    .button,
    .button-secondary {
        width: 100%;
    }

    .service-card img {
        height: 190px;
    }
}
