:root {
    --bg: #050914;
    --bg-2: #071426;
    --panel: #0d1b31;
    --panel-2: #12233b;
    --text: #f3f7ff;
    --muted: #a9b8cc;
    --muted-2: #73869e;
    --line: rgba(133, 210, 255, 0.18);
    --line-strong: rgba(25, 215, 242, 0.34);
    --accent: #19d7f2;
    --accent-2: #1f7cff;
    --accent-3: #7ff8ff;
    --warning: #f59e0b;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1160px;
}

* {
    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;
    color: var(--text);
    background:
        radial-gradient(circle at 16% 6%, rgba(25, 215, 242, 0.12), transparent 26rem),
        radial-gradient(circle at 86% 9%, rgba(31, 124, 255, 0.13), transparent 28rem),
        linear-gradient(180deg, #050914 0%, #071426 45%, #050914 100%);
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 74%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 56px, var(--container));
    margin-inline: auto;
}

.site-shell {
    overflow: hidden;
}

/* HEADER */

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

.header-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: 320px 1fr 190px;
    align-items: center;
    gap: 24px;
}

.brand-banner {
    display: inline-flex;
    align-items: center;
    width: 320px;
    height: 72px;
    overflow: hidden;
    border-radius: 0;
}

.brand-banner img {
    width: 320px;
    height: 72px;
    object-fit: cover;
    object-position: center;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 999px;
}

.main-nav a {
    color: #c2ccdb;
    font-size: 14px;
    font-weight: 750;
    padding: 8px 16px;
    border-radius: 999px;
    transition: 0.18s ease;
}

.main-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.header-cta {
    justify-self: end;
    font-size: 14px;
    font-weight: 850;
    color: #03111d;
    background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent) 44%, var(--accent-2) 100%);
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow:
        0 14px 34px rgba(25, 215, 242, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

/* HERO */

.hero {
    padding: 42px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
    gap: 46px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(34px, 3.35vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.052em;
}

.hero-lead {
    max-width: 620px;
    margin: 20px 0 0;
    color: #d3deed;
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 19px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
    color: #03111d;
    background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent) 44%, var(--accent-2) 100%);
    box-shadow:
        0 16px 38px rgba(25, 215, 242, 0.21),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover {
    border-color: rgba(25, 215, 242, 0.45);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.trust-strip div {
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.032);
}

.trust-strip strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}

.trust-strip span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.42;
}

/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    padding: 14px;
    border: 1px solid rgba(133, 210, 255, 0.24);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025)),
        rgba(13, 27, 49, 0.88);
    box-shadow: var(--shadow);
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(25, 215, 242, 0.38), rgba(31, 124, 255, 0.11), transparent 58%);
}

.visual-card-header {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 31px;
    padding: 0 4px 10px;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.visual-card-header span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.visual-card-header span:nth-child(2) {
    background: #f59e0b;
}

.visual-card-header span:nth-child(3) {
    background: #22c55e;
    margin-right: 8px;
}

.status-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: #edf7ff;
    font-size: 12px;
    font-weight: 850;
    border: 1px solid rgba(133, 210, 255, 0.22);
    border-radius: 999px;
    background: rgba(5, 9, 20, 0.84);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.status-card-a {
    left: -28px;
    top: 29%;
}

.status-card-b {
    right: -20px;
    bottom: 17%;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(25, 215, 242, 0.12);
}

.status-dot-blue {
    background: var(--accent-2);
    box-shadow: 0 0 0 5px rgba(31, 124, 255, 0.12);
}

/* SECTIONS */

.problem-section,
.services-section,
.process-section,
.cta-section {
    padding: 44px 0;
}

.split-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 46px;
    align-items: start;
}

.section-intro p:not(.section-kicker),
.section-text {
    max-width: 520px;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

h2 {
    margin: 0;
    font-size: clamp(27px, 2.55vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.problem-list {
    display: grid;
    gap: 11px;
}

.problem-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.033);
}

.problem-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    border-radius: 13px;
    background: rgba(25, 215, 242, 0.1);
}

