/* Yekan Bakh Font Face */
@font-face { font-family:'Yekan Bakh'; font-weight:300; font-style:normal; font-display:swap; src:url('../fonts/yekan-bakh/YekanBakh-Light.woff2') format('woff2'); }
@font-face { font-family:'Yekan Bakh'; font-weight:400; font-style:normal; font-display:swap; src:url('../fonts/yekan-bakh/YekanBakh-Regular.woff2') format('woff2'); }
@font-face { font-family:'Yekan Bakh'; font-weight:500; font-style:normal; font-display:swap; src:url('../fonts/yekan-bakh/YekanBakh-Regular.woff2') format('woff2'); }
@font-face { font-family:'Yekan Bakh'; font-weight:600; font-style:normal; font-display:swap; src:url('../fonts/yekan-bakh/YekanBakh-SemiBold.woff2') format('woff2'); }
@font-face { font-family:'Yekan Bakh'; font-weight:700; font-style:normal; font-display:swap; src:url('../fonts/yekan-bakh/YekanBakh-Bold.woff2') format('woff2'); }
@font-face { font-family:'Yekan Bakh'; font-weight:800; font-style:normal; font-display:swap; src:url('../fonts/yekan-bakh/YekanBakh-ExtraBold.woff2') format('woff2'); }
@font-face { font-family:'Yekan Bakh'; font-weight:900; font-style:normal; font-display:swap; src:url('../fonts/yekan-bakh/YekanBakh-Black.woff2') format('woff2'); }

:root {
    --turbo: #F5A623;
    --turbo-light: #FFC107;
    --turbo-dark: #e07b00;
    --turbo-accent: #F5A623;
    --turbo-gradient: linear-gradient(135deg, #F5A623 0%, #FFC107 100%);
    --turbo-shadow: rgba(245, 166, 35, 0.3);
    --turbo-shadow-hover: rgba(245, 166, 35, 0.4);
    --bg-dark: #1a1a2e;
    --text: #333;
    --text-light: #555;
    --text-muted: #666;
}

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

body {
    font-family: 'Yekan Bakh', 'Tahoma', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
    direction: rtl;
    overflow-x: hidden;
    position: relative;
}

/* ═══ PAGE LOADER ═══ */
.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 90px;
    height: 90px;
    animation: loaderSnailToRocket 2s ease-in-out infinite;
}

@keyframes loaderSnailToRocket {
    0% { transform: translateX(60px) scale(1); filter: none; }
    30% { transform: translateX(30px) scale(1); filter: none; }
    50% { transform: translateX(0) scale(1.1); filter: drop-shadow(0 0 12px rgba(245,166,35,0.5)); }
    70% { transform: translateX(-30px) scale(1.05); filter: blur(1px); }
    100% { transform: translateX(-60px) scale(1); filter: blur(2px); opacity: 0.3; }
}

.loader-bar {
    width: 180px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--turbo-gradient);
    border-radius: 2px;
    animation: loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% { width: 0; }
    50% { width: 80%; }
    100% { width: 100%; }
}

/* ═══ HEADER ═══ */
header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    border-bottom: 1px solid rgba(245,166,35,0.12);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 72px;
}

.header-nav {
    display: flex;
    justify-content: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(245,166,35,0.2);
}

