/* Otdelka kvartir shared styles - premium edition */
.otdelka-page {
    padding-top: 0;
}

/* Override tariff spacing for this page */
.tariff-name { margin-top: 8px; }
.tariff-price { margin-top: 4px; }
.benefit-title { margin-top: 4px; }
.process-title { margin-top: 0; }

/* ===== HERO ===== */

/* ed: 2026-06 — Logo proposal section */
.logo-proposal {
    border-top: 1px solid var(--glass-border);
}
.logo-proposal-card {
    background: var(--surface-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    margin: 32px auto 0;
    max-width: 720px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.logo-proposal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(var(--accent-gold-rgb), 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.logo-proposal-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 24px rgba(var(--accent-gold-rgb), 0.2));
}
.logo-proposal-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.5);
}
.logo-proposal-footer code {
    padding: 2px 6px;
    background: var(--surface-elevated);
    border-radius: 4px;
    color: var(--accent-gold);
    font-family: monospace;
    font-size: 11px;
}
@media(max-width: 640px) {
    .logo-proposal-card { padding: 32px 20px; }
}

/* ed: 2026-06 — Split Hero: text left, image right */
.ot-hero {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    background: var(--surface-page);
    padding-top: 32px;
    padding-bottom: 64px;
}
.ot-hero-bg { position:absolute; inset:0; z-index:0; }
.ot-hero-image { display:none; }
.ot-hero-overlay { display:none; }
.ot-hero::after { display:none; }

