:root {
    --color-navy-950: #031128;
    --color-navy-900: #061734;
    --color-navy-800: #0b2448;
    --color-navy-700: #173c68;

    --color-cyan-500: #52d7df;
    --color-cyan-400: #78e3e8;
    --color-cyan-100: #dffbfc;

    --color-blue-600: #1766b0;

    --color-white: #ffffff;
    --color-surface: #f5f9fc;
    --color-surface-strong: #edf5f8;

    --color-text: #12243b;
    --color-text-soft: #53677d;
    --color-border: rgba(16, 52, 85, 0.12);

    --shadow-small: 0 12px 30px rgba(4, 25, 54, 0.08);
    --shadow-large: 0 30px 80px rgba(4, 25, 54, 0.14);

    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 36px;

    --container-width: 1220px;
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 1.02rem;
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );

    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    min-height: var(--header-height);

    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--color-border);

    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: var(--color-navy-900);
    text-decoration: none;
}

.brand-logo {
    width: 58px;
    height: 58px;

    border-radius: 50%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.brand-copy span {
    margin-top: 6px;

    color: var(--color-text-soft);

    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 21px;
}

.primary-navigation > a:not(.button) {
    position: relative;

    color: var(--color-text);

    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.primary-navigation > a:not(.button)::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;

    height: 2px;

    background: var(--color-cyan-500);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 180ms ease;
}

.primary-navigation > a:not(.button):hover::after,
.primary-navigation > a:not(.button):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;
    padding: 11px;

    border: 0;
    border-radius: 14px;

    background: var(--color-surface);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;
    margin: 5px 0;

    background: var(--color-navy-900);
}

.button {
    min-height: 52px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: 999px;

    font-weight: 750;
    line-height: 1;
    text-align: center;
    text-decoration: none;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-small {
    min-height: 44px;
    padding-inline: 19px;

    font-size: 0.88rem;
}

.button-primary {
    color: var(--color-navy-950);
    background: var(--color-cyan-500);

    box-shadow:
        0 12px 32px rgba(82, 215, 223, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--color-cyan-400);

    box-shadow:
        0 18px 40px rgba(82, 215, 223, 0.34);
}

.button-secondary {
    color: var(--color-navy-900);

    border-color: rgba(10, 42, 76, 0.18);

    background: var(--color-white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--color-cyan-500);
    box-shadow: var(--shadow-small);
}

.button-light {
    color: var(--color-navy-950);
    background: var(--color-white);
}

.button-ghost {
    color: var(--color-white);

    border-color: rgba(255, 255, 255, 0.35);

    background: transparent;
}

.hero {
    position: relative;

    min-height: calc(100vh - var(--header-height));

    overflow: hidden;

    color: var(--color-white);

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(21, 100, 176, 0.32),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            var(--color-navy-950),
            var(--color-navy-900)
        );
}

.hero-background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(20px);
    opacity: 0.45;
}

.hero-glow-one {
    top: 12%;
    right: 5%;

    width: 420px;
    height: 420px;

    background: rgba(82, 215, 223, 0.16);
}

.hero-glow-two {
    bottom: -12%;
    left: -7%;

    width: 380px;
    height: 380px;

    background: rgba(23, 102, 176, 0.24);
}

.hero-grid {
    position: relative;
    z-index: 2;

    min-height: calc(100vh - var(--header-height));
    padding-block: 72px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, 0.98fr);

    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin: 0 0 22px;

    color: var(--color-cyan-500);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-content h2,
