:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-2: #eef3fa;

    --text: #10233f;
    --text-soft: #203756;
    --muted: #5d6d85;

    --primary: #1e355a;
    --primary-dark: #14253f;
    --primary-light: #2a4a7a;
    --primary-2: #244b86;

    --accent: #ee7103;
    --accent-dark: #c95d00;
    --accent-light: #ff8a2a;

    --border: rgba(16, 35, 63, 0.10);
    --border-strong: rgba(16, 35, 63, 0.16);

    --shadow-sm: 0 10px 24px rgba(18, 35, 63, 0.06);
    --shadow-md: 0 18px 44px rgba(18, 35, 63, 0.10);
    --shadow-lg: 0 26px 70px rgba(18, 35, 63, 0.16);

    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;

    --container: 1180px;
    --transition: 0.24s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        opacity var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

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

button,
input,
textarea {
    font: inherit;
}

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

.section {
    padding: 88px 0;
}

.section-overlap {
    margin-top: -36px;
    position: relative;
    z-index: 2;
}

.section-soft-dark {
    background:
        linear-gradient(180deg, #14253f 0%, #1a3051 100%);
    color: #fff;
}

.section-process-visual {
    background:
        linear-gradient(180deg, rgba(16, 35, 63, 0.02), rgba(16, 35, 63, 0.04));
}

.section-trusted {
    background:
        linear-gradient(180deg, rgba(30, 53, 90, 0.03), rgba(30, 53, 90, 0.06));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(238, 113, 3, 0.10);
    color: var(--accent);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(238, 113, 3, 0.12);
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head--light h2,
.section-head--light p {
    color: #fff;
}

.section-head--light p {
    color: rgba(255, 255, 255, 0.76);
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.section-head p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--muted);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.98rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 14px 32px rgba(238, 113, 3, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(238, 113, 3, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(9, 18, 32, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(6, 14, 26, 0.14);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.nav-links a {
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(238, 113, 3, 0.20);
}

.nav-cta:hover {
    background: var(--accent-dark);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(7, 14, 26, 0.72), rgba(9, 17, 32, 0.88)),
        radial-gradient(circle at 15% 20%, rgba(36, 75, 134, 0.34), transparent 35%),
        radial-gradient(circle at 85% 25%, rgba(238, 113, 3, 0.10), transparent 28%),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.14;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    background: linear-gradient(180deg, rgba(246, 248, 251, 0), var(--bg));
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 56px;
    align-items: center;
    padding: 76px 0 122px;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    max-width: 640px;
    font-size: clamp(2.8rem, 4.8vw, 5.25rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.hero-copy p {
    margin: 0;
    max-width: 640px;
    font-size: 1.10rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    max-width: 700px;
}

.hero-point {
    min-height: 78px;
    padding: 14px 16px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.94);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    padding: 30px;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(8, 16, 29, 0.28);
}

.hero-card h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    line-height: 1.1;
}

.hero-card p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-media {
    margin: -6px -6px 22px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 44px rgba(8, 16, 29, 0.22);
}

.hero-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.mini-list {
    display: grid;
    gap: 12px;
}

.mini-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: rgba(238, 113, 3, 0.18);
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    color: var(--accent-light);
    font-weight: 800;
    flex: 0 0 auto;
}

.mini-item strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.mini-item span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.76);
}

/* Base cards */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card,
.stat,
.step,
.contact-card,
.form-card,
.trusted-card {
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.card:hover,
.stat:hover,
.step:hover,
.trusted-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.card .icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: rgba(30, 53, 90, 0.08);
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    line-height: 1.18;
    color: var(--text);
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.card--visual {
    position: relative;
    overflow: hidden;
}

.card--visual::after {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(238, 113, 3, 0.06);
}

/* Split section */

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.panel {
    background: linear-gradient(180deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: 30px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.panel::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(238, 113, 3, 0.12);
    filter: blur(4px);
}

.panel>* {
    position: relative;
    z-index: 1;
}

.panel h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    line-height: 1.08;
}

.panel p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
}

.check-list {
    display: grid;
    gap: 14px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.check-badge {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(238, 113, 3, 0.22);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex: 0 0 auto;
}

.ops-visual {
    display: grid;
    gap: 20px;
}

.ops-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--surface);
}

.ops-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.ops-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 18, 32, 0.10), rgba(10, 18, 32, 0.72));
}