.ot-hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
.ot-hero-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding: 0;
    animation: heroFadeInLeft 0.8s ease-out;
}
@keyframes heroFadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.ot-hero-content h1 {
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.08;
    margin: 0 0 20px;
    letter-spacing: -0.025em;
}
.ot-hero-content h1 .accent-num {
    color: var(--accent-gold);
    font-weight: 800;
}
.ot-hero-subtitle {
    margin: 0 0 32px;
    line-height: 1.6;
    font-size: 16px;
    color: rgba(var(--text-body-rgb), 0.72);
    max-width: 540px;
}
.ot-hero-actions {
    margin-top: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ot-hero-actions .btn { white-space: nowrap; }

/* Router-render section title (data pages) */
.otdelka-page .ot-section-title { font-family:var(--font-heading); font-weight:600; font-size:clamp(28px,4vw,42px); color:var(--text-body); margin-bottom:16px; letter-spacing:-0.015em; line-height:1.15; }
.otdelka-page .ot-section-subtitle { color:rgba(var(--text-body-rgb),0.65); max-width:640px; margin:0 auto; font-size:17px; line-height:1.7; }

/* Hero visual block (right side) */
.ot-hero-visual {
    position: relative;
    animation: heroFadeInRight 0.9s ease-out 0.15s backwards;
}
@keyframes heroFadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.ot-hero-visual-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    z-index: 2;
}
.ot-hero-visual-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80') center/cover no-repeat;
    border-radius: var(--radius-lg);
    box-shadow:
        0 25px 50px -12px rgba(var(--shadow-color-rgb),0.6),
        0 0 0 1px rgba(var(--accent-gold-rgb), 0.2);
    transition: transform 0.6s var(--transition-smooth);
}
.ot-hero-visual:hover .ot-hero-visual-img {
    transform: scale(1.02) rotate(-0.5deg);
}
.ot-hero-visual-badge {
    position: absolute;
    top: 16px;
    left: -10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    background: var(--accent-gold);
    color: var(--surface-page);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 20px rgba(var(--shadow-color-rgb),0.3);
    line-height: 1.1;
}
.ot-hero-visual-badge-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.ot-hero-visual-badge-text {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 1px;
    opacity: 0.85;
}
.ot-hero-visual-meta {
    position: absolute;
    bottom: -12px;
    right: -10px;
    z-index: 3;
    background: var(--surface-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(var(--shadow-color-rgb),0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.ot-hero-visual-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 12px;
}
.ot-hero-visual-meta-row + .ot-hero-visual-meta-row {
    border-top: 1px solid var(--glass-border);
}
.ot-hero-visual-meta-row span {
    color: rgba(var(--text-body-rgb), 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 10px;
    font-weight: 600;
}
.ot-hero-visual-meta-row strong {
    color: var(--text-body);
    font-weight: 700;
    font-size: 12px;
}
.ot-hero-visual-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    bottom: -40px;
    left: -16px;
    border: 1.5px solid var(--accent-gold);
    border-radius: calc(var(--radius-lg) + 8px);
    opacity: 0.25;
    z-index: 1;
    transform: rotate(-2deg);
    transition: transform 0.6s var(--transition-smooth), opacity 0.3s;
}
.ot-hero-visual:hover .ot-hero-visual-accent {
    transform: rotate(0deg);
    opacity: 0.6;
}

/* Trust bar (in hero) */
.ot-hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding: 20px 0 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 3;
}
.ot-hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ot-hero-trust-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    letter-spacing: -0.5px;
}
.ot-hero-trust-label {
    font-size: 11px;
    color: rgba(var(--text-body-rgb), 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.ot-hero-trust-divider { display: none; }

/* Mobile: stack vertical */
@media(max-width: 1024px) {
    .ot-hero { min-height: auto; padding-top: 16px; padding-bottom: 48px; }
    .ot-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ot-hero-content {
        text-align: left;
    }
    .ot-hero-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    .ot-hero-visual-img {
        aspect-ratio: 4/3;
    }
    .ot-hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media(max-width: 640px) {
    .ot-hero-content h1 {
        font-size: 28px;
    }
    .ot-hero-subtitle {
        font-size: 15px;
    }
    .ot-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ot-hero-actions .btn { width: 100%; justify-content: center; }
    .ot-hero-visual-badge { left: 8px; top: 8px; padding: 8px 12px; }
    .ot-hero-visual-badge-num { font-size: 16px; }
    .ot-hero-visual-badge-text { font-size: 8px; }
    .ot-hero-visual-meta { right: 8px; bottom: 8px; min-width: auto; padding: 10px 12px; }
    .ot-hero-visual-meta-row { font-size: 11px; padding: 3px 0; }
    .ot-hero-visual-meta-row span { font-size: 9px; }
    .ot-hero-visual-meta-row strong { font-size: 11px; }
    .ot-hero-visual-accent { display: none; }
    .ot-hero-trust { grid-template-columns: 1fr 1fr; }
    .ot-hero-trust-value { font-size: 20px; }
}
@media(max-width: 480px) {
    .ot-hero-content h1 { font-size: 24px; }
    .ot-hero-trust { grid-template-columns: 1fr 1fr; }
}

.path-current { color:rgba(var(--accent-gold-rgb),0.35); }
.ot-hero-content h1 { margin: 0 0 20px; }
.ot-hero-subtitle { margin: 0; line-height:1.5; }
.ot-hero-actions { margin-top: 40px; }

/* Diamond grid — shared mixin (applied to all section types) */
.diamond-grid {
    background-image:
        repeating-linear-gradient(45deg,
            transparent, transparent 60px,
            rgba(var(--accent-gold-rgb),0.015) 60px, rgba(var(--accent-gold-rgb),0.015) 61px
        ),
        repeating-linear-gradient(-45deg,
            transparent, transparent 60px,
            rgba(var(--accent-gold-rgb),0.015) 60px, rgba(var(--accent-gold-rgb),0.015) 61px
        );
}

/* ed: 2026-06 — Diamond pattern overlay for sections (otdelka-specific) */
.section-dark {
    background-image:
        repeating-linear-gradient(45deg,
            transparent, transparent 60px,
            rgba(var(--accent-gold-rgb),0.015) 60px, rgba(var(--accent-gold-rgb),0.015) 61px
        ),
        repeating-linear-gradient(-45deg,
            transparent, transparent 60px,
            rgba(var(--accent-gold-rgb),0.015) 60px, rgba(var(--accent-gold-rgb),0.015) 61px
        ),
        radial-gradient(ellipse at 15% 25%, rgba(var(--accent-gold-rgb),0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(var(--accent-gold-rgb),0.03) 0%, transparent 55%);
}

.section-alt,
.section-case,
.section-trust,
.section-norm {
    background-image:
        repeating-linear-gradient(45deg,
            transparent, transparent 60px,
            rgba(var(--accent-gold-rgb),0.012) 60px, rgba(var(--accent-gold-rgb),0.012) 61px
        ),
        repeating-linear-gradient(-45deg,
            transparent, transparent 60px,
            rgba(var(--accent-gold-rgb),0.012) 60px, rgba(var(--accent-gold-rgb),0.012) 61px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(var(--accent-gold-rgb),0.04) 0%, transparent 50%);
}

.comparison-table + p {
    text-align:center;
    font-size:14px;
    color:rgba(var(--text-body-rgb),0.45);
    max-width:600px;
    margin:20px auto 0;
    line-height:1.6;
}

/* ===== RICH TEXT BLOCKS ===== */
.text-content {
    max-width: 70ch;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(var(--text-body-rgb),0.84);
    white-space: pre-line;
    letter-spacing: 0.008em;
}
.text-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--accent-gold);
    margin: 44px 0 14px;
    line-height: 1.35;
    letter-spacing: 0.01em;
}
.text-content h3:first-child { margin-top: 0; }
.text-content p {
    margin: 0 0 18px;
    white-space: normal;
}
.text-content p:last-child { margin-bottom: 0; }
.text-content strong {
    color: var(--text-body);
    font-weight: 700;
    letter-spacing: 0.01em;
}
.text-content em {
    color: var(--accent-gold);
    font-style: normal;
    font-weight: 500;
}
.text-content a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-decoration-color: rgba(var(--accent-gold-rgb),0.25);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.text-content a:hover {
    text-decoration-color: rgba(var(--accent-gold-rgb),0.7);
    color: var(--accent-light);
}
.text-content ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}
.text-content ul li {
    padding: 7px 0 7px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(var(--text-body-rgb),0.75);
}
.text-content ul li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 16px;
    width: 8px;
    height: 8px;
    background: rgba(var(--accent-gold-rgb),0.28);
    border-radius: 1px;
    transform: rotate(45deg);
}
.text-content ul li strong {
    color: var(--accent-gold);
    font-weight: 600;
}
.text-content .image-placeholder {
    margin: 36px auto 0;
}