.header-logo-text {
    font-size: 24px;
    font-weight: 900;
    background: var(--turbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right .buy-button {
    background: var(--turbo-gradient);
    color: #fff;
    padding: 11px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--turbo-shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-right .buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--turbo-shadow-hover);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 14px;
    border-radius: 10px;
}

.nav-menu a:hover {
    color: var(--turbo);
    background: rgba(245,166,35,0.06);
}

/* ═══ HERO ═══ */
.main-content {
    position: relative;
    z-index: 10;
    padding: 60px 40px;
    min-height: calc(100vh - 100px);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.image-container {
    position: sticky;
    top: 100px;
    padding-top: 40px;
    order: 2;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.content-area {
    padding: 40px 0;
    order: 1;
}

.main-title {
    font-size: 46px;
    font-weight: 900;
    background: var(--turbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 30px;
}

.description {
    font-size: 18px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: justify;
}

.zhaket-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    color: #fff;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

.zhaket-button:hover {
    background: #16213e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

/* ═══ HERO VISUAL — Animated Dashboard ═══ */
.turbo-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.tv-header {
    background: linear-gradient(180deg, #2a2a4a 0%, #222244 100%);
    padding: 10px 16px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tv-dots {
    display: flex;
    gap: 5px;
}

.tv-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tv-dots .dot.red { background: #ff5f57; }
.tv-dots .dot.yellow { background: #febc2e; }
.tv-dots .dot.green { background: #28c840; }

.tv-url {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 11px;
    color: #94a3b8;
    direction: ltr;
    text-align: left;
    display: flex;
    align-items: center;
}

.tv-body {
    background: var(--bg-dark);
    padding: 28px 24px 24px;
    border-radius: 0 0 16px 16px;
    border: 1px solid #2a2a4a;
    border-top: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Gauge Ring (SVG) */
.tv-gauge {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-track {
    fill: none;
    stroke: rgba(255,255,255,0.06);
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke: #ef4444;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 326.73;
    stroke-dashoffset: 326.73;
    transition: stroke 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}

.gauge-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge-score {
    font-size: 40px;
    font-weight: 900;
    color: #ef4444;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: color 0.4s ease;
}

.gauge-label {
    font-size: 10px;
    color: #64748b;
    margin-top: 4px;
}

/* Metric Cards */
.tv-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.tv-metric {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.tv-metric.boosted {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.06);
}

.tv-metric-icon {
    color: var(--turbo);
    font-size: 14px;
    margin-bottom: 6px;
}

.tv-metric-val {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 3px;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease;
}

.tv-metric-val.pulse {
    animation: metricPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes metricPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.25); color: var(--turbo); }
    100% { transform: scale(1); }
}

.tv-metric-lbl {
    font-size: 9px;
    color: #64748b;
}

/* Progress Bars */
.tv-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tv-bar-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 10px;
    color: #94a3b8;
    direction: ltr;
}

.tv-bar-pct {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.tv-bar-track {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.tv-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: var(--turbo-gradient);
    transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Badges */
.tv-badge {
    position: absolute;
    background: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 7px;
    opacity: 0;
    transform: translateY(12px) scale(0.85);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    z-index: 2;
}

.tv-badge.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tv-badge-1 {
    top: 70px;
    right: -36px;
}

.tv-badge-1 i { color: #22c55e; }

.tv-badge-2 {
    bottom: 130px;
    left: -44px;
}

.tv-badge-2 i { color: var(--turbo); }

.tv-badge-3 {
    bottom: 50px;
    right: -28px;
}

.tv-badge-3 i { color: #3b82f6; }

/* ═══ ONE-CLICK SPEED (between hero & features) ═══ */
.one-click-section {
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #fff 0%, #fff9f0 40%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.one-click-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--turbo-gradient);
    opacity: 0.9;
}

.one-click-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 90vw);
    height: min(900px, 90vw);
    background: radial-gradient(circle, rgba(245, 166, 35, 0.07) 0%, transparent 68%);
    pointer-events: none;
}

.oc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.oc-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.oc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.14);
    color: #b45309;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 22px;
    border: 1px solid rgba(245, 166, 35, 0.22);
}

.oc-badge i {
    font-size: 15px;
}

.oc-title {
    font-size: clamp(28px, 4.2vw, 42px);
    font-weight: 900;
    color: #2c3e50;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.oc-lead {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 2;
    text-align: justify;
    text-align-last: center;
}

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

.oc-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(245, 166, 35, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.oc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(245, 166, 35, 0.14);
}

.oc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--turbo-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px var(--turbo-shadow);
}

.oc-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.oc-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin: 0;
}

.oc-foot {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    padding: 26px 30px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.06);
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid rgba(245, 166, 35, 0.12);
    border-inline-start: 4px solid var(--turbo);
}

.oc-foot > i:first-child {
    color: var(--turbo);
    font-size: 26px;
    margin-top: 2px;
    flex-shrink: 0;
}

.oc-foot p {
    font-size: 16px;
    color: #444;
    line-height: 1.95;
    margin: 0;
}

.oc-foot strong {
    color: #2c3e50;
}

@media (max-width: 992px) {
    .one-click-section { padding: 64px 0 72px; }
    .oc-grid { grid-template-columns: 1fr; gap: 18px; }
    .oc-lead { text-align: right; text-align-last: auto; font-size: 16px; }
    .oc-foot { flex-direction: column; align-items: center; text-align: center; }
    .oc-foot > i:first-child { margin-top: 0; }
}

@media (max-width: 640px) {
    .oc-container { padding: 0 20px; }
    .oc-card { padding: 22px 18px; }
    .oc-foot { padding: 20px 18px; }
}

/* ═══ LIVE DEMO (before one-click) ═══ */
.live-demo-section {
    position: relative;
    padding: 92px 0 100px;
    background: radial-gradient(120% 120% at 80% 0%, #232348 0%, #1a1a2e 45%, #14142a 100%);
    overflow: hidden;
    isolation: isolate;
}

.live-demo-section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--turbo-gradient);
    opacity: 0.95;
    z-index: 3;
}

.ld-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.ld-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 75%);
            mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 75%);
}

.ld-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: ld-orb-float 9s ease-in-out infinite;
}

.ld-orb-1 {
    width: 360px; height: 360px;
    top: -90px; inset-inline-start: -60px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.55), transparent 70%);
}

.ld-orb-2 {
    width: 420px; height: 420px;
    bottom: -140px; inset-inline-end: -80px;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.45), transparent 70%);
    animation-delay: -4.5s;
}

@keyframes ld-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(0, 26px) scale(1.08); }
}

.ld-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.ld-content { color: #fff; }

.ld-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(245, 166, 35, 0.16);
    border: 1px solid rgba(245, 166, 35, 0.35);
    color: #ffd58a;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.ld-live-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    animation: ld-live-pulse 1.6s ease-out infinite;
}

