* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[hidden] {
    display: none !important;
}

:root {
    --bg: #FAFAF7;
    --ink: #0F1419;
    --ink-2: #1F2937;
    --muted: #6B7280;
    --line: #E8E5DC;
    --line-2: #D4D0C4;
    --accent: #FF5A1F;
    --accent-dark: #E14710;
    --accent-soft: #FFF1E8;
    --brand-blue: #1D4ED8;
    --brand-blue-dark: #1E3A8A;
    --dark: #2E333B;
    --dark-2: #383E47;
    --green: #16A34A;
    --green-soft: #DCFCE7;
    --shadow: 0 1px 3px rgba(15, 20, 25, 0.04), 0 8px 24px rgba(15, 20, 25, 0.04);
}

html {
    scroll-padding-top: var(--main-header-h, 92px);
}

body {
    font-family: 'Onest', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
    font-feature-settings: 'tnum';
}

/* HEADER */
.main-header-spacer {
    width: 100%;
    pointer-events: none;
}

.topline {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    z-index: 101;
}

.topline-badge {
    font-weight: 700;
    color: #ffffff;
}

.topline .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topline-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.topline-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topline-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
}

header.main-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(250, 250, 247, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--brand-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -1px;
    border-radius: 2px;
    pointer-events: none;
}

.logo-text {
    line-height: 1.15;
    pointer-events: none;
}

.logo-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--brand-blue);
}