.problem-list p {
    margin: 0;
    color: #dce6f4;
    font-size: 15px;
    line-height: 1.5;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

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

.service-card {
    min-height: 200px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.023)),
        rgba(13, 27, 49, 0.76);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(25, 215, 242, 0.42);
    background:
        linear-gradient(180deg, rgba(25, 215, 242, 0.072), rgba(255, 255, 255, 0.023)),
        rgba(13, 27, 49, 0.9);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 17px;
    color: #03111d;
    font-size: 13px;
    font-weight: 950;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent) 45%, var(--accent-2) 100%);
    box-shadow: 0 12px 30px rgba(25, 215, 242, 0.15);
}

.service-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

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

.process-steps {
    display: grid;
    gap: 11px;
}

.process-steps article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.033);
}

.process-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #03111d;
    font-size: 13px;
    font-weight: 950;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-3), var(--accent), var(--accent-2));
}

.process-steps h3 {
    margin: 0 0 5px;
    font-size: 16px;
}

.process-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.52;
}

/* CTA */

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px 34px;
    border: 1px solid rgba(25, 215, 242, 0.3);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(25, 215, 242, 0.14), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.028));
    box-shadow: var(--shadow);
}

.cta-card h2 {
    max-width: 700px;
}

.cta-card p:not(.section-kicker) {
    max-width: 690px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.cta-card .btn {
    flex: 0 0 auto;
}

/* FOOTER */

.site-footer {
    margin-top: 28px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.13);
}

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

.footer-logo {
    display: block;
    width: 230px;
    height: 52px;
    overflow: hidden;
}

.footer-logo img {
    width: 230px;
    height: 52px;
    object-fit: cover;
    object-position: center;
}

.footer-brand p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

/* RESPONSIVE */

@media (max-width: 1120px) {
    .header-inner {
        grid-template-columns: 280px 1fr 170px;
    }

    .brand-banner {
        width: 280px;
        height: 64px;
    }

    .brand-banner img {
        width: 280px;
        height: 64px;
    }

    .hero-grid,
    .split-section,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-visual {
        max-width: 720px;
    }

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

    .status-card-a {
        left: 18px;
    }

    .status-card-b {
        right: 18px;
    }
}

@media (max-width: 860px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        min-height: auto;
        padding: 12px 0;
    }

    .brand-banner {
        width: 260px;
        height: 60px;
    }

    .brand-banner img {
        width: 260px;
        height: 60px;
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: center;
        width: 100%;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 30px, var(--container));
    }

    .hero {
        padding: 34px 0 28px;
    }

    .hero h1 {
        font-size: clamp(31px, 10vw, 40px);
    }

    .hero-lead {
        font-size: 15px;
    }

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

    .btn {
        width: 100%;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .visual-card {
        border-radius: 22px;
        padding: 12px;
    }

    .status-card {
        position: static;
        margin-top: 9px;
        width: fit-content;
    }

    .problem-section,
    .services-section,
    .process-section,
    .cta-section {
        padding: 36px 0;
    }

    h2 {
        font-size: clamp(25px, 8.5vw, 32px);
    }

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

    .service-card {
        min-height: auto;
        padding: 19px;
        border-radius: 20px;
    }

    .problem-list article,
    .process-steps article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 23px;
        border-radius: 22px;
    }

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

    .footer-meta {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .brand-banner {
        width: 220px;
        height: 52px;
    }

    .brand-banner img {
        width: 220px;
        height: 52px;
    }

    .main-nav a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .footer-logo {
        width: 210px;
        height: 48px;
    }

    .footer-logo img {
        width: 210px;
        height: 48px;
    }
}

.value-section {
    padding: 44px 0;
}

.value-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: start;
    padding: 30px 34px;
    border: 1px solid rgba(25, 215, 242, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(25, 215, 242, 0.1), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024));
}

.value-content {
    display: grid;
    gap: 14px;
}

.value-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.section-heading p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