@keyframes ld-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
    70% { box-shadow: 0 0 0 9px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

.ld-title {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.ld-title-hl {
    color: var(--turbo);
    position: relative;
    white-space: nowrap;
}

.ld-title-hl::after {
    content: '';
    position: absolute;
    inset-inline: -2px;
    bottom: 2px;
    height: 10px;
    background: rgba(245, 166, 35, 0.25);
    border-radius: 6px;
    z-index: -1;
}

.ld-lead {
    font-size: 16.5px;
    line-height: 2.05;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    text-align: justify;
}

.ld-points {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.ld-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.ld-points i {
    width: 32px; height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 14px;
    color: var(--turbo);
    background: rgba(245, 166, 35, 0.14);
    border: 1px solid rgba(245, 166, 35, 0.28);
}

.ld-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--turbo-gradient);
    color: #1a1a2e;
    font-weight: 800;
    font-size: 17px;
    padding: 16px 30px;
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(245, 166, 35, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: ld-cta-breathe 2.6s ease-in-out infinite;
}

.ld-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(245, 166, 35, 0.55);
    animation-play-state: paused;
}

@keyframes ld-cta-breathe {
    0%, 100% { box-shadow: 0 12px 34px rgba(245, 166, 35, 0.35); }
    50% { box-shadow: 0 12px 44px rgba(245, 166, 35, 0.6); }
}

.ld-cta i { font-size: 19px; }

.ld-cta-arrow {
    font-size: 15px !important;
    animation: ld-arrow-nudge 1.4s ease-in-out infinite;
}

@keyframes ld-arrow-nudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.ld-cta-shine {
    position: absolute;
    top: 0;
    inset-inline-start: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-18deg);
    animation: ld-shine 3.4s ease-in-out infinite;
}

@keyframes ld-shine {
    0%, 18% { inset-inline-start: -120%; }
    55%, 100% { inset-inline-start: 130%; }
}

.ld-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.ld-note i { color: var(--turbo); }

/* ── Visual mockup ── */
.ld-visual {
    position: relative;
    order: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
    animation: ld-visual-float 6s ease-in-out infinite;
}

@keyframes ld-visual-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.ld-window {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ld-window-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: #f1f3f6;
    border-bottom: 1px solid #e4e7ec;
}

.ld-wdot { width: 11px; height: 11px; border-radius: 50%; }
.ld-wdot.red { background: #ff5f57; }
.ld-wdot.yellow { background: #febc2e; }
.ld-wdot.green { background: #28c840; }

.ld-window-url {
    margin-inline-start: 10px;
    flex: 1;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 7px;
    padding: 5px 10px;
    font-size: 11.5px;
    color: #667085;
    display: flex;
    align-items: center;
    gap: 6px;
    direction: ltr;
}

.ld-window-url i { color: #28c840; font-size: 10px; }

.ld-window-body {
    position: relative;
    padding: 26px 22px 30px;
    background: linear-gradient(180deg, #fff 0%, #fff8ee 100%);
    text-align: center;
}

.ld-gauge {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
}

.ld-gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.ld-gauge-track {
    fill: none;
    stroke: #eceff3;
    stroke-width: 10;
}

.ld-gauge-fill {
    fill: none;
    stroke: var(--turbo);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: ld-gauge-sweep 6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes ld-gauge-sweep {
    0%, 30% { stroke-dashoffset: 288; stroke: #d0d5dd; }
    38% { stroke: var(--turbo); }
    60%, 84% { stroke-dashoffset: 6; stroke: #22c55e; }
    92%, 100% { stroke-dashoffset: 288; stroke: #d0d5dd; }
}

.ld-gauge-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--turbo);
}

.ld-gauge-center i { color: #22c55e; animation: ld-rocket 6s ease-in-out infinite; }

@keyframes ld-rocket {
    0%, 30% { transform: translateY(0) rotate(-45deg) scale(0.85); opacity: 0.45; color: var(--turbo); }
    34% { transform: translateY(2px) rotate(-45deg) scale(0.8); }
    50% { transform: translateY(-6px) rotate(-45deg) scale(1.12); opacity: 1; color: #22c55e; }
    60%, 84% { transform: translateY(-7px) rotate(-45deg) scale(1.06); opacity: 1; color: #22c55e; }
    100% { transform: translateY(0) rotate(-45deg) scale(0.85); opacity: 0.45; color: var(--turbo); }
}

.ld-bars {
    display: grid;
    gap: 11px;
    margin-bottom: 22px;
    text-align: start;
}

.ld-bar-row {
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #475467;
}

.ld-bar {
    height: 9px;
    background: #eceff3;
    border-radius: 999px;
    overflow: hidden;
}

.ld-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
}

.ld-bar-before { width: 28%; background: #f04438; }

.ld-bar-after {
    width: 0;
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
    animation: ld-bar-grow 6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes ld-bar-grow {
    0%, 34% { width: 0; }
    60%, 84% { width: 100%; }
    92%, 100% { width: 0; }
}

.ld-fake-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--turbo-gradient);
    color: #1a1a2e;
    font-weight: 800;
    font-size: 13.5px;
    padding: 10px 22px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
    animation: ld-btn-press 6s ease-in-out infinite;
}

@keyframes ld-btn-press {
    0%, 28% { transform: scale(1); box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4); }
    33% { transform: scale(0.9); box-shadow: 0 3px 9px rgba(245, 166, 35, 0.55); }
    40%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4); }
}

.ld-ripple {
    position: absolute;
    bottom: 42px;
    left: 50%;
    width: 22px;
    height: 22px;
    margin-inline-start: -11px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.5);
    opacity: 0;
    pointer-events: none;
    animation: ld-ripple 6s ease-out infinite;
}

@keyframes ld-ripple {
    0%, 31% { transform: scale(0.2); opacity: 0; }
    34% { opacity: 0.7; }
    52% { transform: scale(5); opacity: 0; }
    100% { transform: scale(5); opacity: 0; }
}

.ld-cursor {
    position: absolute;
    bottom: 30px;
    left: 50%;
    color: #1a1a2e;
    font-size: 22px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
    animation: ld-cursor-move 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes ld-cursor-move {
    0% { transform: translate(96px, -116px) scale(1); opacity: 0; }
    10% { opacity: 1; }
    28% { transform: translate(0, 0) scale(1); opacity: 1; }
    33% { transform: translate(0, 0) scale(0.78); }
    40% { transform: translate(0, 0) scale(1); }
    74% { transform: translate(0, 0) scale(1); opacity: 1; }
    88%, 100% { transform: translate(96px, -116px) scale(1); opacity: 0; }
}

.ld-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.97);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 12.5px;
    padding: 9px 14px;
    border-radius: 11px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    opacity: 0;
}

.ld-float-1 {
    top: 28px;
    inset-inline-start: -8px;
    animation: ld-float-pop 6s ease-out infinite;
}

.ld-float-1 i { color: #28c840; }

.ld-float-2 {
    bottom: 40px;
    inset-inline-end: -8px;
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.28);
    animation: ld-float-pop 6s ease-out infinite;
    animation-delay: 0.4s;
}

.ld-float-2 i { color: #22c55e; }

@keyframes ld-float-pop {
    0%, 36% { opacity: 0; transform: translateY(14px) scale(0.82); }
    46% { opacity: 1; transform: translateY(-4px) scale(1.04); }
    52% { transform: translateY(0) scale(1); }
    84% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-10px) scale(0.9); }
}

@media (max-width: 992px) {
    .live-demo-section { padding: 64px 0 72px; }
    .ld-container { grid-template-columns: 1fr; gap: 48px; }
    .ld-content { text-align: center; }
    .ld-badge { margin-inline: auto; }
    .ld-lead { text-align: justify; }
    .ld-points { max-width: 420px; margin-inline: auto; margin-bottom: 28px; }
    .ld-note { justify-content: center; }
    .ld-visual { order: -1; min-height: 320px; }
}

@media (max-width: 640px) {
    .ld-container { padding: 0 20px; }
    .ld-cta { width: 100%; justify-content: center; font-size: 16px; }
    .ld-float-1 { inset-inline-start: 2px; }
    .ld-float-2 { inset-inline-end: 2px; }
}

@media (prefers-reduced-motion: reduce) {
    .ld-orb, .ld-live-dot, .ld-cta, .ld-cta-arrow, .ld-cta-shine,
    .ld-visual, .ld-gauge-fill, .ld-gauge-center i, .ld-bar-after,
    .ld-fake-btn, .ld-ripple, .ld-cursor, .ld-float {
        animation: none !important;
    }
    .ld-gauge-fill { stroke-dashoffset: 6; stroke: #22c55e; }
    .ld-gauge-center i { color: #22c55e; }
    .ld-bar-after { width: 100%; }
    .ld-float { opacity: 1; }
    .ld-cursor { opacity: 0; }
}

/* ═══ FEATURES — Circular Infographic ═══ */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
    margin-top: 0;
    overflow: hidden;
}

.features-section .container,
.preview-section .container,
.faq-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--turbo-gradient);
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Features Two-Column Layout */
.features-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.features-info {
    max-width: 380px;
    flex-shrink: 0;
}

.fi-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 20px;
}

.fi-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--turbo-gradient);
    border-radius: 2px;
}