.final-cta h2 {
    margin: 0;

    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero h1 {
    max-width: 760px;

    font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.hero h1 span,
.section-heading h2 span,
.about-content h2 span {
    display: block;

    color: var(--color-cyan-500);
}

.hero-lead {
    max-width: 650px;
    margin: 29px 0 0;

    color: rgba(255, 255, 255, 0.77);

    font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.hero-actions {
    margin-top: 38px;

    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero .button-secondary {
    color: var(--color-white);

    border-color: rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.05);
}

.hero-trust {
    margin-top: 48px;

    display: flex;
    flex-wrap: wrap;
    gap: 26px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.86rem;
}

.hero-trust span {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--color-white);

    font-size: 0.94rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.neural-stage {
    position: relative;

    width: min(100%, 560px);

    aspect-ratio: 1;
}

.head-silhouette {
    position: absolute;
    inset: 5%;

    border: 1px solid rgba(82, 215, 223, 0.25);
    border-radius: 46% 48% 42% 45%;

    background:
        radial-gradient(
            circle at 48% 43%,
            rgba(82, 215, 223, 0.1),
            transparent 55%
        );

    box-shadow:
        inset 0 0 70px rgba(82, 215, 223, 0.06),
        0 0 80px rgba(82, 215, 223, 0.08);

    transform: rotate(-4deg);
}

.neural-network {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    filter:
        drop-shadow(
            0 0 12px rgba(82, 215, 223, 0.3)
        );
}

.neural-lines line {
    stroke: rgba(82, 215, 223, 0.62);
    stroke-width: 2;
    stroke-linecap: round;

    stroke-dasharray: 220;
    stroke-dashoffset: 220;

    animation:
        draw-line-loop 9.5s ease-in-out infinite;
}

.neural-lines line:nth-child(2n) {
    animation-delay: 0.35s;
}

.neural-lines line:nth-child(3n) {
    animation-delay: 0.7s;
}

.neural-lines line:nth-child(4n) {
    animation-delay: 1.05s;
}

.neural-lines line:nth-child(5n) {
    animation-delay: 1.4s;
}

.neural-nodes circle {
    fill: var(--color-cyan-500);

    opacity: 0;

    transform-box: fill-box;
    transform-origin: center;

    animation:
        node-loop 9.5s ease-in-out infinite;
}

.neural-nodes circle:nth-child(2n) {
    animation-delay: 0.9s;
}

.neural-nodes circle:nth-child(3n) {
    animation-delay: 1.6s;
}

.neural-nodes circle:nth-child(4n) {
    animation-delay: 2.3s;
}

.neural-nodes circle:nth-child(5n) {
    animation-delay: 3s;
}

.visual-caption {
    position: absolute;
    right: 9%;
    bottom: 9%;

    padding: 11px 16px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.72);

    background: rgba(3, 17, 40, 0.68);

    backdrop-filter: blur(12px);

    font-size: 0.78rem;
}

.visual-status {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--color-cyan-500);

    box-shadow:
        0 0 13px var(--color-cyan-500);
}

@keyframes draw-line-loop {
    0% {
        stroke-dashoffset: 220;
        opacity: 0;
    }

    12% {
        opacity: 0.25;
    }

    58% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    78% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    92% {
        stroke-dashoffset: 220;
        opacity: 0;
    }

    100% {
        stroke-dashoffset: 220;
        opacity: 0;
    }
}

@keyframes node-loop {
    0%,
    12% {
        opacity: 0;
        transform: scale(0.55);
    }

    26% {
        opacity: 1;
        transform: scale(1);
    }

    42% {
        opacity: 0.82;
        transform: scale(1);
    }

    52% {
        opacity: 1;
        transform: scale(1.28);
    }

    64% {
        opacity: 0.86;
        transform: scale(1);
    }

    78% {
        opacity: 1;
        transform: scale(1);
    }

    92%,
    100% {
        opacity: 0;
        transform: scale(0.55);
    }
}

.section {
    padding-block: 108px;
}

.section-heading {
    max-width: 890px;
    margin-bottom: 58px;
}

.section-heading h2,
.about-content h2 {
    color: var(--color-navy-900);

    font-size: clamp(2.1rem, 3.2vw, 3.6rem);
}

.section-heading p:last-child {
    max-width: 680px;
    margin: 24px 0 0;

    color: var(--color-text-soft);

    font-size: 1.08rem;
}

.methods-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(82, 215, 223, 0.09),
            transparent 24%
        ),
        var(--color-surface);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.method-card {
    position: relative;

    grid-column: span 4;

    min-height: 390px;
    padding: 34px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(16, 52, 85, 0.1);
    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 1),
            rgba(251, 253, 255, 0.96)
        );

    box-shadow:
        0 20px 55px rgba(5, 31, 62, 0.075);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.method-card:hover {
    transform: translateY(-6px);

    border-color: rgba(82, 215, 223, 0.38);

    box-shadow:
        0 32px 75px rgba(5, 31, 62, 0.14);
}