@media (max-width: 900px) {
    .value-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 720px) {
    .value-section {
        padding: 36px 0;
    }

    .value-card {
        padding: 23px;
        border-radius: 22px;
    }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero,
.contact-form-section,
.contact-section {
    position: relative;
}

.contact-hero {
    padding: 56px 0 34px;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: stretch;
}

.contact-hero-copy {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 38px;
    border: 1px solid rgba(25, 215, 242, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 12%, rgba(25, 215, 242, 0.13), transparent 26rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.024));
    box-shadow: var(--shadow);
}

.contact-hero-copy h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(34px, 3.15vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.052em;
}

.contact-lead {
    max-width: 820px;
    margin: 18px 0 0;
    color: #d3deed;
    font-size: clamp(16px, 1.05vw, 19px);
    line-height: 1.65;
}

.contact-actions,
.offer-actions,
.experience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid rgba(25, 215, 242, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(31, 124, 255, 0.16), transparent 22rem),
        rgba(13, 27, 49, 0.72);
    box-shadow: var(--shadow);
}

.contact-process-card {
    justify-content: flex-start;
}

.contact-card-header {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.contact-card-header span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card-header strong {
    display: block;
    max-width: 320px;
    color: var(--text);
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.contact-process-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-process-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    align-items: start;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.contact-process-list div:last-child {
    border-bottom: 0;
}

.contact-process-list span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #04121f;
    font-size: 12px;
    font-weight: 950;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.contact-process-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.contact-form-section {
    padding: 38px 0 34px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) 420px;
    gap: 28px;
    align-items: start;
}

.contact-form-panel,
.company-panel,
.contact-panel,
.contact-side-panel {
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(25, 215, 242, 0.08), transparent 22rem),
        rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow);
}

.contact-form-panel {
    padding: 30px;
}

.company-panel {
    padding: 28px;
}