.fi-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 30px;
}

.fi-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fi-hl {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.fi-hl i {
    color: var(--turbo-accent);
    font-size: 18px;
    flex-shrink: 0;
}

/* Circle Container — fluid sizing with clamp() */
.features-circle {
    --step: calc(360deg / 13);
    --circle-size: clamp(550px, 46vw, 720px);
    --item-radius: calc(var(--circle-size) * 0.40);
    --ring-size: calc(var(--circle-size) * 0.78);
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
    flex-shrink: 0;
}

/* Sun ray lines from center */
.fc-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--item-radius) - 34px);
    height: 1px;
    transform-origin: 0 50%;
    transform: rotate(calc(var(--i) * var(--step)));
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.fc-ray::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(245,166,35,0.35), transparent 70%);
    animation: rayPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.23s);
}

.features-circle.animated .fc-ray {
    opacity: 1;
    transition: opacity 0.5s ease;
    transition-delay: calc(0.3s + var(--i) * 0.065s);
}

@keyframes rayPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Dashed Ring */
.fc-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--ring-size);
    height: var(--ring-size);
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease 0.1s;
}

.features-circle.animated .fc-ring {
    opacity: 1;
    animation: fc-ring-spin 400s linear infinite;
}

@keyframes fc-ring-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center Hub — fluid */
.fc-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: clamp(130px, 12vw, 175px);
    height: clamp(130px, 12vw, 175px);
    background: var(--turbo-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow:
        0 12px 40px var(--turbo-shadow),
        0 0 0 6px rgba(245, 166, 35, 0.1);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s;
}

.features-circle.animated .fc-center {
    transform: translate(-50%, -50%) scale(1);
}

.fc-center-icon {
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1;
}

.fc-center-num {
    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-top: 3px;
}

.fc-center-txt {
    font-size: clamp(10px, 0.9vw, 13px);
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-top: 3px;
}

