@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

*, *::before, *::after { box-sizing: border-box; }

:root {
    --turquoise: #05aff2;
    --turquoise-dark: #048bc3;
    --blue: #115d8c;
    --dark-blue: #302c4d;
    --grey: #698196;
    --light-blue: #aeb9c6;
    --soft: #f3f5f6;
    --ink: #ffffff;
    --muted: #aeb9c6;
    --page: #07121d;
    --section: #0b1826;
    --panel: #102235;
    --panel-soft: #142b42;
    --line: rgba(174, 185, 198, 0.18);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    --max-width: 1120px;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--page);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 18, 29, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav {
    max-width: var(--max-width);
    min-height: 74px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand, .footer-brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 168px; height: auto; }

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--turquoise);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.nav-links a:hover, .nav-links a.active { color: var(--turquoise); }

.nav-links .nav-cta {
    color: #fff;
    background: var(--turquoise);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.nav-links .nav-cta:hover { color: #fff; background: var(--blue); }

.container { max-width: var(--max-width); margin: 0 auto; }
.section { padding: 92px 24px; }
.light, .muted { background: var(--section); }
.dark { background: #06101a; }

.eyebrow {
    margin: 0 0 12px;
    color: var(--turquoise);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
    font-size: clamp(2.55rem, 6vw, 4.7rem);
    line-height: 1.03;
    margin-bottom: 24px;
}
h2 {
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 18px;
}
h3 { font-size: 1.08rem; line-height: 1.35; margin-bottom: 10px; }
p, li, .lead { color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 690px; }

.hero {
    padding: 94px 24px 78px;
    background:
        radial-gradient(circle at 72% 12%, rgba(5, 175, 242, 0.22), transparent 31%),
        linear-gradient(180deg, #07121d 0%, #0b1826 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 56px;
}

.hero h1 em { color: var(--turquoise); font-style: normal; }
.hero-copy { max-width: 680px; margin-bottom: 34px; color: var(--muted); font-size: 1.16rem; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--turquoise);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.button:hover { background: var(--blue); transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--turquoise); border-color: rgba(5, 175, 242, 0.55); }
.button.secondary:hover { background: rgba(5, 175, 242, 0.1); }

.hero-visual {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, var(--panel), var(--panel-soft));
    box-shadow: var(--shadow);
}
.hero-visual img { width: min(320px, 100%); margin: 0 auto; }

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 54px;
}

.proof-item, .card, .offer-card, .step, .about-panel, .about-logo, .content-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.proof-item { border-top: 3px solid var(--turquoise); padding: 20px; }
.proof-item strong { display: block; color: #fff; margin-bottom: 6px; }
.proof-item span { color: var(--muted); font-size: 0.92rem; }

.section-head { max-width: 760px; margin-bottom: 42px; }
.grid-3, .grid-4, .offer-grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }

.card, .offer-card, .step, .about-panel { padding: 26px; }
.icon-box, .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(5, 175, 242, 0.13);
    color: var(--turquoise);
    font-weight: 700;
}
.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 36px;
    align-items: start;
}
.approach-list { display: grid; gap: 18px; }
.approach-note, .approach-item {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
}
.approach-note { border-left: 4px solid var(--turquoise); }

.offer-card { display: flex; flex-direction: column; }
.offer-card.featured { border-color: rgba(5, 175, 242, 0.72); box-shadow: var(--shadow); }
.tag {
    align-self: flex-start;
    margin-bottom: 16px;
    border-radius: 8px;
    padding: 6px 10px;
    color: #fff;
    background: rgba(5, 175, 242, 0.2);
    font-size: 0.78rem;
    font-weight: 700;
}
.price { margin: 14px 0 22px; color: var(--turquoise); font-size: 2rem; line-height: 1; font-weight: 700; }
.price span { color: var(--muted); font-size: 0.9rem; font-weight: 400; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.check-list li { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.check-list li::before {
    content: "";
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 9px;
    border-radius: 50%;
    background: var(--turquoise);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
    gap: 36px;
    align-items: center;
}
.about-logo { padding: 28px; background: #0a1724; }
.about-logo img { width: min(260px, 100%); margin: 0 auto; }
.values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.values span {
    color: #fff;
    background: rgba(5, 175, 242, 0.14);
    border: 1px solid rgba(5, 175, 242, 0.28);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, #115d8c, #07121d);
    padding: 82px 24px;
}
.cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}
.cta-section p { max-width: 620px; margin-bottom: 0; }

.site-footer {
    background: #050c14;
    color: var(--muted);
    padding: 40px 24px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand img { width: 146px; height: auto; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--turquoise); }

.legal-header {
    padding: 78px 24px 52px;
    background: var(--section);
    border-bottom: 1px solid var(--line);
}
.legal-layout { padding: 56px 24px 92px; }
.content-card { max-width: 900px; margin: 0 auto; padding: 42px; }
.content-card h2 {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    color: var(--turquoise);
    font-size: 1.28rem;
}
.content-card h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.content-card h3 { margin-top: 22px; }
.content-card a { color: var(--turquoise); text-decoration: none; }
.content-card a:hover { text-decoration: underline; }
.content-card strong { color: #fff; }
.content-card .meta {
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--grey);
    font-size: 0.9rem;
}

@media (max-width: 920px) {
    .hero-grid, .approach-grid, .about-grid, .cta-box { grid-template-columns: 1fr; }
    .hero-proof, .grid-3, .grid-4, .offer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav { min-height: 68px; padding: 0 18px; }
    .brand img { width: 138px; }
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 18px 24px;
        background: var(--page);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 4px; }
    .nav-links .nav-cta { margin-top: 8px; text-align: center; }
    .section, .hero, .cta-section, .legal-layout { padding-left: 18px; padding-right: 18px; }
    .section { padding-top: 66px; padding-bottom: 66px; }
    .hero { padding-top: 62px; }
    .hero-proof, .grid-3, .grid-4, .offer-grid { grid-template-columns: 1fr; }
    .hero-actions, .cta-actions { flex-direction: column; }
    .button { width: 100%; }
    .content-card { padding: 28px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}