.ops-image-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
}

.ops-image-overlay strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
    line-height: 1.15;
}

.ops-image-overlay span {
    display: block;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.84);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.stats--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.stat strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1.05;
    margin-bottom: 10px;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.stat span {
    color: var(--muted);
    font-weight: 600;
}

/* Services */

.services-showcase {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
    margin-bottom: 28px;
    align-items: stretch;
}

.services-copy-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 44px rgba(8, 16, 29, 0.20);
}

.services-copy-card h3 {
    margin: 0 0 12px;
    font-size: 1.9rem;
    line-height: 1.08;
}

.services-copy-card p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-mini {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-mini strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: #fff;
}

.service-mini span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.93rem;
}

.services-image-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 22px 54px rgba(8, 16, 29, 0.22);
}

.services-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.services-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 32, 0.08), rgba(10, 18, 32, 0.72));
}

.services-image-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
}

.services-image-overlay strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.services-image-overlay span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
}

.services-grid .card {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
}

/* Benefits */

.benefits-layout {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 28px;
    align-items: stretch;
}

.benefits-visual-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--surface);
}

.benefits-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.benefits-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 21, 38, 0.08), rgba(11, 21, 38, 0.72));
}

.benefits-visual-overlay {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 1;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
}

.benefits-visual-overlay strong {
    display: block;
    margin-bottom: 7px;
    font-size: 1.08rem;
}

.benefits-visual-overlay span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

/* Process */

.process-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.process-visual-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.process-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.process-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 18, 32, 0.08), rgba(10, 18, 32, 0.72));
}

.process-visual-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
}

.process-visual-overlay strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.process-visual-overlay span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
}

.process {
    counter-reset: steps;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.step {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 76px 24px 24px;
    box-shadow: var(--shadow-sm);
}

.step::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    top: 22px;
    left: 24px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(238, 113, 3, 0.18);
}

.step h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.15;
}

.step p {
    margin: 0;
    color: var(--muted);
}

/* Trusted */

.trusted-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.trusted-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.trusted-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.08rem;
    color: var(--primary);
}

.trusted-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* CTA */

.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, var(--primary-light));
    color: #fff;
    border-radius: 34px;
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

.cta-band::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(238, 113, 3, 0.14);
    filter: blur(4px);
}

.cta-band--visual {
    background:
        linear-gradient(135deg, rgba(20, 37, 63, 0.92), rgba(30, 53, 90, 0.88)),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.cta-band--visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.12;
    pointer-events: none;
}

.cta-band>* {
    position: relative;
    z-index: 1;
}

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

.cta-band h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.cta-band p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
}

/* Contact */

.contact-wrap {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
    align-items: stretch;
}

.contact-card,
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.contact-card h3,
.form-card h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
    line-height: 1.15;
}

.contact-card p,
.form-card p {
    margin: 0 0 22px;
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: var(--surface-2);
    border-radius: 16px;
    font-weight: 600;
    color: var(--text-soft);
    border: 1px solid rgba(16, 35, 63, 0.06);
}

.contact-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
    font-weight: 800;
    flex: 0 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field,