/* Feature Items on Circle — fluid */
.fc-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(105px, 9.5vw, 148px);
    margin-left: calc(clamp(105px, 9.5vw, 148px) / -2);
    margin-top: -58px;
    text-align: center;
    cursor: default;
    padding: 8px 4px;
    border-radius: 14px;
    opacity: 0;
    transform:
        rotate(calc(var(--i) * var(--step)))
        translateY(calc(-1 * var(--item-radius)))
        rotate(calc(var(--i) * var(--step) * -1))
        scale(0.4);
    transition: background 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.fc-item:hover {
    background: rgba(245, 166, 35, 0.07);
}

.features-circle.animated .fc-item {
    opacity: 1;
    transform:
        rotate(calc(var(--i) * var(--step)))
        translateY(calc(-1 * var(--item-radius)))
        rotate(calc(var(--i) * var(--step) * -1))
        scale(1);
    transition: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(0.15s + var(--i) * 0.065s);
}

.fc-icon {
    width: clamp(48px, 4.5vw, 68px);
    height: clamp(48px, 4.5vw, 68px);
    margin: 0 auto 10px;
    background: var(--turbo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: clamp(20px, 1.8vw, 28px);
    box-shadow: 0 5px 20px var(--turbo-shadow);
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

.fc-item:hover .fc-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 30px var(--turbo-shadow-hover);
}

.fc-title {
    font-size: clamp(12px, 1.05vw, 15px);
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.5;
    margin-bottom: 4px;
}

.fc-desc {
    font-size: clamp(10px, 0.85vw, 13px);
    color: #64748b;
    line-height: 1.5;
}

/* ── Responsive: Grid fallback ── */
@media (max-width: 1200px) {
    .features-layout {
        flex-direction: column;
        gap: 40px;
    }

    .features-info {
        max-width: 600px;
        text-align: center;
    }

    .fi-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .fi-highlights {
        justify-content: center;
    }
}

@media (max-width: 1000px) {
    .features-circle {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        width: auto !important;
        height: auto !important;
        animation: none !important;
    }

    .fc-ring { display: none; }
    .fc-ray { display: none; }

    .fc-center {
        grid-column: 1 / -1;
        position: static;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        border-radius: 16px;
        padding: 22px 24px;
        flex-direction: row;
        gap: 14px;
    }

    .features-circle.animated .fc-center {
        transform: none !important;
    }

    .fc-center-icon { font-size: 26px; }
    .fc-center-num { font-size: 24px; margin-top: 0; }
    .fc-center-txt { font-size: 13px; margin-top: 0; }

    .fc-item {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 !important;
        width: auto !important;
        background: #fff;
        border-radius: 16px;
        padding: 28px 16px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }

    .fc-item:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        background: #fff;
    }

    .fc-icon { width: 54px; height: 54px; font-size: 22px; }
    .fc-title { font-size: 14px; }
    .fc-desc { font-size: 12px; }
}

@media (max-width: 640px) {
    .features-circle { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .fc-center { flex-direction: column; gap: 6px; padding: 18px; }
    .fc-item { padding: 22px 12px; }
    .fc-title { font-size: 13px; }
    .fc-desc { font-size: 11px; }

    .fi-title { font-size: 28px; }
    .fi-desc { font-size: 14px; }
    .fi-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
    .features-circle { grid-template-columns: 1fr; gap: 12px; }
}

/* ═══ PROFESSIONAL ═══ */
.professional-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.professional-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.professional-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.professional-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.professional-header {
    text-align: center;
    margin-bottom: 80px;
}

.professional-title {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--turbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.professional-subtitle {
    font-size: 20px;
    color: #94a3b8;
    font-weight: 500;
}

/* Speed Layers Grid */
.speed-layers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.speed-layer {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.speed-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--turbo-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.speed-layer:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(245,166,35,0.3);
    box-shadow: 0 20px 50px rgba(245,166,35,0.15);
}

.speed-layer:hover::before {
    transform: scaleX(1);
}

.layer-number {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 56px;
    font-weight: 900;
    color: rgba(245,166,35,0.06);
    line-height: 1;
    pointer-events: none;
}

.layer-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: var(--turbo-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(245,166,35,0.25);
}

.speed-layer:hover .layer-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 35px rgba(245,166,35,0.35);
}

.speed-layer h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.speed-layer p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Smart Server Note */
.smart-server-note {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 16px;
    padding: 28px 35px;
    border-right: 4px solid var(--turbo);
}

.server-note-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--turbo-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(245,166,35,0.25);
}

.server-note-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.server-note-text span {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
}

/* ═══ VIDEO SECTION ═══ */
.video-section {
    padding: 100px 0;
    background: #fff;
}

.video-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.video-wrapper {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    background: #0a0a12;
}

/* ویدیوی واقعی فقط بعد از لود موفق (.has-mp4) دیده می‌شود؛ پیش‌فرض اینترو CSS */
.video-wrapper.has-mp4 .turbo-intro-cinematic {
    display: none !important;
}

.video-wrapper.has-mp4 .turbo-real-video {
    display: block !important;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 200px;
    aspect-ratio: 16 / 9;
    background: #000;
    object-fit: contain;
}

.turbo-real-video[hidden] {
    display: none !important;
}

/* ═══ Turbo intro «video» (CSS cinematic) ═══ */
.turbo-intro-cinematic {
    position: relative;
    width: 100%;
}

.intro-aspect {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(70vh, 560px);
    margin: 0 auto;
}

.intro-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 20px;
    contain: layout style;
}

.intro-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245, 166, 35, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
        linear-gradient(165deg, #0f0f1a 0%, #1a1a2e 45%, #0d1117 100%);
    animation: introBgShift 22s ease-in-out infinite;
}