/* ===== PREMIUM TABLE ===== */
.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    /* ed: 2026-06 — ар-деко: острый радиус. Было: radius-sm (14px). */
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-gold-rgb),0.2);
    box-shadow: 0 8px 32px rgba(var(--shadow-color-rgb),0.25);
    background: var(--surface-card);
}
.comparison-header, .comparison-row {
    display: flex;
    flex-wrap: nowrap;
    padding: 16px 24px;
}
.comparison-header {
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb),0.18), rgba(var(--accent-gold-rgb),0.06));
    /* ed: 2026-06 — ар-деко: разрядка. Было: 0.02em. */
    font-weight: 600;
    font-size: 13px;
    color: var(--accent-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(var(--accent-gold-rgb),0.15);
}
.comparison-row {
    border-top: 1px solid rgba(var(--text-body-rgb),0.07);
    font-size: 15px;
    color: rgba(var(--text-body-rgb),0.75);
    transition: background 0.2s ease, padding-left 0.2s ease;
}
.comparison-row:nth-child(even) { background: rgba(var(--accent-gold-rgb),0.04); }
.comparison-row:hover {
    background: rgba(var(--accent-gold-rgb),0.08);
    padding-left: 28px;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-header span, .comparison-row span {
    flex: 1;
    min-width: 0;
}
.comparison-header span:first-child, .comparison-row span:first-child {
    flex: 2;
    font-weight: 600;
}
.comparison-row span:nth-child(2),
.comparison-row span:nth-child(3) {
    font-weight: 500;
    color: var(--accent-gold);
}
.comparison-row .mark { color:var(--accent-gold); text-align:center; }

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.card-item {
    background: var(--surface-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 28px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.card-item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-gold-rgb),0.3);
}
.card-item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 10px;
    line-height: 1.3;
}
.card-item span {
    display: block;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(var(--text-body-rgb),0.7);
}

/* ===== HERO BREADCRUMB OVERLAY ===== */
.otdelka-page .breadcrumb {
    position: relative;
    z-index: 5;
    padding: 0;
    margin-bottom: 20px;
    background: transparent;
}
.otdelka-page .breadcrumb-link {
    color: rgba(var(--text-body-rgb),0.5);
    font-size: 13px;
    transition: color 0.2s ease;
}
.otdelka-page .breadcrumb-link:hover { color: var(--accent-gold); }
.otdelka-page .breadcrumb-sep {
    color: rgba(var(--text-body-rgb),0.2);
    font-size: 13px;
}
.otdelka-page .breadcrumb-current {
    color: rgba(var(--text-body-rgb),0.4);
    font-size: 13px;
}