.method-card-featured {
    grid-column: span 8;

    min-height: 415px;

    color: var(--color-white);

    border-color: rgba(82, 215, 223, 0.16);

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(20, 130, 190, 0.28),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #031128,
            #08254b
        );

    box-shadow:
        0 28px 70px rgba(3, 17, 40, 0.2);
}

.method-card-featured:hover {
    border-color: rgba(82, 215, 223, 0.45);

    box-shadow:
        0 36px 88px rgba(3, 17, 40, 0.3);
}

.method-card-content {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    flex-direction: column;
}

.method-icon {
    position: relative;
    z-index: 4;

    width: 66px;
    height: 66px;
    margin-bottom: 54px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(82, 215, 223, 0.27);
    border-radius: 50%;

    color: #17b8c7;

    background:
        rgba(240, 253, 254, 0.85);

    box-shadow:
        0 12px 34px rgba(23, 184, 199, 0.13);

    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.method-card:hover .method-icon {
    transform:
        translateY(-3px)
        scale(1.04);

    box-shadow:
        0 18px 42px rgba(23, 184, 199, 0.21);
}

.method-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.method-icon-dark {
    color: var(--color-cyan-500);

    border-color: rgba(82, 215, 223, 0.38);

    background:
        rgba(3, 17, 40, 0.62);

    box-shadow:
        0 0 25px rgba(82, 215, 223, 0.13),
        inset 0 0 18px rgba(82, 215, 223, 0.05);
}

.method-card-featured .method-icon {
    margin-bottom: 48px;
}

.method-label {
    position: relative;

    width: fit-content;
    margin: 0 0 18px;
    padding-bottom: 13px;

    color: var(--color-blue-600);

    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.method-label::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 32px;
    height: 3px;

    border-radius: 999px;

    background: var(--color-cyan-500);
}

.method-card-featured .method-label {
    color: var(--color-cyan-500);
}

.method-card h3 {
    margin: 0;

    color: var(--color-navy-900);

    font-size: 1.62rem;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.method-card-featured h3 {
    color: var(--color-white);
}

.method-card-content > p:not(.method-label) {
    max-width: 520px;
    margin: 23px 0 0;

    color: var(--color-text-soft);

    line-height: 1.75;
}

.method-card-featured
.method-card-content
> p:not(.method-label) {
    max-width: 610px;

    color: rgba(255, 255, 255, 0.72);
}

.text-link {
    position: relative;

    width: fit-content;
    margin-top: auto;
    padding-top: 30px;
    padding-bottom: 5px;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: var(--color-blue-600);

    font-weight: 850;
    text-decoration: none;
}

.text-link::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 2px;

    background: currentColor;

    transform: scaleX(0.28);
    transform-origin: left;

    opacity: 0.42;

    transition:
        transform 220ms ease,
        opacity 220ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(5px);
}

.method-card-featured .text-link {
    color: var(--color-cyan-500);
}

.method-card-pattern {
    position: absolute;
    z-index: 1;

    pointer-events: none;

    opacity: 0.12;
}

.pattern-wave {
    right: -35px;
    bottom: 20px;

    width: 270px;
    height: 145px;

    background:
        repeating-radial-gradient(
            ellipse at 100% 50%,
            transparent 0 10px,
            rgba(23, 102, 176, 0.55) 11px 12px,
            transparent 13px 22px
        );

    transform: rotate(-8deg);
}

.pattern-leaf {
    right: -10px;
    bottom: -15px;

    width: 190px;
    height: 225px;

    border: 2px solid rgba(23, 102, 176, 0.48);
    border-radius: 100% 0 100% 0;

    transform:
        rotate(23deg)
        scale(0.82);
}

.pattern-leaf::before,
.pattern-leaf::after {
    content: "";

    position: absolute;
}

.pattern-leaf::before {
    top: 12%;
    left: 48%;

    width: 2px;
    height: 78%;

    background:
        rgba(23, 102, 176, 0.5);

    transform: rotate(20deg);
}

.pattern-leaf::after {
    inset: 24px;

    border: 1px solid rgba(23, 102, 176, 0.42);
    border-radius: 100% 0 100% 0;
}

.pattern-lines {
    right: -45px;
    bottom: -35px;

    width: 260px;
    height: 260px;

    border:
        2px solid rgba(23, 102, 176, 0.36);

    border-radius:
        42% 58% 66% 34% /
        42% 35% 65% 58%;

    transform: rotate(28deg);
}

.pattern-lines::before,
.pattern-lines::after {
    content: "";

    position: absolute;
    inset: 22px;

    border:
        1px solid rgba(23, 102, 176, 0.38);

    border-radius:
        55% 45% 36% 64% /
        46% 62% 38% 54%;
}

.pattern-lines::after {
    inset: 48px;

    transform: rotate(18deg);
}

.pattern-rings {
    right: -75px;
    bottom: -90px;

    width: 280px;
    height: 280px;

    border:
        2px solid rgba(23, 102, 176, 0.42);

    border-radius: 50%;
}

.pattern-rings::before,
.pattern-rings::after {
    content: "";

    position: absolute;

    border:
        1px solid rgba(23, 102, 176, 0.42);

    border-radius: 50%;
}

.pattern-rings::before {
    inset: 34px;
}

.pattern-rings::after {
    inset: 72px;
}

.method-network {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 52%;

    pointer-events: none;

    opacity: 0.82;
}

.method-network-node {
    position: absolute;
    z-index: 2;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--color-cyan-500);

    box-shadow:
        0 0 8px var(--color-cyan-500),
        0 0 24px rgba(82, 215, 223, 0.72);

    animation:
        method-node-pulse 4.8s ease-in-out infinite;
}