@keyframes introBgShift {
    0%, 100% { filter: hue-rotate(0deg); opacity: 1; }
    50% { filter: hue-rotate(8deg); opacity: 0.97; }
}

.intro-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
    opacity: 0.7;
    animation: introGridDrift 30s linear infinite;
}

@keyframes introGridDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-48px, -48px); }
}

.intro-streaks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.intro-streaks span {
    position: absolute;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.55), transparent);
    opacity: 0;
    animation: introStreak 22s ease-in-out infinite;
}

.intro-streaks span:nth-child(1) { top: 22%; left: -20%; width: 45%; animation-delay: 0s; }
.intro-streaks span:nth-child(2) { top: 38%; left: 10%; width: 35%; animation-delay: 0.4s; }
.intro-streaks span:nth-child(3) { top: 55%; width: 50%; animation-delay: 0.8s; }
.intro-streaks span:nth-child(4) { top: 68%; width: 30%; animation-delay: 1.2s; }
.intro-streaks span:nth-child(5) { top: 28%; left: 40%; width: 28%; animation-delay: 1.6s; }
.intro-streaks span:nth-child(6) { top: 72%; width: 40%; animation-delay: 2s; }

@keyframes introStreak {
    0%, 10% { opacity: 0; transform: translateX(-10%) scaleX(0.3); }
    18%, 55% { opacity: 0.85; transform: translateX(35%) scaleX(1); }
    65%, 100% { opacity: 0; transform: translateX(120%) scaleX(0.5); }
}

.intro-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90%, 420px);
    height: min(90%, 420px);
    transform: translate(-50%, -52%);
    background: radial-gradient(circle, rgba(245, 166, 35, 0.25) 0%, transparent 65%);
    pointer-events: none;
    animation: introGlowPulse 22s ease-in-out infinite;
}

@keyframes introGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -52%) scale(1); }
    45% { opacity: 0.85; transform: translate(-50%, -52%) scale(1.08); }
}

.intro-logo-box {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: introLogoMotion 22s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.intro-logo-img {
    width: clamp(100px, 18vw, 160px);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 28px rgba(245, 166, 35, 0.45));
    will-change: transform, opacity, filter;
}

@keyframes introLogoMotion {
    0% { opacity: 0; transform: translate(-50%, -40%) scale(0.7); filter: blur(6px); }
    8% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
    88% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    96% { opacity: 0; transform: translate(-50%, -48%) scale(1.05); filter: blur(2px); }
    100% { opacity: 0; transform: translate(-50%, -40%) scale(0.85); }
}

.intro-copy {
    position: absolute;
    bottom: 22%;
    left: 0;
    right: 0;
    padding: 0 28px;
    text-align: center;
}

.intro-line {
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.45;
}

.intro-line-1 {
    font-size: clamp(17px, 2.2vw, 26px);
    animation: introLine1 22s ease-in-out infinite;
}

.intro-line-2 {
    font-size: clamp(14px, 1.65vw, 1.05rem);
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    margin-top: 10px;
    animation: introLine2 22s ease-in-out infinite;
}

.intro-line-3 {
    font-size: clamp(12px, 1.35vw, 1rem);
    font-weight: 600;
    color: rgba(245, 166, 35, 0.95);
    margin-top: 10px;
    animation: introLine3 22s ease-in-out infinite;
}

.intro-line-3 strong {
    font-weight: 900;
    color: #fff;
}

@keyframes introLine1 {
    0%, 12% { opacity: 0; transform: translateY(18px); }
    18%, 82% { opacity: 1; transform: translateY(0); }
    88%, 100% { opacity: 0; transform: translateY(-12px); }
}

@keyframes introLine2 {
    0%, 22% { opacity: 0; transform: translateY(16px); }
    28%, 78% { opacity: 1; transform: translateY(0); }
    86%, 100% { opacity: 0; }
}

@keyframes introLine3 {
    0%, 32% { opacity: 0; transform: translateY(14px); }
    38%, 72% { opacity: 1; transform: translateY(0); }
    80%, 100% { opacity: 0; }
}

.intro-footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    animation: introFooter 22s ease-in-out infinite;
}

