:root {
    --blue: #2583ff;
    --blue-2: #155df0;
    --acid: #c8fa2a;
    --pink: #f72563;
    --orange: #ff8a05;
    --ink: #17191e;
    --muted: #666c78;
    --line: rgba(24, 31, 43, .10);
    --paper: #ffffff;
    --soft: #f4f7fc;
    --navy: #080d1a;
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --shadow: 0 28px 80px rgba(35, 69, 139, .15);
    --container: min(1180px, calc(100% - 40px));
}
main {
    color: var(--ink);
    font-family: "TT Norms", "Inter", "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
main .container {
    width: var(--container);
    max-width: var(--container);
    padding: 0;
}
main img {
    display: block;
    max-width: 100%;
}
main a {
    color: inherit;
}
main button, main input, main textarea {
    font: inherit;
}
::selection {
    background: var(--acid);
    color: var(--ink);
}
::placeholder {
    color: var(--muted);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(37, 131, 255, .10);
    color: var(--blue-2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 0 5px rgba(200, 250, 42, .2);
}
h1, h2, h3, p {
    margin-top: 0;
}
h1 {
    margin-bottom: 24px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: .94;
    letter-spacing: -.065em;
    font-weight: 900;
}
h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4.7vw, 64px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 900;
}
h3 {
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.02em;
}
h1, h2, h3, h4, h5, h6 {
    color: inherit;
    font-family: inherit;
}
.lead {
    max-width: 700px;
    margin-bottom: 30px;
    color: #4b5361;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45;
    font-weight: 400;
}
.accent-mark {
    position: relative;
    display: inline;
    z-index: 0;
    white-space: nowrap;
}
.accent-mark::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -.05em;
    right: -.05em;
    bottom: .02em;
    height: .48em;
    border-radius: .1em;
    background: var(--acid);
    transform: rotate(-1deg);
}
.text-blue {
    color: var(--blue);
}
.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(37, 131, 255, .24);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover {
    transform: translateY(-2px);
    background: var(--blue-2);
    box-shadow: 0 18px 36px rgba(37, 131, 255, .32);
    color: #fff;
}
.btn:focus-visible {
    outline: 3px solid rgba(37,131,255,.25);
    outline-offset: 3px;
}
.btn-dark {
    background: var(--ink);
    box-shadow: none;
}
.btn-dark:hover {
    background: #000;
}
.btn-light {
    background: #fff;
    color: var(--ink);
    box-shadow: none;
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(23,25,30,.18);
    box-shadow: none;
}
.btn-outline:hover {
    background: #fff;
    border-color: rgba(23,25,30,.34);
    box-shadow: none;
}
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-section {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: 68px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 10%, rgba(108, 136, 255, .38), transparent 32%),
        radial-gradient(circle at 15% 90%, rgba(37, 131, 255, .24), transparent 36%),
        linear-gradient(135deg, #f9fbff 0%, #eef3ff 58%, #f8f9ff 100%);
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .34;
    background-image:
        linear-gradient(rgba(37,131,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,131,255,.12) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 410px;
    height: 410px;
    right: -140px;
    bottom: -180px;
    border: 70px solid rgba(200,250,42,.8);
    border-radius: 48% 52% 64% 36%;
    transform: rotate(28deg);
    filter: blur(.2px);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: 48px;
}
.hero-copy {
    position: relative;
    z-index: 2;
}
.hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 28px 0 34px;
}
.chip {
    padding: 9px 13px;
    border: 1px solid rgba(34,50,86,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 8px 24px rgba(44,66,112,.08);
    font-size: 14px;
    font-weight: 700;
}
.hero-visual {
    position: relative;
    min-height: 600px;
    display: grid;
    place-items: center;
}
.hero-card {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1 / 1.03;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 42px;
    background: linear-gradient(150deg, #111827, #17213d 65%, #5572ff);
    box-shadow: 0 40px 100px rgba(26, 49, 112, .27);
    transform: rotate(2deg);
}
.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(255,255,255,.30), transparent 38%);
    z-index: 1;
    pointer-events: none;
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}
.price-float {
    position: absolute;
    z-index: 5;
    left: -24px;
    bottom: 42px;
    width: 205px;
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--acid);
    color: var(--ink);
    box-shadow: 0 20px 50px rgba(104,128,27,.25);
    transform: rotate(-5deg);
}
.price-float small {
    display: block;
    margin-bottom: 3px;
    font-weight: 800;
    opacity: .72;
}
.price-float strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -.05em;
}
.mini-note {
    position: absolute;
    z-index: 6;
    top: 34px;
    right: -10px;
    width: 178px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 50px rgba(38,56,96,.18);
    font-size: 14px;
    font-weight: 800;
    transform: rotate(4deg);
    backdrop-filter: blur(14px);
}