/* ===== CHECKLIST ===== */
.checklist {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    columns: 2;
    column-gap: 40px;
}
.checklist li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(var(--text-body-rgb),0.8);
    break-inside: avoid;
}
.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 18px;
    height: 18px;
    background: rgba(var(--accent-gold-rgb),0.15);
    border: 1px solid rgba(var(--accent-gold-rgb),0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checklist li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 20px;
    width: 6px;
    height: 10px;
    border: solid var(--accent-gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0.6;
}
.checklist-after {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: rgba(var(--accent-gold-rgb),0.7);
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PRICES TABLE ===== */
.prices-table .comparison-header span:nth-child(1) { flex: 2; }
.prices-table .comparison-header span:nth-child(2) { flex: 0.7; text-align: center; }
.prices-table .comparison-header span:nth-child(3),
.prices-table .comparison-header span:nth-child(4),
.prices-table .comparison-header span:nth-child(5) { flex: 1; text-align: center; }
.prices-table .comparison-row span:nth-child(1) { flex: 2; }
.prices-table .comparison-row span:nth-child(2) { flex: 0.7; text-align: center; color: var(--text-secondary); }
.prices-table .comparison-row span:nth-child(3),
.prices-table .comparison-row span:nth-child(4),
.prices-table .comparison-row span:nth-child(5) { flex: 1; text-align: center; font-weight: 500; color: var(--accent-gold); font-size: 14px; }

/* ===== CASE STUDY ===== */
.section-case {
    background-color: var(--surface-card);
    border-left: 2px solid rgba(var(--accent-gold-rgb),0.12);
    margin: 0;
    border-radius: 0;
}
.section-case .ot-section-title {
    font-size: clamp(24px,3.5vw,32px);
}
.section-case .ot-section-title::before {
    content:'';
    display:inline-block;
    width:3px;
    height:24px;
    background:var(--accent-gold);
    margin-right:12px;
    vertical-align:middle;
    opacity:0.4;
    border-radius:2px;
}

/* ===== TRUST / GUARANTEE ===== */
.section-trust {
    background-color: transparent;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(var(--accent-gold-rgb),0.018) 60px, rgba(var(--accent-gold-rgb),0.018) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(var(--accent-gold-rgb),0.018) 60px, rgba(var(--accent-gold-rgb),0.018) 61px),
        radial-gradient(ellipse at 30% 40%, rgba(var(--accent-gold-rgb),0.06) 0%, transparent 50%);
    border-top: 1px solid rgba(var(--accent-gold-rgb),0.08);
    border-bottom: 1px solid rgba(var(--accent-gold-rgb),0.08);
}
.section-trust::before { display: none; }

/* ===== NORMS / TECHNICAL ===== */
.section-norm {
    background-color: transparent;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(var(--accent-gold-rgb),0.01) 60px, rgba(var(--accent-gold-rgb),0.01) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(var(--accent-gold-rgb),0.01) 60px, rgba(var(--accent-gold-rgb),0.01) 61px);
    border-top: 1px solid rgba(var(--accent-gold-rgb),0.05);
    border-bottom: 1px solid rgba(var(--accent-gold-rgb),0.05);
}
.section-norm::before { display: none; }

/* ===== CONSECUTIVE TEXT BLOCK GAPS ===== */
.section-alt + .section-alt,
.section-alt + .section-case,
.section-alt + .section-norm,
.section-alt + .section-trust,
.section-case + .section-alt,
.section-case + .section-norm,
.section-trust + .section-alt,
.section-trust + .section-norm,
.section-norm + .section-alt,
.section-norm + .section-case,
.section-norm + .section-trust,
.section-trust + .section-case,
.section-case + .section-trust,
.section-alt + .section-dark,
.section-dark + .section-alt {
    padding-top: 0;
}
/* First text block after hero gets a lighter padding-top */
.section-alt:first-of-type,
.section-case:first-of-type,
.section-dark:first-of-type {
    padding-top: 60px;
}