.intro-brand {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.intro-tag {
    font-size: 11px;
    opacity: 0.7;
}

@keyframes introFooter {
    0%, 15% { opacity: 0; }
    22%, 85% { opacity: 1; }
    92%, 100% { opacity: 0; }
}

.intro-replay-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 999px;
    background: rgba(15, 15, 26, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Yekan Bakh', 'Tahoma', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.intro-replay-btn:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: rgba(245, 166, 35, 0.6);
    transform: translateX(-50%) translateY(-2px);
}

.intro-replay-btn i {
    color: var(--turbo);
    font-size: 14px;
}

@media (max-width: 768px) {
    .intro-aspect {
        max-height: none;
        aspect-ratio: 9 / 16;
        min-height: 380px;
    }

    .intro-logo-box {
        top: 35%;
    }

    .intro-copy {
        bottom: 18%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-bg,
    .intro-grid,
    .intro-streaks span,
    .intro-glow,
    .intro-logo-box,
    .intro-line-1,
    .intro-line-2,
    .intro-line-3,
    .intro-footer-bar {
        animation: none !important;
    }

    .intro-logo-box {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .intro-line-1,
    .intro-line-2,
    .intro-line-3 {
        opacity: 1;
        transform: none;
    }

    .intro-footer-bar {
        opacity: 1;
    }
}

/* ═══ PREVIEW SECTION ═══ */
.preview-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.preview-container {
    margin-top: 40px;
}

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

.preview-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-family: 'Yekan Bakh', 'Tahoma', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.preview-tab i {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.preview-tab:hover {
    border-color: var(--turbo);
    background: #fff8e1;
}

.preview-tab.active {
    background: var(--turbo-gradient);
    border-color: var(--turbo);
    color: #fff;
    box-shadow: 0 4px 12px var(--turbo-shadow);
}

.preview-tab.active i {
    color: #fff;
}

.preview-browser {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
}

.browser-bar {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #d0d0d0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots .dot.red { background: #ff5f57; }
.browser-dots .dot.yellow { background: #febc2e; }
.browser-dots .dot.green { background: #28c840; }

.browser-url {
    flex: 1;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    direction: ltr;
    text-align: left;
}

.browser-url i {
    color: #22c55e;
    font-size: 11px;
}

.preview-frame-wrap {
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.preview-frame-wrap iframe {
    width: 142.86%;
    height: 142.86%;
    transform: scale(0.7);
    transform-origin: top right;
    border: none;
    background: #fff;
}

/* Preview Loader (snail animation) */
.preview-loader {
    position: absolute;
    inset: 0;
    background: #f5f5f5;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.preview-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.pl-track {
    width: 200px;
    overflow: hidden;
    position: relative;
    height: 60px;
}

.pl-snail {
    width: 60px;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: plSnailRun 2s ease-in-out infinite;
}

@keyframes plSnailRun {
    0% { right: -60px; filter: none; }
    30% { right: 30%; filter: none; }
    50% { right: 45%; filter: drop-shadow(0 0 6px rgba(245,166,35,0.4)); }
    70% { right: 70%; filter: blur(1px); }
    100% { right: calc(100% + 60px); filter: blur(3px); opacity: 0.4; }
}

.preview-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    font-size: 14px;
    color: #94a3b8;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.preview-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ═══ FAQ ═══ */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-section .container {
    max-width: 900px;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef0f3;
}

.faq-item:hover {
    border-color: rgba(245,166,35,0.2);
}

.faq-item.active {
    border-color: var(--turbo);
    box-shadow: 0 8px 30px rgba(245,166,35,0.1);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    transition: all 0.3s ease;
    gap: 16px;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--turbo-dark);
}

.faq-question i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,166,35,0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--turbo);
    font-size: 12px;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--turbo-gradient);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    line-height: 2;
    font-size: 15px;
    border-top: 1px solid #f0f2f5;
    padding-top: 18px;
    margin: 0 16px;
}


/* ═══ FOOTER ═══ */
.main-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--turbo-gradient);
    border-radius: 2px;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo-area {
    margin-bottom: 32px;
}

.footer-logo-area img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(245,166,35,0.2);
}

.footer-slogan {
    font-size: 26px;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-sub {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.footer-buy-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--turbo-gradient);
    color: #fff;
    padding: 16px 42px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 48px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(245,166,35,0.25);
}

.footer-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,166,35,0.35);
    color: #fff;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 28px;
}

.footer-container .copyright {
    color: #4a5568;
    font-size: 13px;
    margin: 0;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-container {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        min-height: auto;
    }

    .main-title { font-size: 38px; }
    .professional-title { font-size: 36px; }

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

}