.trust-strip {
    background: var(--ink);
    color: white;
}
.trust-inner {
    min-height: 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 22px;
    font-weight: 800;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.88);
}
.trust-num {
    color: var(--acid);
    font-size: 26px;
    letter-spacing: -.04em;
}

section {
    padding: 104px 0;
}
.section-head {
    max-width: 820px;
    margin-bottom: 44px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}
.feature-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 16px 50px rgba(38,65,125,.07);
}
.feature-card h3 {
    font-weight: bold;
}
.feature-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(37,131,255,.08);
}
.feature-card:nth-child(2)::after {
    background: rgba(200,250,42,.22);
}
.feature-card:nth-child(3)::after {
    background: rgba(247,37,99,.10);
}
main .icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border-radius: 15px;
    background: var(--blue);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}
.feature-card:nth-child(2) .icon {
    background: var(--acid);
    color: var(--ink);
}
.feature-card:nth-child(3) .icon {
    background: var(--pink);
}
.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
}

.how-section {
    background: var(--soft);
}
.split {
    display: grid;
    grid-template-columns: minmax(0,.93fr) minmax(0,1.07fr);
    align-items: center;
    gap: 64px;
}
.media-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #dfe7ff;
    box-shadow: var(--shadow);
}
.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.how-media {
    aspect-ratio: 1.02 / 1;
}
.steps {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}
.step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(20,36,73,.09);
    border-radius: 19px;
    background: rgba(255,255,255,.74);
}
.step-num {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--ink);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}
.step h3 {
    font-weight: bold;
}
.step:nth-child(2) .step-num {
    background: var(--blue);
}
.step:nth-child(3) .step-num {
    background: var(--acid);
    color: var(--ink);
}
.step p {
    margin: 4px 0 0;
    color: var(--muted);
}

.formats-showcase {
    overflow: hidden;
    border: 1px solid rgba(37,131,255,.14);
    border-radius: 34px;
    background: linear-gradient(145deg, #edf2ff, #fff 56%, #edf3ff);
    box-shadow: var(--shadow);
}
.formats-showcase img {
    width: 100%;
    aspect-ratio: 1.44 / 1;
    object-fit: cover;
    object-position: center;
}
.format-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}
.format-pill {
    padding: 17px 18px;
    border-radius: 16px;
    background: var(--soft);
    font-weight: 800;
    text-align: center;
}

.scenarios {
    color: #fff;
    background:
        radial-gradient(circle at 18% 16%, rgba(37,131,255,.55), transparent 26%),
        radial-gradient(circle at 85% 78%, rgba(113,129,255,.36), transparent 30%),
        #080d1a;
}
.scenarios .eyebrow {
    color: #fff;
    background: rgba(255,255,255,.10);
}
.scenarios .section-head p {
    color: rgba(255,255,255,.66);
}
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}
.scenario-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
    backdrop-filter: blur(14px);
}
.scenario-card:nth-child(2) {
    background: linear-gradient(155deg, rgba(37,131,255,.48), rgba(37,131,255,.12));
}
.scenario-tag {
    align-self: flex-start;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.scenario-card h3 {
    font-size: 30px;
    font-weight: bold;
}
.scenario-card p {
    margin-bottom: 0;
    color: rgba(255,255,255,.68);
    line-height: 1.45;
    font-size: 1.1em;
}
.process-item h3 {
    font-weight: bold;
}
.process-item p {
    line-height: 1.45;
    font-size: 1.1em;
}
.case-section {
    background: #fff;
}
.case-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, #f0f4ff, #f9fbff);
    border: 1px solid rgba(37,131,255,.12);
    box-shadow: var(--shadow);
}
.case-copy {
    padding: clamp(32px, 5vw, 64px);
}
.case-copy ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.case-copy li {
    position: relative;
    padding-left: 34px;
    color: #4f5664;
    font-size: 17px;
}
.case-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--acid);
    color: var(--ink);
    font-weight: 900;
}
.case-image {
    min-height: 520px;
    background: #dfe7ff;
}
.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    background: var(--soft);
}
.process-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.process-item {
    position: relative;
    min-height: 210px;
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
}
.process-item strong {
    display: block;
    margin-bottom: 32px;
    color: var(--blue);
    font-size: 15px;
}
.process-item p {
    margin-bottom: 0;
    color: var(--muted);
}
.process-item:nth-child(3) {
    color: #fff;
    background: var(--blue);
}
.process-item:nth-child(3) strong,
.process-item:nth-child(3) p {
    color: #fff;
}
.process-item:nth-child(5) {
    background: var(--acid);
}
.process-item:nth-child(5) strong,
.process-item:nth-child(5) p {
    color: var(--ink);
}