.contact-form-panel h2,
.company-panel h2,
.contact-panel h2,
.contact-side-panel h2 {
    margin: 0;
    font-size: clamp(27px, 2.4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.contact-form-intro {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: #dce9fb;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.045em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--text);
    font: inherit;
    font-size: 15px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 15px;
    outline: none;
    background: rgba(5, 14, 27, 0.72);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: rgba(25, 215, 242, 0.72);
    box-shadow: 0 0 0 4px rgba(25, 215, 242, 0.11);
    background: rgba(5, 14, 27, 0.92);
}

.contact-form .has-error input,
.contact-form .has-error textarea {
    border-color: rgba(255, 102, 102, 0.9);
}

.form-error {
    color: #ff9b9b;
    font-size: 13px;
    line-height: 1.45;
}

.privacy-line {
    display: grid !important;
    grid-template-columns: 20px 1fr;
    gap: 11px;
    align-items: start;
    margin-top: 2px;
}

.privacy-line input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.privacy-line span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0;
    font-weight: 600;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-submit {
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.form-alert {
    margin-top: 20px;
    padding: 15px 17px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.form-alert-success {
    color: #d9fff4;
    border: 1px solid rgba(45, 212, 191, 0.42);
    background: rgba(20, 184, 166, 0.12);
}

.form-alert-error {
    color: #ffe2e2;
    border: 1px solid rgba(248, 113, 113, 0.44);
    background: rgba(239, 68, 68, 0.12);
}

.company-logo-box {
    margin-top: 18px;
    margin-bottom: 22px;
    padding: 12px 14px;
    border: 1px solid rgba(25, 215, 242, 0.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at left, rgba(25, 215, 242, 0.10), transparent 18rem),
        rgba(255, 255, 255, 0.028);
}

.company-logo-box img {
    display: block;
    width: min(260px, 100%);
    height: auto;
}

.company-data {
    display: grid;
    gap: 13px;
    margin-top: 0;
}

.company-data div {
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.company-data span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-data strong,
.company-data a {
    color: var(--text);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.45;
    text-decoration: none;
}

.company-data a {
    color: var(--accent-3);
}

.contact-note {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(25, 215, 242, 0.26);
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(25, 215, 242, 0.12), transparent 18rem),
        rgba(255, 255, 255, 0.038);
}

.contact-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 16px;
}

.contact-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

.contact-section {
    padding: 34px 0 58px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.contact-panel {
    padding: 30px;
}

.contact-side-panel {
    padding: 26px;
}

.contact-checklist {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-checklist article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.032);
}

.contact-checklist article span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #04121f;
    font-size: 13px;
    font-weight: 950;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.contact-checklist article p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.contact-tags,
.offer-experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.contact-tags span,
.offer-experience-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 750;
    border: 1px solid rgba(25, 215, 242, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
}

/* =========================================================
   OFFER PAGE
   ========================================================= */

.offer-hero,
.experience-hero {
    padding: 56px 0 34px;
}

.offer-hero-grid,
.experience-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
    align-items: stretch;
}

.offer-hero-copy,
.experience-hero-copy {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
    border: 1px solid rgba(25, 215, 242, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 12%, rgba(25, 215, 242, 0.13), transparent 26rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.024));
    box-shadow: var(--shadow);
}

.offer-hero-copy h1,
.experience-hero-copy h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(34px, 3.25vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.offer-lead,
.experience-lead {
    max-width: 850px;
    margin: 18px 0 0;
    color: #d3deed;
    font-size: clamp(16px, 1.05vw, 19px);
    line-height: 1.65;
}

.offer-hero-card,
.experience-hero-card {
    padding: 30px;
    border: 1px solid rgba(25, 215, 242, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(31, 124, 255, 0.16), transparent 22rem),
        rgba(13, 27, 49, 0.72);
    box-shadow: var(--shadow);
}

.offer-card-label,
.experience-card-label {
    display: block;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offer-problem-list,
.experience-value-list {
    display: grid;
    gap: 16px;
}

.offer-problem-list div,
.experience-value-list div {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.offer-problem-list strong,
.experience-value-list strong {
    display: block;
    color: var(--text);
    font-size: 17px;
    line-height: 1.3;
}

.offer-problem-list p,
.experience-value-list p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.offer-section,
.experience-section {
    padding: 42px 0;
}

.offer-section-head,
.experience-section-head {
    max-width: 960px;
    margin-bottom: 28px;
}

.offer-section-head h2,
.offer-band-grid h2,
.offer-experience-copy h2,
.offer-cta-box h2,
.experience-section-head h2,
.experience-band h2,
.experience-cta-box h2 {
    margin: 0;
    font-size: clamp(28px, 2.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.048em;
}

.offer-section-head p,
.offer-experience-copy p,
.offer-cta-box p,
.experience-section-head p,
.experience-cta-box p {
    max-width: 880px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

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

.offer-service-card,
.cooperation-card,
.experience-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(25, 215, 242, 0.07), transparent 18rem),
        rgba(255, 255, 255, 0.035);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.20);
}

.offer-service-card {
    min-height: 360px;
}

.offer-service-no,
.cooperation-top span,
.experience-tag {
    width: fit-content;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 13px;
    color: #04121f;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.offer-service-card h3,
.cooperation-top strong,
.experience-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.offer-service-card p,
.cooperation-card p,
.experience-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.62;
}

.offer-service-card ul,
.cooperation-card ul,
.experience-card ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.offer-service-card li,
.cooperation-card li,
.experience-card li {
    position: relative;
    padding-left: 18px;
    color: #d8e6f7;
    font-size: 13px;
    line-height: 1.5;
}

.offer-service-card li::before,
.cooperation-card li::before,
.experience-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(25, 215, 242, 0.45);
}

.cooperation-section {
    padding-top: 34px;
}

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

.cooperation-card {
    min-height: 440px;
}

.cooperation-card-highlight {
    border-color: rgba(25, 215, 242, 0.34);
    background:
        radial-gradient(circle at top left, rgba(25, 215, 242, 0.12), transparent 20rem),
        rgba(255, 255, 255, 0.044);
}

.cooperation-top {
    display: grid;
    gap: 16px;
}

.cooperation-top span {
    margin-bottom: 0;
}

.cooperation-footer {
    margin-top: auto;
    padding-top: 20px;
}

.cooperation-footer span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cooperation-footer strong {
    display: block;
    color: var(--accent-3);
    font-size: 14px;
    line-height: 1.45;
}

.pricing-note {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 28px;
    align-items: center;
    margin-top: 22px;
    padding: 28px;
    border: 1px solid rgba(25, 215, 242, 0.24);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(31, 124, 255, 0.12), transparent 24rem),
        rgba(255, 255, 255, 0.035);
}

.pricing-note h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.pricing-note p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.offer-dark-band,
.experience-dark-band {
    padding: 44px 0;
}

.offer-band-grid,
.experience-band {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 32px;
    align-items: start;
    padding: 34px;
    border: 1px solid rgba(25, 215, 242, 0.22);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(31, 124, 255, 0.15), transparent 24rem),
        rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow);
}