@media (max-width: 768px) {
    header { backdrop-filter: blur(12px); }

    .header-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        padding: 10px 20px;
        height: auto;
    }

    .header-logo {
        justify-content: center;
    }

    .header-right {
        justify-content: center;
    }

    .nav-menu {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a { font-size: 13px; padding: 6px 10px; }
    .main-content { padding: 30px 20px; }
    .main-title { font-size: 32px; }
    .subtitle { font-size: 20px; }
    .description { font-size: 16px; }

    .turbo-visual {
        max-width: 100%;
    }

    .tv-body { padding: 20px 16px; }

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

    .tv-badge {
        font-size: 10px;
        padding: 6px 10px;
    }

    .tv-badge-1 { right: -10px; top: 55px; }
    .tv-badge-2 { left: -10px; bottom: 110px; }
    .tv-badge-3 { right: -6px; bottom: 40px; }

    .features-section,
    .preview-section,
    .faq-section {
        padding: 60px 0;
    }

    .features-section .container,
    .preview-section .container,
    .faq-section .container {
        padding: 0 20px;
    }

    .section-title { font-size: 28px; }
    .section-desc { font-size: 15px; margin-bottom: 40px; }

    .professional-section { padding: 80px 0; }
    .professional-container { padding: 0 20px; }
    .professional-title { font-size: 28px; }
    .professional-subtitle { font-size: 15px; }
    .speed-layers { grid-template-columns: 1fr; gap: 16px; }
    .speed-layer { padding: 28px 20px; }
    .layer-icon { width: 56px; height: 56px; font-size: 22px; border-radius: 14px; }
    .speed-layer h3 { font-size: 17px; }
    .speed-layer p { font-size: 14px; }
    .smart-server-note {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .video-section { padding: 60px 0; }
    .video-section .container { padding: 0 20px; }

    .preview-tabs {
        gap: 6px;
    }

    .preview-tab {
        padding: 8px 12px;
        font-size: 11px;
    }

    .preview-tab span { display: none; }
    .preview-tab i { font-size: 16px; }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-question i {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .faq-answer p {
        padding: 0 12px 18px;
        padding-top: 14px;
        margin: 0 8px;
        font-size: 14px;
    }

    .main-footer { padding: 50px 0 36px; }
    .footer-container { padding: 0 20px; }
    .footer-slogan { font-size: 20px; }
    .footer-buy-button { padding: 14px 32px; font-size: 15px; }
}

/* ═══ COMPARE SECTION ═══ */
.compare-section {
    padding: 100px 0;
    background: #fff;
}

.compare-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.compare-legend {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cl-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px;
    background: #f8f9fa;
    border-radius: 20px;
}

.cl-exclusive i { color: var(--turbo); }
.cl-yes i { color: #22c55e; }
.cl-partial i { color: #f59e0b; }
.cl-no i { color: #cbd5e1; }

/* Table Wrapper */
.compare-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.compare-wrap.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.compare-table thead th {
    background: var(--bg-dark);
    color: #c0c8d8;
    padding: 20px 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid rgba(245, 166, 35, 0.3);
}

.ct-fhead {
    text-align: right !important;
    min-width: 200px;
    color: #e2e8f0 !important;
    font-size: 15px !important;
}

.compare-table thead th:nth-child(2) {
    background: var(--turbo-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.compare-table thead th:nth-child(2) img {
    vertical-align: middle;
    margin-left: 6px;
    border-radius: 4px;
}

/* Category Row */
.ct-cat td {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    font-weight: 700;
    font-size: 15px;
    color: var(--turbo-dark);
    padding: 14px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}

.ct-cat:hover td {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe082 100%);
}

.ct-cat td i:first-child {
    color: var(--turbo);
    margin-left: 10px;
    font-size: 14px;
}

.ct-chev {
    float: left;
    font-size: 11px;
    color: var(--turbo);
    transition: transform 0.3s ease;
    margin-top: 3px;
}

.ct-cat.collapsed .ct-chev {
    transform: rotate(180deg);
}

/* Feature Rows */
.ct-row td {
    padding: 13px 14px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--text);
    transition: background 0.2s ease;
}

.ct-row:hover td {
    background: rgba(245, 166, 35, 0.04);
}

.ct-fname {
    text-align: right !important;
    font-weight: 500;
    white-space: nowrap;
}

/* Turbo Column Highlight */
.ct-tc {
    background: rgba(245, 166, 35, 0.05) !important;
    position: relative;
}

.ct-row:hover .ct-tc {
    background: rgba(245, 166, 35, 0.1) !important;
}

/* Status Icons */
.ct-exc {
    color: var(--turbo);
    font-size: 18px;
    filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.4));
}

.ct-yes {
    color: #22c55e;
    font-size: 17px;
}

.ct-part {
    color: #f59e0b;
    font-size: 17px;
    cursor: help;
}

.ct-no {
    color: #d4d8e0;
    font-size: 15px;
}

/* Collapsed row animation */
.ct-row {
    transition: opacity 0.25s ease;
}

.ct-row.ct-hidden {
    display: none;
}

/* ── Score Summary ── */
.compare-scores {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.compare-scores-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.cs-item {
    padding: 0 4px;
}

.cs-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}

.cs-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.cs-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    direction: ltr;
}

.cs-bar {
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.cs-fill {
    height: 100%;
    width: 0;
    border-radius: 6px;
    background: #94a3b8;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-turbo .cs-fill {
    background: var(--turbo-gradient);
    box-shadow: 0 2px 8px var(--turbo-shadow);
}

.cs-turbo .cs-name {
    color: var(--turbo-dark);
    font-weight: 700;
    font-size: 15px;
}

.cs-turbo .cs-count {
    color: var(--turbo-dark);
    font-weight: 800;
}

/* Compare CTA */
.compare-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: var(--turbo-gradient);
    border-radius: 20px;
    box-shadow: 0 12px 40px var(--turbo-shadow);
}

.cta-icon {
    font-size: 42px;
    color: #fff;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.cta-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #e8920e;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.cta-button i {
    font-size: 20px;
}

/* ── Compare Responsive ── */
@media (max-width: 1200px) {
    .compare-section .container { padding: 0 30px; }
}

@media (max-width: 768px) {
    .compare-section { padding: 60px 0; }
    .compare-section .container { padding: 0 15px; }

    .compare-legend {
        gap: 10px;
        margin-bottom: 24px;
    }

    .cl-item {
        font-size: 11px;
        padding: 5px 10px;
        gap: 4px;
    }

    .compare-wrap {
        border-radius: 12px;
    }

    .compare-table thead th {
        padding: 14px 8px;
        font-size: 12px;
    }

    .ct-fhead { min-width: 150px; }

    .ct-cat td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .ct-row td {
        padding: 11px 8px;
        font-size: 13px;
    }

    .ct-fname { font-size: 13px; }
    .ct-exc, .ct-yes, .ct-part { font-size: 15px; }
    .ct-no { font-size: 13px; }

    .compare-scores { margin-top: 32px; gap: 12px; }
    .compare-scores-title { font-size: 17px; }
    .cs-name { font-size: 13px; }
    .cs-bar { height: 10px; }

    .compare-cta { padding: 36px 24px; margin-top: 40px; }
    .cta-icon { font-size: 32px; }
    .cta-title { font-size: 21px; }
    .cta-desc { font-size: 14px; }
    .cta-button { padding: 14px 28px; font-size: 15px; }
}