/* ===== IMAGE PLACEHOLDERS (decorative, pre-SEO) ===== */
.image-placeholder {
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface-card) 0%, rgba(var(--accent-gold-rgb),0.04) 50%, var(--surface-card) 100%);
    border: 1px dashed rgba(var(--accent-gold-rgb),0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.image-placeholder img { display: none; }
.image-placeholder::before {
    content: '';
    width: 56px;
    height: 56px;
    border: 2px solid rgba(var(--accent-gold-rgb),0.15);
    border-radius: 50%;
    background: rgba(var(--accent-gold-rgb),0.06);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.image-placeholder:hover::before {
    border-color: rgba(var(--accent-gold-rgb),0.4);
    background: rgba(var(--accent-gold-rgb),0.1);
}
.image-placeholder span {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(var(--text-body-rgb),0.2);
    white-space: nowrap;
}

/* ===== ARTICLE META BAR ===== */
.section-meta { padding:20px 0 0; }
/* ===== CTA & MISC ===== */
.cta-section { text-align:center; }
.cta-content h2 { font-size:clamp(28px,4vw,40px); margin-bottom:16px; }
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:32px; }
.seo-text { padding:60px 0; }
.seo-text p { max-width:800px; margin:0 auto; color:rgba(var(--text-body-rgb),0.6); font-size:14px; line-height:1.8; }

/* ===== MOBILE: 768px ===== */
@media(max-width:768px) {
    /* Sections */
    .section { padding: 56px 0; }
    .ot-section-header { margin-bottom: 40px; }
    .ot-section-title { font-size: clamp(24px,6vw,28px); }
    .section-alt:first-of-type, .section-case:first-of-type, .section-dark:first-of-type { padding-top: 40px; }
    /* Text content */
    .text-content { font-size: 16px; line-height: 1.75; max-width: 100%; }
    .text-content h3 { font-size: 18px; margin-top: 32px; }
    .text-content ul li { font-size: 15px; }
    /* Hero */
    .ot-hero { min-height: auto; padding: 100px 0 60px; }
    .ot-hero-content { padding: 80px 0 40px; }
    .ot-hero-content h1 { margin: 0 0 18px; }
    .ot-hero-actions { margin-top: 32px; }
    .breadcrumb { margin-bottom: 16px; }
    /* Tables */
    .comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); }
    .comparison-header, .comparison-row { font-size: 13px; padding: 12px 16px; flex-wrap: nowrap; min-width: 500px; }
    .comparison-header span, .comparison-row span { flex: 1; min-width: 0; }
    .comparison-header span:first-child, .comparison-row span:first-child { flex: 2; }
    .comparison-row span:nth-child(2),
    .comparison-row span:nth-child(3) { white-space: nowrap; }
    .comparison-table + p { font-size: 13px; margin: 16px auto 0; }
    .comparison-row:hover { padding-left: 16px; } /* undo hover shift on mobile */
    /* Cards */
    .cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .card-item { padding: 20px; }
    .card-item strong { font-size: 16px; }
    .card-item span { font-size: 14px; }
    /* Image placeholder */
    .image-placeholder { margin-top: 28px; min-height: 140px; }
    /* Misc */
    .seo-text { padding: 40px 0; }
    .seo-text p { font-size: 13px; }
}

/* ===== REVIEWS (ed: 2026-06) ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.review-card {
    /* ed: 2026-06 — ар-деко: золотой border tint, острый радиус. Было: glass-bg, radius 20px. */
    background: var(--glass-bg);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.12);
    border-radius: 6px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-gold-rgb), 0.4);
    box-shadow: 0 12px 30px rgba(var(--shadow-color-rgb), 0.25), 0 0 20px rgba(var(--accent-gold-rgb), 0.08);
}
.review-stars {
    color: var(--accent-gold);
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}
.review-author {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--text-body);
    margin: 0;
}
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(var(--text-body-rgb), 0.75);
    margin: 0;
    flex: 1;
}
.review-meta {
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.4);
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    letter-spacing: 0.3px;
}
@media(max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO TRUST BAR (ed: 2026-06) ===== */
.ot-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--accent-gold-rgb), 0.1);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.ot-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(var(--accent-gold-rgb), 0.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(var(--accent-gold-rgb), 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(var(--accent-gold-rgb), 0.05); }
}
.ot-hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    flex-wrap: wrap;
}
.ot-hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ot-hero-trust-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}
.ot-hero-trust-label {
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ot-hero-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(var(--accent-gold-rgb), 0.2);
}