.node-one {
    top: 24%;
    left: 25%;
}

.node-two {
    top: 41%;
    left: 43%;
}

.node-three {
    top: 30%;
    left: 68%;
}

.node-four {
    top: 58%;
    left: 72%;
}

.node-five {
    top: 70%;
    left: 46%;
}

.node-six {
    top: 52%;
    left: 88%;
}

.method-network-line {
    position: absolute;
    z-index: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(82, 215, 223, 0.74),
            transparent
        );

    transform-origin: left center;

    opacity: 0.6;

    animation:
        method-line-glow 5.5s ease-in-out infinite;
}

.line-one {
    top: 27%;
    left: 27%;

    width: 135px;

    transform: rotate(25deg);
}

.line-two {
    top: 43%;
    left: 44%;

    width: 135px;

    transform: rotate(-20deg);
}

.line-three {
    top: 33%;
    left: 68%;

    width: 120px;

    transform: rotate(62deg);
}

.line-four {
    top: 59%;
    left: 48%;

    width: 120px;

    transform: rotate(22deg);
}

.line-five {
    top: 55%;
    left: 73%;

    width: 110px;

    transform: rotate(-10deg);
}

.line-six {
    top: 42%;
    left: 44%;

    width: 155px;

    transform: rotate(58deg);
}

@keyframes method-node-pulse {
    0%,
    100% {
        transform: scale(0.82);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes method-line-glow {
    0%,
    100% {
        opacity: 0.22;
    }

    50% {
        opacity: 0.9;
    }
}

.about-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.88fr)
        minmax(0, 1.12fr);

    align-items: center;
    gap: 90px;
}

.about-image-placeholder {
    min-height: 600px;

    display: grid;
    place-items: center;

    border-radius: var(--radius-large);

    color: var(--color-text-soft);

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(82, 215, 223, 0.24),
            transparent 38%
        ),
        var(--color-surface);

    box-shadow: var(--shadow-large);
}

.about-content p:not(.eyebrow) {
    color: var(--color-text-soft);

    font-size: 1.04rem;
}

.about-content .about-lead {
    color: var(--color-navy-900);

    font-size: 1.3rem;
    font-weight: 750;
}

.about-content .button {
    margin-top: 18px;
}

.process-section {
    background: var(--color-navy-950);
}

.process-section .section-heading h2 {
    color: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    min-height: 285px;
    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.045);
}

.process-card > span {
    color: var(--color-cyan-500);

    font-size: 0.78rem;
    font-weight: 850;
}

.process-card h3 {
    margin: 76px 0 14px;

    color: var(--color-white);

    font-size: 1.35rem;
}

.process-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);
}