.pricing {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #0a1020, #111d3f 58%, #2442c0);
}
.pricing::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -160px;
    top: -180px;
    border: 68px solid var(--acid);
    border-radius: 50%;
    opacity: .86;
}
.price-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.price-card {
    padding: 36px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}
.price-card.acid {
    color: var(--ink);
    background: var(--acid);
    border-color: transparent;
}
.price {
    margin: 14px 0 18px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .9;
    letter-spacing: -.06em;
    font-weight: 900;
}
.price-card p {
    color: rgba(255,255,255,.67);
}
.price-card p {
    font-size: 1.2em;
    line-height: 1.45;
}
.price-card.acid p {
    color: rgba(23,25,30,.70);
}
.price-card h3 {
    font-weight: bold;
}

.contact-section {
    background: #fff;
}
.contact-wrap {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 18px;
}
.contact-info {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 30px;
    background: var(--blue);
    color: #fff;
}
.contact-info p {
    font-size: 1.2em;
    line-height: 1.45;
}
.contact-info::after {
    content: ":)";
    position: absolute;
    right: -10px;
    bottom: -52px;
    font-size: 190px;
    line-height: 1;
    font-weight: 900;
    opacity: .11;
    transform: rotate(90deg);
}
.contact-links {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    margin-top: 42px;
}
.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2em;
}
.contact-link:hover {
    text-decoration: none;
    color: #fff;
}
.contact-form {
    display: grid;
    gap: 14px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(37,66,130,.08);
}
.contact-form h3 {
    font-weight: bold;
}
.contact-form label:not(.control-label) {
    display: grid;
    gap: 7px;
    color: #3d4350;
    font-size: 13px;
    font-weight: 800;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
input, textarea {
    width: 100%;
    border: 1px solid rgba(24,31,43,.13);
    border-radius: 14px;
    background: #f8faff;
    color: var(--ink);
    outline: none;
    transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
input {
    height: 52px;
    padding: 0 15px;
}
textarea {
    min-height: 122px;
    padding: 14px 15px;
    resize: vertical;
}
input:focus, textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,131,255,.10);
}
.form-note {
    margin: 0;
    color: #7a808b;
    font-size: 12px;
}