.offer-use-cases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.offer-use-cases div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 14, 27, 0.45);
}

.offer-use-cases span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.offer-use-cases p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.offer-experience-preview {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: 30px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(25, 215, 242, 0.08), transparent 22rem),
        rgba(255, 255, 255, 0.035);
}

.offer-cta-section,
.experience-cta-section {
    padding: 34px 0 64px;
}

.offer-cta-box,
.experience-cta-box {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid rgba(25, 215, 242, 0.28);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 15%, rgba(25, 215, 242, 0.10), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.offer-cta-box .btn,
.experience-cta-box .btn {
    flex: 0 0 auto;
}

/* =========================================================
   EXPERIENCE PAGE
   ========================================================= */

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

.experience-card {
    min-height: 410px;
}

.experience-band-points {
    display: grid;
    gap: 14px;
}

.experience-band-points div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 14, 27, 0.45);
}

.experience-band-points span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #04121f;
    font-size: 12px;
    font-weight: 950;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.experience-band-points p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .cooperation-grid,
    .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cooperation-card {
        min-height: 390px;
    }
}

@media (max-width: 1080px) {
    .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-hero-grid,
    .experience-hero-grid,
    .offer-band-grid,
    .experience-band,
    .offer-experience-preview {
        grid-template-columns: 1fr;
    }

    .offer-hero-copy,
    .experience-hero-copy {
        min-height: auto;
    }
}

@media (max-width: 980px) {
    .contact-hero-grid,
    .contact-form-grid,
    .contact-content-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-copy {
        min-height: auto;
    }
}

@media (max-width: 860px) {
    .pricing-note {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .offer-hero,
    .experience-hero {
        padding: 30px 0 24px;
    }

    .offer-hero-copy,
    .offer-hero-card,
    .experience-hero-copy,
    .experience-hero-card,
    .offer-band-grid,
    .experience-band,
    .offer-experience-preview,
    .offer-cta-box,
    .experience-cta-box {
        padding: 22px;
        border-radius: 22px;
    }

    .offer-grid,
    .offer-use-cases,
    .experience-grid,
    .cooperation-grid {
        grid-template-columns: 1fr;
    }

    .offer-service-card,
    .cooperation-card,
    .experience-card {
        min-height: auto;
    }

    .experience-band-points div {
        grid-template-columns: 1fr;
    }

    .offer-cta-box,
    .experience-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .offer-cta-box .btn,
    .experience-cta-box .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .contact-hero {
        padding: 30px 0 24px;
    }

    .contact-hero-copy,
    .contact-card,
    .contact-form-panel,
    .company-panel,
    .contact-panel,
    .contact-side-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-form-section {
        padding: 28px 0;
    }

    .contact-section {
        padding: 28px 0 42px;
    }

    .form-row,
    .contact-checklist article,
    .contact-process-list div {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
    }

    .company-logo-box img {
        width: min(230px, 100%);
    }
}