textarea {
    width: 100%;
    border: 1px solid rgba(16, 35, 63, 0.12);
    border-radius: 14px;
    min-height: 56px;
    padding: 0 16px;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field::placeholder,
textarea::placeholder {
    color: #7a8799;
}

.field:focus,
textarea:focus {
    border-color: rgba(30, 53, 90, 0.34);
    box-shadow: 0 0 0 4px rgba(30, 53, 90, 0.08);
}

textarea {
    min-height: 150px;
    padding: 16px;
    resize: vertical;
    grid-column: 1 / -1;
}

.full {
    grid-column: 1 / -1;
}

/* Footer */

.footer {
    padding: 28px 0 40px;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

/* Focus */

.btn:focus-visible,
.nav-cta:focus-visible,
.nav-links a:focus-visible,
.field:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(238, 113, 3, 0.28);
    outline-offset: 3px;
}

/* Responsive */

@media (max-width: 1180px) {

    .services-showcase,
    .benefits-layout,
    .process-layout,
    .split,
    .contact-wrap,
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        gap: 36px;
    }

    /* aspect-ratio handles image scaling — no min-height needed */
    .process-visual-card {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 1080px) {

    .card-grid,
    .benefits-grid,
    .trusted-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .stats,
    .stats--compact,
    .services-mini-grid,
    .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .section {
        padding: clamp(44px, 8vw, 68px) 0;
    }

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

    .nav {
        min-height: 70px;
    }

    .nav-links {
        display: none;
    }

    .brand img {
        height: 50px;
    }

    .hero-inner {
        padding: clamp(40px, 8vw, 64px) 0 clamp(80px, 14vw, 120px);
    }

    .hero-copy h1 {
        font-size: clamp(2.1rem, 10vw, 3.4rem);
        max-width: 100%;
    }

    .hero-copy p {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    }

    /* hero card image — fluid via aspect-ratio */
    .hero-media {
        aspect-ratio: 16 / 7;
    }
    .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-points,
    .card-grid,
    .benefits-grid,
    .process,
    .trusted-strip,
    .form-grid,
    .stats,
    .stats--compact,
    .services-mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .panel,
    .cta-band,
    .contact-card,
    .form-card,
    .card,
    .step,
    .stat,
    .services-copy-card {
        padding-left: clamp(16px, 5vw, 24px);
        padding-right: clamp(16px, 5vw, 24px);
    }

    .cta-band {
        padding-top: clamp(28px, 6vw, 44px);
        padding-bottom: clamp(28px, 6vw, 44px);
    }

    /* Image overlays — relative positioning to avoid overflow */
    .ops-image-overlay,
    .services-image-overlay,
    .benefits-visual-overlay,
    .process-visual-overlay {
        left: clamp(12px, 4vw, 20px);
        right: clamp(12px, 4vw, 20px);
        bottom: clamp(12px, 3vw, 18px);
        padding: clamp(12px, 3vw, 16px);
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.services-grid .card h3 {
  color: var(--text);
}

.services-grid .card p {
  color: var(--muted);
}

.services-grid .card .icon {
  background: rgba(30, 53, 90, 0.08);
  color: var(--primary);
}

.card h3,
.stat strong,
.step h3,
.contact-card h3,
.form-card h3,
.trusted-card strong {
  color: var(--text);
}

/* =========================
   Animations / Motion
========================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

/* Stagger */
.stagger .reveal:nth-child(1) { transition-delay: 0.04s; }
.stagger .reveal:nth-child(2) { transition-delay: 0.10s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.22s; }

/* Image hover */
.hero-media img,
.ops-image-card img,
.services-image-card img,
.benefits-visual-card img,
.process-visual-card img {
  transition:
    transform 0.7s ease,
    filter 0.4s ease;
}

.hero-card:hover .hero-media img,
.ops-image-card:hover img,
.services-image-card:hover img,
.benefits-visual-card:hover img,
.process-visual-card:hover img {
  transform: scale(1.03);
}

/* Active nav */
.nav-links a.is-active {
  color: #fff;
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Hamburger button ─────────────────────────────────────── */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ──────────────────────────────────────────── */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 29;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 24, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.mobile-menu.is-open .mobile-overlay {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(12, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 100px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 28px 70px rgba(4, 8, 18, 0.50);
}

.mobile-menu.is-open .mobile-panel {
  transform: translateY(0);
}

.mobile-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  transition: background var(--transition), color var(--transition);
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

/* Show hamburger + mobile menu on small screens */
@media (max-width: 760px) {
  .nav-hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  /* Hide the header CTA — it's already inside the mobile menu */
  .nav-cta {
    display: none;
  }
  /* Slightly smaller logo */
  .brand img {
    height: 44px;
  }
}

/* ── Form feedback states ─────────────────────────────────── */

.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.96rem;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #14532d;
  animation: feedbackIn 0.4s ease;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback--error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.22);
  color: #7f1d1d;
}

@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field--error {
  border-color: rgba(239, 68, 68, 0.52) !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10) !important;
}

/* ── Extra small screens < 480px ─────────────────────────── */

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 52px 0;
  }

  .hero-inner {
    padding: 44px 0 84px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .hero-copy p {
    font-size: 0.97rem;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    min-height: 50px;
    font-size: 0.94rem;
  }

  .section-head h2 {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
  }

  .card,
  .step,
  .stat,
  .contact-card,
  .form-card,
  .services-copy-card,
  .panel {
    padding: 20px 18px;
  }

  .cta-band {
    padding: 28px 20px;
  }

  .cta-band h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .hero-card {
    padding: 20px;
  }
}