.logo-tag {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-actions .btn {
    height: 48px;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.header-contacts a {
    text-decoration: none;
    letter-spacing: -0.2px;
}

.hc-phone {
    color: var(--ink);
    font-size: 19px;
    font-weight: 600;
}

.hc-email {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.hc-email:hover {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
    line-height: 1.2;
    box-sizing: border-box;
}

.btn.is-disabled,
.btn:disabled,
button.is-disabled,
button:disabled {
    filter: grayscale(100%);
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.85;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-primary svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-2);
}

.btn-ghost:hover {
    background: white;
    border-color: var(--ink);
}

.btn-email {
    background: var(--brand-blue);
    color: #fff;
    border: 1px solid var(--brand-blue);
}

.btn-email:hover {
    background: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    color: #fff;
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-wa:hover {
    background: #1DA851;
}

.btn-large {
    padding: 18px 32px;
    font-size: 16px;
    white-space: nowrap;
}

/* HERO */
.hero {
    padding: 64px 0 96px;
    position: relative;
    overflow: hidden;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-size: 64px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: var(--ink);
}

.hero h1 .accent {
    color: var(--accent);
}

.hero h1 .price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 0.85em;
    background: var(--accent);
    color: #fff;
    padding: 0 12px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -8px;
}

.hero-sub {
    font-size: 19px;
    color: var(--ink-2);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.5;
}

ul.hero-sub {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

ul.hero-sub li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

ul.hero-sub li::before {
    content: '\2014';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

ul.hero-sub strong {
    color: var(--ink);
    font-weight: 700;
}

.hero-accent-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.hero-form {
    background: white;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 32px;
    max-width: 540px;
    box-shadow: var(--shadow);
}

.hero-form-row {
    display: flex;
    gap: 10px;
}

.hero-form input {
    flex: 1;
    padding: 16px 18px;
    border: 1px solid var(--line-2);
    border-radius: 2px;
    font-family: inherit;
    font-size: 16px;
    color: var(--ink);
    background: var(--bg);
    transition: border-color 0.2s ease;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.hero-form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    margin-top: 48px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A6741 0%, #2D3F26 100%);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 60px rgba(15, 20, 25, 0.15);
    overflow: hidden;
}

/* Tarpaulin SVG illustration */
.tarp-illustration {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent 0, transparent 8px, rgba(255, 255, 255, 0.05) 8px, rgba(255, 255, 255, 0.05) 9px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 8px, rgba(255, 255, 255, 0.05) 8px, rgba(255, 255, 255, 0.05) 9px),
        linear-gradient(135deg, #5A7B4F 0%, #3D5235 50%, #2B3B25 100%);
}

.hero-photo svg {
    width: 100%;
    height: 100%;
}

.hero-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.hero-badge-text strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.hero-badge-text small {
    font-size: 11px;
    color: var(--muted);
}

/* ÃÅ¡ÃÂ²ÃÂ°ÃÂ´Ã‘â‚¬ÃÂ°Ã‘â€šÃÂ½Ã‘â€¹ÃÂµ ÃÂ±ÃÂµÃÂ¹ÃÂ´ÃÂ¶ÃÂ¸ ÃÂ¼ÃÂ°Ã‘â€šÃÂµÃ‘â‚¬ÃÂ¸ÃÂ°ÃÂ»ÃÂ¾ÃÂ² Ã¢â‚¬â€ ÃÂ¿ÃÂ¾ Ã‘Æ’ÃÂ³ÃÂ»ÃÂ°ÃÂ¼ Ã‘â€žÃÂ¾Ã‘â€šÃÂ¾ */
.material-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 110px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.chip-tl {
    top: 16px;
    left: 16px;
}

.chip-tr {
    top: 16px;
    right: 16px;
}

.chip-bl {
    bottom: 16px;
    left: 16px;
}

.chip-br {
    bottom: 16px;
    right: 16px;
}

.chip-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chip-icon img,
.chip-icon svg {
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
    overflow: visible;
}

.chip-icon svg {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chip-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.chip-prop {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.2;
}

/* TRUST LOGOS */
.trust-bar {
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.trust-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-weight: 600;
    max-width: 200px;
    line-height: 1.5;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
}

.trust-logo {
    color: var(--muted);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo:hover {
    opacity: 1;
    color: var(--ink);
}

/* QUIZ */
.quiz-section {
    padding: 96px 0;
}

.quiz-card {
    background: var(--dark);
    color: white;
    border-radius: 8px;
    padding: 64px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.quiz-card::before {
    display: none;
}

.quiz-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.quiz-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.quiz-card h2 {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    font-weight: 700;
}

.quiz-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    margin-bottom: 32px;
}

.quiz-steps {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.quiz-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 16px;
    text-align: left;
}

.quiz-step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.quiz-step-label {
    font-size: 14px;
    font-weight: 500;
}

.quiz-bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 90, 31, 0.12);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 13px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 90, 31, 0.2);
}

.quiz-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Quiz interactive flow */
.quiz-flow {
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.quiz-flow-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.quiz-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    width: 25%;
    background: var(--accent);
    border-radius: 99px;
    transition: width 0.35s ease;
}

.quiz-progress-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.quiz-q-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.15;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: #fff;
    transition: all 0.18s ease;
}

.quiz-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.quiz-option.selected {
    background: var(--accent);
    border-color: var(--accent);
}

.quiz-option-ico {
    font-size: 26px;
    flex-shrink: 0;
    line-height: 1;
}

.quiz-option span:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.quiz-option strong {
    font-size: 16px;
    font-weight: 600;
}

.quiz-option small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.quiz-option.selected small {
    color: rgba(255, 255, 255, 0.85);
}

/* Result */
.quiz-result-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 20px;
}

.quiz-result-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.quiz-result-name {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: #fff;
    margin-bottom: 8px;
}

.quiz-result-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.55;
}

.quiz-result-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    font-weight: 500;
    color: var(--accent);
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quiz-form-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.quiz-form input[type="tel"] {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.quiz-form input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.quiz-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent);
}

.quiz-form .btn {
    justify-content: center;
}

.quiz-back {
    margin-top: 20px;
}

.quiz-back-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.quiz-back-btn:hover {
    color: #fff;
}

/* Consent checkbox (shared) */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    line-height: 1.5;
    cursor: pointer;
}

.consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
    cursor: pointer;
}

.consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent a:hover {
    opacity: 0.75;
}

.quiz-form .consent {
    color: rgba(255, 255, 255, 0.7);
}

.quiz-form .consent a {
    color: rgba(255, 255, 255, 0.9);
}

/* Consent validation error */
.consent-error {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--accent);
    margin-top: 8px;
    animation: consentShake 0.4s ease;
}