/* ===== BENEFITS GRID (ed: 2026-06) ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.benefit-item {
    padding: 36px 24px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--accent-gold-rgb), 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.benefit-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0 0 8px;
}
.benefit-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(var(--text-body-rgb), 0.7);
    margin: 0;
}

/* ===== TARIFFS UPGRADE (ed: 2026-06) ===== */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    align-items: stretch;
}
@media(max-width: 1024px) {
    .tariffs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 640px) {
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
}
.tariff-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 28px 32px;
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.tariff-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
}
.tariff-tag {
    position: absolute;
    top: -10px;
    right: 24px;
    padding: 4px 12px;
    background: var(--accent-gold);
    color: var(--surface-page);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 999px;
}
.tariff-link {
    display: inline-block;
    font-size: 14px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 4px;
    transition: color 0.2s;
}
.tariff-link:hover {
    color: var(--accent-light);
}
.tariff-cta {
    margin-top: 8px;
    width: 100%;
}
.tariffs-footnote {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: rgba(var(--text-body-rgb), 0.6);
}
.tariffs-footnote a {
    color: var(--accent-gold);
    text-decoration: none;
}
.tariffs-footnote a:hover {
    text-decoration: underline;
}

/* ===== COMPARISON FOOTNOTE (ed: 2026-06) ===== */
.comparison-footnote,
.prices-footnote,
.geo-footnote,
.cases-footnote {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(var(--text-body-rgb), 0.7);
    text-align: center;
}
.comparison-footnote a,
.prices-footnote a,
.geo-footnote a,
.cases-footnote a {
    color: var(--accent-gold);
    text-decoration: none;
}
.comparison-footnote a:hover,
.prices-footnote a:hover,
.geo-footnote a:hover,
.cases-footnote a:hover {
    text-decoration: underline;
}
.comparison-link,
.prices-link {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    font-weight: 600;
}
.comparison-link:hover,
.prices-link:hover {
    text-decoration: underline;
}

/* ===== PROCESS LIST (ed: 2026-06) ===== */
.process-list {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    counter-reset: process;
}
.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 36px 32px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--accent-gold);
    border-radius: var(--radius);
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.process-step:hover {
    transform: translateX(4px);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
    border-left-color: var(--accent-gold);
}
.process-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.7;
}
.process-body {
    flex: 1;
}
.process-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0 0 12px;
}
.process-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(var(--text-body-rgb), 0.75);
    margin: 0 0 12px;
}
.process-meta {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(var(--text-body-rgb), 0.5);
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    font-style: italic;
}

/* ===== CASES GRID (ed: 2026-06) ===== */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}
.case-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
}
.case-image {
    position: relative;
}
.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--surface-elevated);
    border: 1px dashed var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.image-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}
.image-placeholder span {
    font-size: 13px;
    color: rgba(var(--text-body-rgb), 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.case-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.case-tag {
    padding: 3px 10px;
    background: rgba(var(--accent-gold-rgb), 0.12);
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}
.case-date {
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.4);
}
.case-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0 0 8px;
    line-height: 1.2;
}
.case-location {
    font-size: 14px;
    color: rgba(var(--text-body-rgb), 0.5);
    margin: 0 0 20px;
}
.case-problem,
.case-solution,
.case-result {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(var(--text-body-rgb), 0.75);
    margin: 0 0 14px;
}
.case-problem strong,
.case-solution strong,
.case-result strong {
    color: var(--accent-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.case-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}
.case-feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.case-feature-label {
    font-size: 11px;
    color: rgba(var(--text-body-rgb), 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.case-feature-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
}

/* ===== GEO GRID (ed: 2026-06) ===== */
.geo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.geo-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}
.geo-item:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-gold-rgb), 0.4);
    background: rgba(var(--accent-gold-rgb), 0.04);
}
.geo-item--main {
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.1), rgba(var(--accent-gold-rgb), 0.02));
    border-color: rgba(var(--accent-gold-rgb), 0.3);
}
.geo-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-body);
}
.geo-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-gold);
}
.geo-meta {
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.5);
    line-height: 1.4;
}