.final-cta {
    padding-block: 82px;

    color: var(--color-white);

    background: var(--color-blue-600);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.final-cta h2 {
    max-width: 760px;

    font-size: clamp(2rem, 3vw, 3.3rem);
}

.final-cta .eyebrow {
    color: var(--color-cyan-100);
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    gap: 12px;
}

.site-footer {
    color: rgba(255, 255, 255, 0.68);

    background: var(--color-navy-950);
}

.footer-grid {
    padding-block: 78px;

    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 24px;
}

.footer-brand .brand {
    color: var(--color-white);
}

.footer-brand .brand-copy span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h2 {
    margin: 0 0 12px;

    color: var(--color-white);

    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.66);

    text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--color-cyan-500);
}

.footer-column address {
    margin-top: 6px;

    font-style: normal;
}

.footer-bottom {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.8rem;
}

@media (max-width: 1120px) {
    .menu-toggle {
        display: block;
    }

    .primary-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;

        height: calc(100vh - var(--header-height));
        padding: 28px 20px 50px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        overflow-y: auto;

        background: var(--color-white);

        transform: translateX(100%);

        transition: transform 220ms ease;
    }

    .primary-navigation.is-open {
        transform: translateX(0);
    }

    .primary-navigation > a:not(.button) {
        padding: 15px 4px;

        border-bottom: 1px solid var(--color-border);

        font-size: 1rem;
    }

    .navigation-cta {
        margin-top: 25px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;

        padding-top: 86px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: -10px;
    }
}