.footer {
    padding: 34px 0;
    background: var(--navy);
    color: #fff;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-logo {
    width: 180px;
}
.footer-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}
.footer-meta a {
    text-decoration: none;
}
.footer-meta a:hover {
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.mobile-cta {
    display: none;
}

@media (max-width: 1020px) {
    .nav {
        display: none;
    }
    .hero-grid, .split, .case-card, .contact-wrap {
        grid-template-columns: 1fr;
    }
    .hero-section {
        padding-top: 50px;
    }
    .hero-visual {
        min-height: auto;
        padding-top: 24px;
    }
    .hero-card {
        width: min(88vw, 590px);
    }
    .features-grid, .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .scenario-card:last-child {
        grid-column: 1 / -1;
        min-height: 260px;
    }
    .process-line {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-item:last-child {
        grid-column: 1 / -1;
    }
    .case-image {
        min-height: 430px;
    }
}

@media (max-width: 720px) {
    :root {
        --container: min(100% - 28px, 1180px);
    }
    .header-inner {
        min-height: 68px;
    }
    .brand {
        width: 145px;
    }
    .header-actions .btn-outline {
        display: none;
    }
    .header-actions .btn {
        min-height: 44px;
        padding-inline: 14px;
        font-size: 13px;
    }
    h1 {
        font-size: clamp(43px, 14vw, 66px);
    }
    h2 {
        font-size: clamp(34px, 11vw, 48px);
    }
    section {
        padding: 76px 0;
    }
    .hero-section {
        min-height: auto;
        padding-bottom: 64px;
    }
    .hero-grid {
        gap: 28px;
    }
    .lead {
        font-size: 17px;
    }
    .hero-list {
        margin: 20px 0 28px;
    }
    .hero-card {
        border-radius: 28px;
    }
    .price-float {
        left: -6px;
        bottom: 14px;
        width: 170px;
        padding: 15px;
    }
    .price-float strong {
        font-size: 30px;
    }
    .mini-note {
        top: 12px;
        right: -4px;
        width: 145px;
        padding: 13px;
    }
    .trust-inner {
        grid-template-columns: 1fr 1fr;
        padding: 22px 0;
    }
    .features-grid, .scenario-grid, .price-grid, .form-grid, .process-line {
        grid-template-columns: 1fr;
    }
    .scenario-card:last-child, .process-item:last-child {
        grid-column: auto;
    }
    .format-cards {
        grid-template-columns: 1fr 1fr;
    }
    .formats-showcase {
        border-radius: 24px;
    }
    .formats-showcase img {
        aspect-ratio: .95 / 1;
        object-position: center;
    }
    .case-image {
        min-height: 330px;
    }
    .contact-info, .contact-form, .price-card {
        padding: 28px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-meta {
        justify-content: flex-start;
    }
    .mobile-cta {
        position: fixed;
        z-index: 60;
        left: 12px;
        right: 12px;
        bottom: 12px;
        display: flex;
        padding: 7px;
        border-radius: 18px;
        background: rgba(8,13,26,.88);
        box-shadow: 0 16px 40px rgba(0,0,0,.28);
        backdrop-filter: blur(16px);
    }
    .mobile-cta .btn {
        width: 100%;
    }
    body {
        padding-bottom: 76px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* Обновленная карусель вариантов NFC-носителей */
.format-carousel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37,131,255,.14);
    border-radius: 34px;
    background: linear-gradient(145deg, #edf2ff, #fff 56%, #edf3ff);
    box-shadow: var(--shadow);
}
.carousel-viewport {
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: stretch;
}
.carousel-image {
    min-height: 520px;
    overflow: hidden;
    background: #dfe7ff;
}
.carousel-image img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}
.carousel-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 66px);
    background: rgba(255,255,255,.76);
}
.carousel-counter {
    margin-bottom: 36px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .12em;
}
.carousel-copy h3 {
    margin-bottom: 16px;
    font-size: clamp(36px, 5vw, 62px);
    letter-spacing: -.045em;
    font-weight: bold;
}
.carousel-copy p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-top: 1px solid rgba(24,31,43,.08);
    background: rgba(255,255,255,.88);
}
.carousel-dots, .carousel-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(23,25,30,.18);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}
.carousel-dot.is-active {
    width: 34px;
    background: var(--blue);
}
.carousel-arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23,25,30,.13);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.carousel-arrow:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    background: #f7faff;
}
.contact-info::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 820px) {
    .carousel-slide {
        grid-template-columns: 1fr;
    }
    .carousel-image {
        min-height: 380px;
    }
    .carousel-copy {
        padding: 30px;
    }
    .carousel-counter {
        margin-bottom: 20px;
    }
}

@media (max-width: 520px) {
    .format-carousel {
        border-radius: 24px;
    }
    .carousel-image {
        min-height: 300px;
    }
    .carousel-copy h3 {
        font-size: 38px;
    }
    .carousel-copy p {
        font-size: 16px;
    }
    .carousel-controls {
        padding: 14px 16px;
    }
    .carousel-arrow {
        width: 42px;
        height: 42px;
    }
}

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.success-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.success-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 31, 56, 0.58);
    backdrop-filter: blur(12px);
}

.success-modal__card {
    position: relative;
    z-index: 1;
    width: min(100%, 470px);
    padding: 40px 34px 34px;
    border-radius: 36px;
    background: linear-gradient(180deg, #f0f0f0 0%, #e8e8e8 100%);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 30px 90px rgba(15, 55, 110, 0.28);
    text-align: center;
    color: var(--graphite);
    transform: translateY(16px) scale(0.96);
    transition: transform 0.22s ease;
}

.success-modal.is-open .success-modal__card {
    transform: translateY(0) scale(1);
}

.success-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #dfe8f5;
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.success-modal__close:hover {
    background: #d3e1f4;
    transform: rotate(90deg);
}

.success-modal__icon {
    width: 132px;
    height: 132px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
}

.darwin-smile {
    display: block;
    width: 118px;
    height: 118px;
    overflow: visible;
}

.success-modal__title {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 40px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 950;
    text-align: center;
}

.success-modal__text {
    max-width: 320px;
    margin: 0 auto 26px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.success-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    width: 100%;
    max-width: 220px;
    padding: 0 28px;
    border-radius: 999px;
    border: 0;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(37, 131, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.success-modal__button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 22px 44px rgba(37, 131, 255, 0.36);
}

@media (max-width: 760px) {
    .success-modal__card {
        padding: 38px 22px 28px;
        border-radius: 30px;
    }

    .success-modal__icon {
        width: 120px;
        height: 120px;
        margin-bottom: 18px;
    }

    .darwin-smile {
        width: 108px;
        height: 108px;
    }
}