/* ===== FAQ — static open (ed: 2026-06 — SEO-friendly, no JS) ===== */
.faq-list {
    margin-top: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.12);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-body);
    gap: 16px;
}
.faq-icon {
    display: none;
}
.faq-answer {
    display: block;
    padding: 0 24px 20px;
}
.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(var(--text-body-rgb), 0.7);
}

/* ===== CTA SECTION (ed: 2026-06) ===== */
.cta-section {
    background: var(--surface-card);
}
.cta-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px;
    background: var(--surface-page);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.cta-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0;
    line-height: 1.2;
}
.cta-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(var(--text-body-rgb), 0.7);
    margin: 0;
}
.cta-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cta-list li {
    font-size: 14px;
    color: rgba(var(--text-body-rgb), 0.8);
    padding-left: 0;
}

/* ed: 2026-06 — figure with example photo inside CTA */
.cta-figure {
    margin: 24px 0 0;
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}
.cta-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: var(--radius) var(--radius) 0 0;
}
.cta-figure figcaption {
    padding: 12px 16px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(var(--text-body-rgb), 0.55);
    background: var(--surface-elevated);
    border-top: 1px solid var(--glass-border);
}
.cta-form-wrap {
    background: var(--surface-elevated);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}
.cta-form-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0 0 20px;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cta-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cta-form label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(var(--text-body-rgb), 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-optional {
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
    color: rgba(var(--text-body-rgb), 0.4);
    letter-spacing: 0;
    margin-left: 4px;
}

/* Consent checkbox (ed: 2026-06) */
.form-group-consent {
    margin: 4px 0 8px;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(var(--text-body-rgb), 0.65);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}
.consent-text {
    flex: 1;
}
.consent-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}
.consent-text a:hover {
    color: var(--accent-light);
}
.consent-label.checkbox-error {
    color: var(--color-error);
}
.consent-label.checkbox-error .consent-text a {
    color: var(--color-error);
}

/* Submit button loading state (ed: 2026-06) */
.cta-submit {
    position: relative;
    transition: opacity 0.2s;
}
.cta-submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
.cta-submit.is-loading {
    pointer-events: none;
    opacity: 0.7;
}
.cta-submit.is-loading::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: var(--surface-page);
    border-radius: 50%;
    animation: ctaSubmitSpin 0.8s linear infinite;
}
@keyframes ctaSubmitSpin {
    to { transform: rotate(360deg); }
}

/* Invalid field border (ed: 2026-06) */
.input-error,
.cta-form input.input-error,
.cta-form select.input-error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 2px rgba(var(--color-error-rgb), 0.15);
    background: rgba(var(--color-error-rgb), 0.04);
}
.form__error {
    display: block;
    color: var(--color-error);
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.4;
}
.cta-form input,
.cta-form select {
    padding: 12px 16px;
    background: var(--surface-page);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-body);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.cta-form .btn-full {
    width: 100%;
    margin-top: 8px;
}
.form-policy {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(var(--text-body-rgb), 0.4);
    margin: 8px 0 0;
    text-align: center;
}
.form-policy a {
    color: var(--accent-gold);
    text-decoration: none;
}
.form-policy a:hover {
    text-decoration: underline;
}

/* STICKY CALL BUTTON (ed: 2026-06) */
.sticky-call {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--accent-gold);
    color: var(--surface-page);
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(var(--shadow-color-rgb),0.3), 0 4px 8px rgba(var(--shadow-color-rgb),0.2);
    transition: transform 0.2s var(--transition-smooth), opacity 0.3s, box-shadow 0.2s;
    animation: stickyCallPulse 3s ease-in-out infinite;
}
.sticky-call:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(var(--shadow-color-rgb),0.35), 0 6px 12px rgba(var(--shadow-color-rgb),0.25);
    color: var(--surface-page);
}
.sticky-call svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.sticky-call.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
@keyframes stickyCallPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(var(--shadow-color-rgb),0.3), 0 0 0 0 rgba(var(--accent-gold-rgb), 0.5); }
    50%      { box-shadow: 0 8px 24px rgba(var(--shadow-color-rgb),0.3), 0 0 0 12px rgba(var(--accent-gold-rgb), 0); }
}
@media(max-width: 768px) {
    .sticky-call {
        right: 16px;
        bottom: 16px;
        padding: 12px 18px;
        font-size: 14px;
    }
    .sticky-call .sticky-call-label {
        display: none;
    }
    .sticky-call {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
}

/* CTA Form Success (ed: 2026-06) */
.cta-form-success {
    text-align: center;
    padding: 40px 24px;
    animation: ctaSuccessFade 0.5s ease;
}
@keyframes ctaSuccessFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.cta-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--accent-gold);
    color: var(--surface-page);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 0 0 8px rgba(var(--accent-gold-rgb), 0.15);
}
.cta-form-success h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0 0 12px;
}
.cta-form-success p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(var(--text-body-rgb), 0.7);
    margin: 0;
}
.cta-form-success a {
    color: var(--accent-gold);
    font-weight: 700;
    text-decoration: none;
}
.cta-form-success a:hover {
    text-decoration: underline;
}