.consent-error::before {
    content: '!';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-form .consent-error {
    color: #FFB39A;
}

.consent.consent--error input[type="checkbox"] {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

@keyframes consentShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

/* CATALOG */
.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.section-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.section-h2 {
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 16px;
}

.section-sub {
    font-size: 18px;
    color: var(--ink-2);
    max-width: 600px;
    margin: 0 auto;
}

.catalog-section {
    padding: 96px 0;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.catalog-tab {
    background: transparent;
    border: 1px solid var(--line-2);
    color: var(--ink);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.catalog-tab:hover {
    border-color: var(--ink);
}

.catalog-tab.active {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

.catalog-tab .count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    opacity: 0.6;
    margin-left: 6px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.catalog-show-all-wrap {
    display: none;
    text-align: center;
    margin-top: 28px;
}

.catalog-show-all-wrap .catalog-show-all {
    min-width: 165px;
    text-align: center;
    justify-content: center;
}

.product {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.product-image-tarp {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 6px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 6px),
        linear-gradient(135deg, #2B6CB0 0%, #1E4A8F 50%, #15356B 100%);
}

.product-image-pvc {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 6px),
        linear-gradient(135deg, #2563EB 0%, #1E3A8A 100%);
}

.product-image-brez {
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 6px),
        linear-gradient(135deg, #6B7C56 0%, #3F4D2C 100%);
}

.product-image-oxford {
    background: linear-gradient(135deg, #3F4D8A 0%, #232A4D 100%);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 2px;
    z-index: 2;
}

.product-badge-grey {
    background: var(--ink-2);
}

.product-badge-green {
    background: var(--green);
}

.product-stock {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
}

.product-stock .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.product-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-tag {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.15;
}

.product-tag .dens {
    color: var(--accent);
}

.fire-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    margin-left: 2px;
    flex-shrink: 0;
}

.product-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--muted);
    text-transform: none;
}

.product-desc {
    font-size: 12.5px;
    color: var(--ink-2);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.product-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -1px;
}

.product-price small {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    margin-left: 4px;
}

.product-sizes {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 2px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-btn:hover {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

/* CALCULATOR */
.calculator-section {
    padding: 96px 0;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

.calc-grid>* {
    min-width: 0;
}

.calc-left h2 {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.calc-left p {
    font-size: 17px;
    color: var(--ink-2);
    margin-bottom: 32px;
}

.calc-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.calc-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    font-size: 16px;
}

.calc-features li:last-child {
    border-bottom: 1px solid var(--line);
}

.calc-features svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.calc-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.calc-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.calc-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.calc-field {
    margin-bottom: 20px;
}

.calc-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink-2);
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.calc-option {
    background: var(--bg);
    border: 1px solid var(--line-2);
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    font-family: inherit;
    color: var(--ink);
}

.calc-option small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}

.calc-option:hover {
    border-color: var(--ink);
}

.calc-option.active {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

.calc-option.active small {
    color: rgba(255, 255, 255, 0.7);
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.calc-inputs input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-2);
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    background: var(--bg);
}

.calc-inputs input:focus {
    outline: none;
    border-color: var(--accent);
}

.calc-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg);
    border: 1px solid var(--line-2);
    border-radius: 2px;
    padding: 4px;
}

.calc-quantity button {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--ink);
    font-family: inherit;
    transition: background 0.2s ease;
    border-radius: 2px;
}

.calc-quantity button:hover {
    background: var(--line);
}

.calc-quantity input {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 500;
}

.calc-quantity input:focus {
    outline: none;
}

.calc-result {
    background: var(--dark);
    color: white;
    border-radius: 4px;
    padding: 24px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-result-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.calc-result-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -1.5px;
    overflow-wrap: anywhere;
    line-height: 1.05;
}

.calc-result-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

.calc-result .btn {
    background: var(--accent);
    color: white;
}

/* Calc inline order form */
.calc-order-form {
    background: var(--dark);
    color: #fff;
    border-radius: 4px;
    padding: 24px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-order-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.calc-order-form input[type="tel"] {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.calc-order-form input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.calc-order-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--accent);
}

.calc-order-form .consent {
    color: rgba(255, 255, 255, 0.7);
}

.calc-order-form .consent a {
    color: rgba(255, 255, 255, 0.9);
}

.calc-order-form .consent-error {
    color: #FFB39A;
}

.calc-order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.calc-order-actions .btn {
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.calc-order-actions .btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.calc-order-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* WHY US */
.why-section {
    padding: 96px 0;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.why-item {
    padding: 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    transition: background 0.2s ease;
}

.why-item:hover {
    background: white;
}

.why-item:nth-child(3n) {
    border-right: none;
}

.why-item:nth-child(n+4) {
    border-bottom: none;
}

.why-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 48px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.why-num small {
    font-size: 18px;
    color: var(--ink-2);
    font-weight: 400;
}

.why-h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.why-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

/* PROCESS */
.process-section {
    padding: 96px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: left;
    position: relative;
    padding: 0 20px 0 0;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 60px;
    right: 0;
    height: 1px;
    background: var(--line-2);
    z-index: 0;
}

.process-step:last-child::before {
    display: none;
}

.process-step-num {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border: 1px solid var(--ink);
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.process-step.highlight .process-step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.process-step h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.process-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.process-step-time {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 2px;
    margin-top: 8px;
    font-weight: 500;
}

/* CASES */
.cases-section {
    padding: 96px 0;
    background: var(--dark);
    color: white;
}

.cases-section .section-h2 {
    color: white;
}

.cases-section .section-sub {
    color: rgba(255, 255, 255, 0.7);
}

.cases-section .section-eyebrow {
    color: var(--accent);
}

/* Ã¢â‚¬â€Ã¢â‚¬â€ FILMSTRIP CAROUSEL Ã¢â‚¬â€Ã¢â‚¬â€ */
.cases-carousel-wrap {
    margin-top: 32px;
    position: relative;
}

/* Fixed-height container; slots positioned absolutely so active is always centered */
.cases-filmstrip {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    /* overridden by JS on resize */
}

/* Each slot: absolute, JS sets left + width */
.film-slot {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: #131619;
    transition: left 0.42s cubic-bezier(.4, 0, .2, 1),
        width 0.42s cubic-bezier(.4, 0, .2, 1),
        opacity 0.35s ease,
        filter 0.35s ease;
}

.film-slot.fs-active {
    opacity: 1;
    filter: none;
    cursor: zoom-in;
    z-index: 2;
}

.film-slot.fs-side {
    opacity: 0.72;
    filter: brightness(0.6) saturate(0.7);
    z-index: 1;
}

.film-slot.fs-side:hover {
    opacity: 0.9;
    filter: brightness(0.8) saturate(0.9);
}

.film-slot.fs-far {
    opacity: 0.38;
    filter: brightness(0.4) saturate(0.45);
    z-index: 1;
    pointer-events: none;
}

.film-slot.fs-hidden {
    opacity: 0;
    pointer-events: none;
    left: 50% !important;
    width: 0 !important;
}

/* gap divs no longer used for layout */
.film-gap {
    display: none;
}

/* Photo inside slot */
.film-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.film-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
    will-change: transform;
}

.film-slot.fs-active img {
    transform: scale(1);
}

.film-slot.fs-active:hover img {
    transform: scale(1.03);
}

/* Ã¢â‚¬â€Ã¢â‚¬â€ LIGHTBOX Ã¢â‚¬â€Ã¢â‚¬â€ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.94);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: var(--dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

/* lightbox-visual has NO fixed aspect-ratio Ã¢â‚¬â€ the <img> sets its own natural size */
.lightbox-visual {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0a0c10;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 70vh;
    /* never taller than viewport */
}

.lightbox-info {
    padding: 20px 24px;
    color: white;
}

.lightbox-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 6px;
}

.lightbox-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: white;
}

.lightbox-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.15s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.lightbox-close:hover {
    background: #f0f0f0;
    transform: scale(1.08);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.15s;
    z-index: 5;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.lightbox-nav:hover {
    background: #f0f0f0;
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

/* Caption overlay on active slot */
.film-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 100%);
    color: white;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.3s;
}

.film-slot:not(.fs-active) .film-caption {
    opacity: 0;
}

.film-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 3px 9px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.film-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
}

.film-text {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
    margin: 8px 0 0;
}

.film-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.82);
}

