﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap");

:root {
    --blue: #0093DE;
    --dark: #0b0f14;
    --muted: #5a6470;
    --bg: #ffffff;
    --alt: #f5f7fa;
    --line: #e6ebf1;
    --shadow: 0 12px 30px rgba(12, 18, 28, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--blue);
}

.container {
    width: min(1140px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 20px rgba(12, 18, 28, 0.05);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 18px;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 147, 222, 0.08);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(0, 147, 222, 0.12);
    color: var(--dark);
}

.main-nav .button {
    padding: 9px 18px;
    box-shadow: 0 8px 18px rgba(0, 147, 222, 0.25);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: var(--blue);
    color: #fff;
    border-radius: 999px;
    border: 1px solid var(--blue);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    background: #007fc0;
    border-color: #007fc0;
}

.button--small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.ghost-link {
    font-weight: 600;
    color: var(--dark);
}

.ghost-link:hover,
.ghost-link:focus-visible {
    text-decoration: underline;
}

.section {
    padding: 90px 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 90px;
}

.section:first-of-type {
    border-top: none;
}

.section--alt {
    background: linear-gradient(180deg, #f7f9fc 0%, #f0f4f8 100%);
}

.section h2 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--blue);
}

.section-intro {
    color: var(--muted);
    margin: 0 0 32px;
    max-width: 720px;
    font-size: 1.05rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.card {
    position: relative;
    padding: 22px 20px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    min-height: 110px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #0093DE, #4cc0ff);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(12, 18, 28, 0.12);
}

.card--icon {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: start;
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 147, 222, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}


.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    align-items: start;
}

.reference {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reference::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(90deg, rgba(0, 147, 222, 0.2), rgba(0, 147, 222, 0.8));
}

.reference:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(12, 18, 28, 0.12);
}

.reference h3 {
    margin: 0 0 8px;
}

.reference--featured {
    display: grid;
    gap: 18px;
    align-content: start;
}

.reference-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.reference-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 6px;
}

.reference-tag {
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.reference-text {
    margin: 0;
    color: var(--dark);
}

.reference-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    display: grid;
    gap: 6px;
}

.testimonial {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: #f0f6ff;
    border: 1px solid rgba(0, 147, 222, 0.18);
    width: 100%;
    margin: 5px;
    align-self: start;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    clip-path: circle(50% at 50% 50%);
    border: 2px solid #fff;
    box-shadow: 0 6px 16px rgba(12, 18, 28, 0.12);
    margin-bottom: 10px;
}

.testimonial blockquote {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
}

.testimonial figcaption {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 6px;
}

.reference-body {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 220px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.step-card {
    position: relative;
    padding: 22px 20px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    display: grid;
    gap: 10px;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 147, 222, 0.2), rgba(0, 147, 222, 0.8));
    border-radius: 18px 18px 0 0;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--blue);
    background: rgba(0, 147, 222, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
}

.step-title {
    margin: 0;
    font-size: 1.05rem;
}

.step-text {
    margin: 0;
    color: var(--muted);
}
.outcome-card {
    margin-top: 28px;
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 147, 222, 0.12), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(0, 147, 222, 0.2);
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.outcome-tag {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(0, 147, 222, 0.15);
    padding: 4px 10px;
    border-radius: 999px;
}

.outcome-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.outcome-text {
    margin: 0 0 10px;
    color: var(--muted);
}

.outcome-list {
    margin: 0;
    padding-left: 18px;
    color: var(--dark);
    display: grid;
    gap: 6px;
}

.outcome-list li::marker {
    color: var(--blue);
}

.closing-line {
    margin-top: 28px;
    font-weight: 600;
    background: rgba(0, 147, 222, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    display: inline-block;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.contact-copy h2 {
    margin-top: 0;
}

.contact-notes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.contact-notes li::before {
    content: "\2022 ";
    color: var(--blue);
    font-weight: 700;
}

.contact-form {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

label {
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font: inherit;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(0, 147, 222, 0.2);
    border-color: var(--blue);
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-weight: 600;
}

.alert--success {
    background: #e6f6ec;
    color: #115c2c;
    border: 1px solid #c7ebd2;
}

.alert--error {
    background: #fdeaea;
    color: #8b1c1c;
    border: 1px solid #f6c4c4;
}

.legal h2 {
    margin-top: 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 24px 0 40px;
    font-size: 0.95rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.hero {
    padding: 80px 0 90px;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0) 70%),
        url("../img/hero.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 620px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 570px);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.hero-copy {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 28px 28px 26px;
    box-shadow: 0 18px 40px rgba(12, 18, 28, 0.18);
    border: 1px solid rgba(230, 235, 241, 0.9);
}

.hero-media {
    display: none;
}

.hero-copy .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--blue);
    margin: 0 0 14px;
}

.hero-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.2;
}

.hero-copy .lead {
    font-size: 1.05rem;
    margin: 0 0 22px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero {
        padding: 56px 0 64px;
        min-height: 460px;
        background-image:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0) 100%),
            url("../img/hero.png");
        background-position: center 10%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .main-nav {
        width: 100%;
        gap: 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-actions .ghost-link {
        text-align: center;
    }

    .section {
        padding: 64px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy h2,
.hero-copy .lead,
.hero-actions {
    animation: fadeUp 0.7s ease both;
}

.hero-copy .lead {
    animation-delay: 0.1s;
}

.hero-actions {
    animation-delay: 0.2s;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(0, 147, 222, 0.35);
    outline-offset: 2px;
}