@media (max-width: 900px) {
    .section {
        padding-block: 82px;
    }

    .method-card,
    .method-card-featured {
        grid-column: span 6;
    }

    .method-card-featured {
        min-height: 440px;
    }

    .method-network {
        width: 60%;
        opacity: 0.55;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-placeholder {
        min-height: 480px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card h3 {
        margin-top: 45px;
    }

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    :root {
        --header-height: 74px;
    }

    .container {
        width: min(
            calc(100% - 28px),
            var(--container-width)
        );
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        padding-block: 72px 50px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.8rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .hero-visual {
        display: none;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }

    .method-card,
    .method-card-featured {
        grid-column: auto;

        min-height: 410px;
        padding: 28px;
    }

    .method-card-featured {
        min-height: 460px;
    }

    .method-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 42px;
    }

    .method-icon svg {
        width: 30px;
        height: 30px;
    }

    .method-card h3 {
        font-size: 1.48rem;
    }

    .method-network {
        right: -80px;

        width: 95%;

        opacity: 0.35;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 2.3rem;
    }

    .about-image-placeholder {
        min-height: 360px;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }

    .final-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .final-cta-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        padding-block: 24px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .footer-bottom p {
        margin: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}
/* ==========================================================
   HEADER FINOMHANGOLÁS
   ========================================================== */

.site-header{
    min-height:100px;
}

.header-inner{
    min-height:100px;
    display:flex;
    align-items:center;
}

.brand{
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
}

.brand-logo{
    width:86px;
    height:86px;
    flex-shrink:0;
}

.brand-copy strong{
    display:block;
    font-size:1.45rem;
    line-height:1.1;
    font-weight:700;
}

.brand-copy span{
    display:block;
    font-size:.95rem;
    opacity:.75;
    margin-top:2px;
}

/* Mobil */

@media (max-width:768px){

    .site-header{
        min-height:82px;
    }

    .header-inner{
        min-height:82px;
    }

    .brand-logo{
        width:64px;
        height:64px;
    }

    .brand{
        gap:12px;
    }

    .brand-copy strong{
        font-size:1.2rem;
    }

    .brand-copy span{
        font-size:.85rem;
    }

}
.site-header{
    position:relative;
    z-index:1000;
    overflow:visible;
}

.brand{
    position:relative;
}

.brand-logo{
    position:relative;
    width:118px;
    height:118px;

    margin-bottom:-28px;

    background:#fff;
    border-radius:50%;
    padding:8px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.18);

    z-index:20;
}
/* ==========================================================
   HEADER LOGÓ V2
   ========================================================== */

.site-header{
    position:relative;
    overflow:visible;
    z-index:1000;
}

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

.brand-logo-wrapper{
    position:relative;
    width:118px;
    height:100px;
    flex-shrink:0;
}

.brand-logo{

    position:absolute;
    left:0;
    top:-6px;

    width:150px;
    height:150px;

    padding:8px;

    background:#fff;
    border-radius:50%;

    box-shadow:
        0 12px 35px rgba(0,0,0,.18);

    object-fit:contain;

    z-index:30;
}

.brand-copy{

    display:flex;
    flex-direction:column;
    justify-content:center;

    line-height:1.05;
}

.brand-copy strong{

    font-size:1.15rem;
    font-weight:800;

    color:#1f4d8f;

    letter-spacing:-0.02em;
}
/* ================================
   HEADER LOGÓ V3
================================ */

.site-header{
    position:relative;
    overflow:visible;
    z-index:1000;
}

.brand{

    display:flex;
    align-items:center;
    gap:28px;

    position:relative;
}

.brand-logo{

    width:170px;
    height:170px;

    margin-bottom:-55px;

    object-fit:contain;

    flex-shrink:0;

    filter:
        drop-shadow(0 12px 24px rgba(0,0,0,.18));
}

.brand-copy{

    display:flex;
    flex-direction:column;

    line-height:1.05;
}

.brand-copy strong{

    font-size:1.9rem;
    font-weight:800;

    color:#1f4d8f;

    letter-spacing:-0.03em;
}
/* ==========================================================
   HEADER LOGÓ V4
   ========================================================== */

.site-header{
    position:relative;
    overflow:visible;
    z-index:1000;
}

.header-inner{
    min-height:110px;
}

.brand{
    display:flex;
    align-items:center;
    gap:28px;
    position:relative;
}

.brand-logo{

    width:180px;
    height:180px;

    margin-bottom:-65px;

    object-fit:contain;

    background:none;
    border-radius:0;
    padding:0;

    filter:drop-shadow(0 12px 30px rgba(0,0,0,.18));

    flex-shrink:0;
}

.brand-copy{

    display:flex;
    flex-direction:column;
    justify-content:center;

    line-height:1.05;
}

.brand-copy strong{

    font-size:2rem;
    font-weight:800;

    color:#1f4d8f;

    letter-spacing:-0.03em;
}

.brand-copy span{

    font-size:1rem;
    margin-top:4px;

    color:#5d6d83;

    letter-spacing:.15em;
    text-transform:uppercase;
}
.site-header {
    position: relative;
    z-index: 1000;
    overflow: visible;

    min-height: 126px;
}

.header-inner {
    position: relative;

    min-height: 126px;
    padding-left: 245px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.brand-logo-only {
    position: absolute;
    top: 10px;
    left: 0;

    width: 210px;
    height: 210px;

    display: block;

    z-index: 20;
}

.brand-logo-only .brand-logo {
    width: 210px;
    height: 210px;

    margin: 0;
    padding: 0;

    display: block;

    border: 0;
    border-radius: 50%;

    background: #ffffff;

    object-fit: contain;

    filter:
        drop-shadow(0 18px 32px rgba(3, 17, 40, 0.22));
}

.primary-navigation {
    margin-left: auto;
}

/* A hero felső tartalma ne kerüljön az átlógó logó alá */
.hero-grid {
    padding-top: 118px;
}

/* Közepes képernyő */
@media (max-width: 1320px) {

    .site-header,
    .header-inner {
        min-height: 112px;
    }

    .header-inner {
        padding-left: 190px;
    }

    .brand-logo-only,
    .brand-logo-only .brand-logo {
        width: 170px;
        height: 170px;
    }

    .brand-logo-only {
        top: 8px;
    }
}

/* Mobil és tablet */
@media (max-width: 1120px) {

    .site-header {
        min-height: var(--header-height);
    }

    .header-inner {
        min-height: var(--header-height);
        padding-left: 0;

        justify-content: space-between;
    }

    .brand-logo-only {
        position: static;

        width: 64px;
        height: 64px;
    }

    .brand-logo-only .brand-logo {
        width: 64px;
        height: 64px;

        border-radius: 50%;

        filter:
            drop-shadow(0 7px 15px rgba(3, 17, 40, 0.16));
    }

    .hero-grid {
        padding-top: 86px;
    }
}

@media (max-width: 620px) {

    .brand-logo-only,
    .brand-logo-only .brand-logo {
        width: 56px;
        height: 56px;
    }
}