/* ===== SEO TEXT (ed: 2026-06) ===== */
.seo-text-section {
    padding: 60px 0;
    background: var(--surface-page);
}
.seo-text {
    max-width: 900px;
    margin: 0 auto;
}
.seo-text-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-body);
    margin: 0 0 20px;
}
.seo-text p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(var(--text-body-rgb), 0.7);
    margin: 0 0 14px;
}
.seo-text p:last-child {
    margin-bottom: 0;
}
.seo-text a {
    color: var(--accent-gold);
    text-decoration: none;
}
.seo-text a:hover {
    text-decoration: underline;
}
.seo-text-author {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--glass-border);
    font-size: 12px;
    color: rgba(var(--text-body-rgb), 0.5);
    font-style: italic;
}

/* ===== RESPONSIVE (ed: 2026-06) ===== */
@media(max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .geo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-card {
        grid-template-columns: 1fr;
    }
    .case-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-block {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 16px;
        padding: 20px 24px;
    }
    .process-num {
        font-size: 36px;
    }
}
@media(max-width: 640px) {
    .ot-hero-trust {
        gap: 16px;
    }
    .ot-hero-trust-divider {
        display: none;
    }
    .ot-hero-trust-item {
        flex: 1 1 40%;
    }
    .benefits-grid,
    .geo-grid {
        grid-template-columns: 1fr;
    }
    .cta-block {
        padding: 24px;
    }
    .cta-form-wrap {
        padding: 20px;
    }
    .case-features {
        grid-template-columns: 1fr 1fr;
    }
    .process-step {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .process-num {
        font-size: 32px;
    }
}

/* ===== MOBILE: 480px ===== */
@media(max-width:480px) {
    .section { padding: 36px 0; }
    .ot-section-header { margin-bottom: 28px; }
    .ot-section-title { font-size: 22px; }
    .section-alt:first-of-type, .section-case:first-of-type, .section-dark:first-of-type { padding-top: 28px; }
    .text-content { font-size: 15px; line-height: 1.7; }
    .text-content h3 { font-size: 17px; margin-top: 28px; }
    .text-content ul li { font-size: 14px; padding: 5px 0 5px 26px; }
    .text-content ul li::before { top: 13px; width: 7px; height: 7px; }
    .ot-hero { padding: 80px 0 40px; }
    .ot-hero-content { padding: 60px 0 30px; }
    .ot-hero-content h1 { margin: 0 0 14px; }
    .ot-hero-actions { margin-top: 28px; }
    .breadcrumb { margin-bottom: 14px; }
    .breadcrumb .breadcrumb-link,
    .breadcrumb .breadcrumb-sep,
    .breadcrumb .breadcrumb-current { font-size: 12px; }
    .comparison-table { border-radius: 10px; }
    .comparison-header, .comparison-row { font-size: 12px; padding: 10px 12px; min-width: 360px; }
    .comparison-table + p { font-size: 13px; margin: 16px auto 0; }
    .card-item { padding: 16px; }
    .card-item strong { font-size: 16px; }
    .card-item span { font-size: 14px; }
    .image-placeholder { margin-top: 20px; min-height: 120px; }
    .image-placeholder::before { width: 44px; height: 44px; }
    .seo-text { padding: 30px 0; }
    .seo-text p { font-size: 12px; }
}