/* Zoom hint */
.film-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.film-slot.fs-active:hover .film-zoom {
    opacity: 1;
}

/* Nav arrows Ã¢â‚¬â€ sit outside the strip, centered vertically */
.film-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: background 0.15s, transform 0.15s, opacity 0.2s;
}

.film-nav:hover {
    background: #f5f5f5;
    transform: translateY(-50%) scale(1.08);
}

.film-nav[hidden] {
    display: none !important;
}

.film-nav-prev {
    left: -22px;
}

.film-nav-next {
    right: -22px;
}

/* Pulse ring on next arrow */
.film-nav-next.pulse::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: filmPulse 1.8s ease-out infinite;
    pointer-events: none;
}

@keyframes filmPulse {
    0% {
        transform: scale(0.88);
        opacity: 1;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

/* Dot indicators */
.film-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.film-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.film-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* Lightbox image Ã¢â‚¬â€ natural aspect ratio, contained in max-height */
.lightbox-photo {
    display: block;
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #0a0c10;
    margin: 0 auto;
}

.lightbox-description {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.lightbox-text {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 900px) {
    .film-title {
        font-size: 18px;
    }

    .film-caption {
        padding: 18px 18px 16px;
    }

    .film-nav {
        width: 38px;
        height: 38px;
    }

    .film-nav-prev {
        left: -19px;
    }

    .film-nav-next {
        right: -19px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    /* Wrap gives padding so arrows sit just outside the active card */
    .cases-carousel-wrap {
        padding: 0 28px;
    }

    .film-nav {
        width: 32px;
        height: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .film-nav-prev {
        left: -16px;
    }

    .film-nav-next {
        right: -16px;
    }

    /* Caption: compact, no overflow */
    .film-caption {
        padding: 12px 12px 10px;
    }

    .film-tag {
        font-size: 9px;
        padding: 2px 7px;
        margin-bottom: 5px;
    }

    .film-title {
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .film-meta {
        font-size: 10px;
        gap: 3px 8px;
    }

    /* Dots closer */
    .film-dots {
        margin-top: 12px;
        gap: 6px;
    }

    .film-dot {
        width: 5px;
        height: 5px;
    }
}

.certs-row {
    display: grid;
    grid-template-columns: auto repeat(5, 1fr);
    gap: 32px;
    align-items: center;
}

.certs-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-weight: 600;
    max-width: 200px;
    line-height: 1.5;
}

.cert {
    aspect-ratio: 3/4;
    background: white;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cert:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

.cert-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.cert-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.cert-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px;
}

/* DELIVERY */
.delivery-section {
    padding: 96px 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.city-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 24px 20px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.city-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.city-card--home {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.city-card--home:hover {
    border-color: var(--brand-blue);
}

.city-card--home .city-meta {
    color: rgba(255, 255, 255, 0.7);
}

.city-card--home .city-time {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.city-flag {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 16px;
}

.city-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.city-meta {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.city-time {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 5px 10px;
    border-radius: 2px;
}

.cities-cta {
    margin-top: 24px;
    background: var(--dark);
    border-radius: 4px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cities-cta-text {
    color: #fff;
}

.cities-cta-text strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.cities-cta-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* REVIEWS */
.reviews-section {
    padding: 96px 0;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.review {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 32px;
}

.review-stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 24px;
    min-height: 100px;
}

.review-author {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.review-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* FAQ */
.faq-section {
    padding: 96px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: var(--ink);
    letter-spacing: -0.3px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    padding: 0;
}

.faq-q-icon {
    width: 32px;
    height: 32px;
    background: var(--bg);
    border: 1px solid var(--line-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.faq-item.open .faq-q-icon {
    background: var(--ink);
    border-color: var(--ink);
    color: white;
    transform: rotate(45deg);
}

.faq-a {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding-top: 16px;
}

/* FINAL CTA */
.final-cta-section {
    padding: 96px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    display: none;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.final-cta-left h2 {
    font-size: 56px;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.final-cta-features {
    display: grid;
    gap: 12px;
}

.final-cta-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-features svg {
    color: var(--accent);
    flex-shrink: 0;
}

.final-form {
    background: white;
    color: var(--ink);
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

.final-form-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 0;
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.final-form-back:hover {
    color: var(--ink);
}

.final-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.final-form .sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.final-form .field {
    margin-bottom: 14px;
}

.final-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--ink-2);
}

.final-form input,
.final-form textarea,
.final-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line-2);
    border-radius: 2px;
    font-family: inherit;
    font-size: 15px;
    background: var(--bg);
    color: var(--ink);
    transition: border-color 0.2s ease;
}

.final-form input:focus,
.final-form textarea:focus,
.final-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.final-form textarea {
    min-height: 60px;
    resize: vertical;
}

.final-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.final-form .note {
    font-size: 11.5px;
    color: var(--muted);
    text-align: left;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.final-form .note svg {
    margin-top: 0px;
}

.product-order-form {
    margin: 0;
    box-shadow: none;
}

.product-order-selected {
    margin: 0 0 16px;
    padding: 10px 12px;
    background: var(--accent-soft);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.product-order-selected:not([hidden]) {
    display: block;
}

#js_modal__product {
    padding: 0;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    line-height: 1.7;
    display: block;
    margin-bottom: 8px;
}

.footer-col a {
    display: flex;
}

.footer-phone-msg+a {
    display: inline-flex;
}

.footer-col a:hover {
    color: white;
}

.footer-phone-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.footer-phone-msg>a {
    margin-bottom: 0;
}

.footer-messengers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.footer-messengers .msg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-bottom: 0;
    color: #fff;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.footer-messengers .msg-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #fff;
}

.footer-messengers .msg-max {
    background: linear-gradient(135deg, #2B7FFF 0%, #6B4DFF 100%);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.footer-messengers .msg-tg {
    background: #29A9EB;
}

.footer-messengers .msg-wa {
    background: #25D366;
}

.msg-wa-wrap {
    position: relative;
    display: inline-flex;
}

.msg-wa-tip {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    width: max-content;
    max-width: min(320px, 70vw);
    padding: 8px 12px;
    background: #fff;
    color: #0F1419;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(15, 20, 25, 0.12), 0 1px 3px rgba(15, 20, 25, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.msg-wa-wrap:hover .msg-wa-tip,
.msg-wa-wrap:focus-within .msg-wa-tip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-brand .logo-name {
    color: white;
    font-size: 22px;
}

.footer-brand .logo-tag {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    margin-top: 16px;
    max-width: 320px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 16px;
}

/* MOBILE STICKY */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--line);
    padding: 12px;
    gap: 8px;
    z-index: 100;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-sticky a {
    flex: 1;
    padding: 14px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-sticky .call {
    background: var(--dark);
    color: white;
}

.mobile-sticky .email {
    background: var(--brand-blue);
    color: white;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 40px rgba(15, 20, 25, 0.18);
    z-index: 10050;
    transform: translateY(160%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-text {
    font-size: 13.5px;
    line-height: 1.55;
    flex: 1;
    color: var(--ink);
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-text a:hover {
    opacity: 0.8;
}

.cookie-accept {
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.cookie-accept:hover {
    background: var(--accent-dark);
}

/* ============ RESPONSIVE ============ */

/* Large desktop Ã¢â‚¬â€ Ã‘Æ’ÃÂ²ÃÂµÃÂ»ÃÂ¸Ã‘â€¡ÃÂ¸ÃÂ²ÃÂ°ÃÂµÃÂ¼ ÃÂºÃÂ¾ÃÂ½Ã‘â€šÃÂµÃÂ¹ÃÂ½ÃÂµÃ‘â‚¬ ÃÂ½ÃÂ° Ã‘Ë†ÃÂ¸Ã‘â‚¬ÃÂ¾ÃÂºÃÂ¸Ã‘â€¦ Ã‘ÂÃÂºÃ‘â‚¬ÃÂ°ÃÂ½ÃÂ°Ã‘â€¦ */
@media (min-width: 1600px) {
    .container {
        max-width: 1440px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .section-h2 {
        font-size: 58px;
    }
}

/* Desktop / small laptop */
@media (max-width: 1280px) {
    .container {
        padding: 0 28px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .cities-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .city-card {
        padding: 20px 16px;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-form {
        max-width: none;
    }

    .hero-stats {
        max-width: none;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quiz-card {
        padding: 48px;
    }

    .quiz-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .quiz-steps {
        flex-direction: row;
    }

    .calc-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .why-item:nth-child(3n) {
        border-right: 1px solid var(--line);
    }

    .why-item:nth-child(2n) {
        border-right: none;
    }

    .why-item:nth-child(n+4) {
        border-bottom: 1px solid var(--line);
    }

    .why-item:nth-child(n+5) {
        border-bottom: none;
    }

    /* filmstrip carousel: handled inside its own block */
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-grid .review:last-child {
        grid-column: span 2;
    }

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

    .process-step::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .header-actions {
        gap: 16px;
    }
}

/* Tablet portrait */
@media (max-width: 860px) {
    .hero h1 {
        font-size: 44px;
    }

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

    .product-image {
        aspect-ratio: 16/9;
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .certs-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .certs-label {
        grid-column: span 3;
        max-width: none;
        margin-bottom: 4px;
    }

    .btn-email {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .hero h1 .price {
        font-size: 0.7em;
        padding: 0 8px;
        margin-top: 0;
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-eyebrow {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .hero-form {
        padding: 16px;
        margin-bottom: 28px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
        padding-top: 28px;
    }

    .stat-num {
        font-size: 28px;
    }

    .hero-form-row {
        flex-direction: column;
    }

    .hero-form .btn {
        justify-content: center;
    }

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

    .material-chip {
        width: 90px;
        padding: 10px 12px;
        gap: 5px;
    }

    .chip-icon {
        width: 24px;
        height: 24px;
        border-radius: 5px;
    }

    .chip-name {
        font-size: 11px;
    }

    .chip-prop {
        font-size: 9px;
    }

    .chip-tl {
        top: 12px;
        left: 12px;
    }

    .chip-tr {
        top: 12px;
        right: 12px;
    }

    .chip-bl {
        bottom: 12px;
        left: 12px;
    }

    .chip-br {
        bottom: 12px;
        right: 12px;
    }

    .topline-left {
        gap: 12px;
        font-size: 11px;
    }

    .topline .container {
        justify-content: center;
    }

    .topline>.container>div:last-child {
        display: none;
    }

    .topline {
        padding: 7px 0;
        font-size: 11px;
    }

    header .container {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    html {
        scroll-padding-top: var(--main-header-h, 80px);
    }

    .header-contacts {
        display: none;
    }

    .header-actions .btn-email {
        display: none;
    }

    .header-actions .btn {
        padding: 11px 16px;
        font-size: 14px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-tag {
        display: none;
    }

    .section-h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .section-sub {
        font-size: 15px;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .section-eyebrow {
        font-size: 11px;
    }

    .quiz-section,
    .calculator-section,
    .why-section,
    .process-section,
    .cases-section,
    .delivery-section,
    .reviews-section,
    .faq-section,
    .final-cta-section,
    .catalog-section {
        padding: 56px 0;
    }

    .quiz-card {
        padding: 32px 24px;
        gap: 28px;
        border-radius: 6px;
    }

    .quiz-card h2 {
        font-size: 28px;
    }

    .quiz-card p {
        font-size: 15px;
    }

    .quiz-steps {
        flex-direction: column;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-q-title {
        font-size: 23px;
    }

    .quiz-result-name {
        font-size: 23px;
    }

    .calc-left h2,
    .delivery-left h2 {
        font-size: 28px;
    }

    .calc-card {
        padding: 24px;
    }

    .calc-options {
        grid-template-columns: 1fr 1fr;
    }

    .calc-result {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        text-align: center;
    }

    .calc-result .btn {
        justify-content: center;
    }

    .calc-result-value {
        font-size: 32px;
    }

    .final-cta-left h2 {
        font-size: 34px;
    }

    .final-cta-section h2 {
        letter-spacing: -1px;
    }

    .final-form {
        padding: 24px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .catalog-show-all-wrap:not([hidden]) {
        display: block;
    }

    .product-body {
        padding: 14px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-desc {
        font-size: 12px;
    }

    .product-price {
        font-size: 19px;
    }

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

    .why-item {
        border-right: none !important;
        padding: 28px 24px;
    }

    .why-item:not(:last-child) {
        border-bottom: 1px solid var(--line) !important;
    }

    .why-num {
        font-size: 40px;
        margin-bottom: 16px;
    }

    /* filmstrip carousel: handled inside its own block */

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

    .reviews-grid .review:last-child {
        grid-column: auto;
    }

    .review {
        padding: 24px;
    }

    .review-text {
        min-height: auto;
    }

    .trust-bar {
        padding: 28px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-label {
        max-width: none;
    }

    .trust-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 24px;
    }

    .trust-logo {
        font-size: 15px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .process-step {
        padding-right: 0;
    }

    .cities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .city-card {
        padding: 18px 16px;
    }

    .city-card--home {
        grid-column: span 2;
    }

    .cities-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px;
    }

    .cities-cta .btn {
        justify-content: center;
    }

    .certs-section {
        padding: 40px 0;
    }

    .certs-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .certs-label {
        grid-column: span 2;
    }

    .faq-q {
        font-size: 16px;
        gap: 16px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }

    footer {
        padding: 48px 0 24px;
    }

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

    .mobile-sticky {
        display: flex;
    }

    body {
        padding-bottom: 72px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 84px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px 20px;
    }

    .cookie-accept {
        width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .hero h1 .price {
        display: inline-block;
        margin-top: 4px;
    }

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

    .hero-stats {
        gap: 20px 16px;
    }

    .stat-num {
        font-size: 24px;
    }

    .hero-form .btn-large {
        padding: 15px 20px;
        font-size: 15px;
    }

    .section-h2 {
        font-size: 26px;
    }

    .quiz-card h2 {
        font-size: 24px;
    }

    .calc-left h2,
    .delivery-left h2,
    .final-cta-left h2 {
        font-size: 26px;
    }

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

    .certs-row {
        grid-template-columns: 1fr;
    }

    .certs-label {
        grid-column: auto;
    }

    .cert {
        aspect-ratio: auto;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .cert-icon {
        margin: 0;
    }

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

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

    .city-card--home {
        grid-column: auto;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .btn {
        padding: 13px 18px;
        font-size: 14px;
    }

    .btn-large {
        padding: 15px 22px;
        font-size: 15px;
    }

    .header-actions .btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .calc-options {
        grid-template-columns: 1fr;
    }

    .quiz-bonus {
        font-size: 12px;
    }

    .case h3 {
        font-size: 17px;
    }

    .case-meta {
        flex-wrap: wrap;
        gap: 8px 16px;
    }
}

/* Very small / old phones */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 27px;
    }

    .section-h2 {
        font-size: 23px;
    }

    .stat-num {
        font-size: 22px;
    }

    .logo-name {
        font-size: 15px;
    }

    .mobile-sticky a {
        font-size: 13px;
        padding: 12px;
    }

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

    .trust-logo {
        font-size: 14px;
    }
}

/* SVG illustration styles */
.tarp-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero-sub,
.hero-eyebrow,
.hero-form {
    animation: fadeUp 0.6s ease backwards;
}

.hero-eyebrow {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero-sub {
    animation-delay: 0.3s;
}

.hero-form {
    animation-delay: 0.4s;
}

.hero-stats>div {
    animation: fadeUp 0.6s ease backwards;
    animation-delay: calc(0.5s + var(--i) * 0.1s);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

.footer-bottom-right a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom-right a:hover {
    color: #fff;
}