/* ============================================
   FONT — Local Vazirmatn webfonts
   ============================================ */
@font-face {
    font-family: 'Vazirmatn-L';
    src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn-L';
    src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn-L';
    src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn-L';
    src: url('../fonts/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900; font-style: normal; font-display: swap;
}

/* ============================================
   ROOT VARIABLES — Premium Dark Theme
   ============================================ */
:root {
    /* Brand */
    --orange: #FF6B1A;
    --orange-bright: #FF8534;
    --orange-deep: #D94E08;
    --orange-glow: rgba(255, 107, 26, 0.25);
    
    /* Dark palette */
    --black: #0A0A0A;
    --black-soft: #121212;
    --gray-900: #1A1A1A;
    --gray-800: #242424;
    --gray-700: #2D2D2D;
    --gray-600: #3D3D3D;
    --gray-500: #6B6B6B;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F4F4F4;
    --white: #FFFFFF;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-orange: 0 12px 30px rgba(255, 107, 26, 0.35);
    
    /* Radius */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 999px;
    
    --font: 'Vazirmatn-L', 'Tahoma', system-ui, -apple-system, sans-serif;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%;
    background: var(--white);
}
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-900);
    background: var(--white);
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 84px; /* space for sticky CTA on mobile */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 22px;
}

.section {
    padding: 70px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 26, 0.08);
    color: var(--orange);
    padding: 7px 14px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 107, 26, 0.2);
}

.section-label.dark-label {
    background: rgba(255, 255, 255, 0.08);
    color: var(--orange-bright);
    border-color: rgba(255, 107, 26, 0.3);
}

.section-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

.accent {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

/* ============================================
   HERO — Full-screen instructor banner
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--black);
    display: flex;
    flex-direction: column;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: brightness(0.85) contrast(1.05);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(10, 10, 10, 0.55) 0%, 
            rgba(10, 10, 10, 0.35) 30%,
            rgba(10, 10, 10, 0.7) 65%,
            rgba(10, 10, 10, 0.98) 100%),
        radial-gradient(ellipse at top left, 
            rgba(255, 107, 26, 0.18) 0%, 
            transparent 50%);
}

/* Header */
.hero-header {
    position: relative;
    z-index: 2;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 14px 6px 6px;
    border-radius: var(--r-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-logo {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    padding: 4px;
    object-fit: contain;
}

.brand-name {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.brand-tag {
    background: var(--orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--shadow-orange);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 30px 22px 50px;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 26, 0.15);
    border: 1px solid rgba(255, 107, 26, 0.4);
    color: var(--orange-bright);
    padding: 7px 14px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-title-1 {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.hero-title-2 {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--orange-bright);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    font-weight: 500;
}

.stat-line {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--r-md);
    font-weight: 800;
    font-size: 16px;
    box-shadow: var(--shadow-orange);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta:hover, .hero-cta:active {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 107, 26, 0.5);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
}

/* ============================================
   TICKER STRIP
   ============================================ */
/* Marquee ticker — rebuilt from scratch.
   Structure: .ticker > .marquee > .marquee__group (rendered 2x).
   Each group holds the full item list; translating the marquee by
   exactly -50% of its own width makes the second group slide into
   the first group's position for a perfectly seamless loop.
   Direction is forced LTR on the marquee so the default RTL flex
   layout doesn't invert positions; each Persian item still renders
   RTL via unicode bidi inside its own box. */
.ticker {
    background: var(--orange);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 56px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.ticker::before { right: 0; background: linear-gradient(to left, var(--orange), transparent); }
.ticker::after  { left: 0;  background: linear-gradient(to right, var(--orange), transparent); }

.marquee {
    direction: ltr;
    display: flex;
    width: max-content;
    animation: marquee-slide 60s linear infinite;
    will-change: transform;
}
.ticker:hover .marquee { animation-play-state: paused; }

.marquee__group {
    display: flex;
    align-items: center;
    gap: 44px;
    padding-left: 44px;
    flex-shrink: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}
.marquee__group > .ticker-dot {
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
}

@keyframes marquee-slide {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
    .marquee { animation-duration: 45s; }
    .marquee__group { gap: 32px; padding-left: 32px; font-size: 14px; }
}

/* The global reduced-motion reset at the bottom of this file sets
   animation-duration: 0.01ms !important on *, which would freeze the
   marquee. The ticker content is meaningful (not decorative), so we
   override with !important and a slow, gentle duration. */
@media (prefers-reduced-motion: reduce) {
    .marquee { animation-duration: 90s !important; }
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain {
    background: var(--gray-100);
}

.pain-quotes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.quote {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 18px 20px 18px 22px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border-right: 3px solid var(--orange);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 38px;
    color: var(--orange);
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: -4px;
}

.quote p {
    font-size: 15px;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.6;
    padding-top: 4px;
}

.empathy-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.empathy-card p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.empathy-card p:last-child { margin-bottom: 0; }

.empathy-card strong {
    color: var(--orange-deep);
    font-weight: 800;
}

/* ============================================
   WARNING SECTION (dark, dramatic)
   ============================================ */
.warning {
    background: var(--black);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.warning-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 26, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 26, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.warning > .container { position: relative; z-index: 1; }

.warning-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 26, 0.15);
    border: 1px solid var(--orange);
    color: var(--orange-bright);
    padding: 7px 16px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 22px;
}

.warning-pulse {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange);
    animation: pulse 1.5s ease-in-out infinite;
}

.warning-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.warning-em {
    color: var(--orange);
    display: block;
    margin-top: 4px;
}

.warning-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.warning-split {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.split-bad, .split-good {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    padding: 20px 18px;
    text-align: center;
}

.split-good {
    background: rgba(255, 107, 26, 0.1);
    border-color: rgba(255, 107, 26, 0.4);
}

.split-icon {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.split-bad .split-icon { color: #ff5555; }
.split-good .split-icon { color: var(--orange-bright); }

.split-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    font-weight: 600;
}

.split-result {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
}

.split-vs {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-align: center;
    padding: 4px 0;
}

.warning-final {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.7;
    padding: 18px 20px;
    background: rgba(255, 107, 26, 0.1);
    border-radius: var(--r-md);
    border: 1px dashed rgba(255, 107, 26, 0.5);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
    background: var(--white);
    text-align: center;
    padding: 80px 0 40px;
}

.solution-sub {
    font-size: 17px;
    line-height: 1.85;
    color: var(--gray-500);
    max-width: 480px;
    margin: 0 auto;
}

/* ============================================
   MODULES
   ============================================ */
.modules {
    background: var(--white);
    padding-top: 30px;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mod {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 24px 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mod::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height 0.3s ease;
}

.mod:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mod:hover::before { height: 100%; }

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

.mod-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum";
}

.mod-icon {
    font-size: 36px;
    line-height: 1;
}

.mod-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.mod-desc {
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.75;
}

.mod-special {
    background: linear-gradient(135deg, #FFF5EC 0%, #FFFFFF 100%);
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(255, 107, 26, 0.12);
    position: relative;
}

.mod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 800;
    box-shadow: var(--shadow-orange);
}

/* ============================================
   WHY BUY
   ============================================ */
.why {
    background: var(--gray-100);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-row {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 22px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.why-row:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-md);
}

.why-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
    background: rgba(255, 107, 26, 0.08);
    border-radius: 10px;
    padding: 8px 4px;
    text-align: center;
    font-feature-settings: "tnum";
}

.why-body h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.5;
}

.why-body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.75;
}

/* ============================================
   INSTRUCTOR SECTION
   ============================================ */
.instructor {
    background: linear-gradient(180deg, var(--white) 0%, #FFF5EC 100%);
}

.instructor-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.instructor-img-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 22px;
}

.instructor-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 25%;
    position: relative;
    z-index: 1;
    border: 4px solid var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.instructor-frame {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, var(--orange), var(--orange-bright), var(--orange-deep), var(--orange));
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.instructor-name {
    font-size: 26px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 6px;
    margin-top: 8px;
    letter-spacing: -0.01em;
}

.instructor-role {
    color: var(--orange-deep);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
}

.instructor-bio {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.85;
    max-width: 480px;
    margin: 0 auto;
}

/* ============================================
   FOR WHOM
   ============================================ */
.for-whom { background: var(--white); }

.for-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 540px;
    margin: 0 auto;
}

.for-list li {
    background: var(--gray-100);
    padding: 16px 18px;
    border-radius: var(--r-md);
    font-size: 15px;
    color: var(--gray-900);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.for-list li:hover {
    background: var(--white);
    border-color: var(--orange);
    transform: translateX(-4px);
}

.check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
}

/* ============================================
   OFFER / PRICING
   ============================================ */
.offer {
    background: var(--gray-100);
    padding: 70px 0;
}

.offer-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 30px 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 2px solid var(--orange);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 50%, var(--orange) 100%);
}

.offer-ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--shadow-orange);
    z-index: 2;
}

.offer-head {
    margin-top: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.offer-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-top: 8px;
}

/* Price block */
.offer-price-block {
    text-align: center;
    padding: 22px 0;
    border-top: 1px dashed var(--gray-200);
    border-bottom: 1px dashed var(--gray-200);
    margin-bottom: 22px;
}

.price-old {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 8px;
    text-decoration: line-through;
    text-decoration-color: var(--orange);
    text-decoration-thickness: 2px;
    font-weight: 500;
}

.price-old-num {
    font-feature-settings: "tnum";
}

.price-new {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.price-new-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum";
}

.price-new-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.price-saved {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
}

/* Countdown */
.cd-block {
    background: var(--gray-900);
    border-radius: var(--r-md);
    padding: 18px;
    margin-bottom: 22px;
    color: var(--white);
}

.cd-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--orange-bright);
}

.cd-pulse {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--orange);
    animation: pulse 1.5s ease-in-out infinite;
}

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

.cd-cell {
    background: var(--gray-800);
    border-radius: var(--r-sm);
    padding: 12px 4px;
    text-align: center;
    border: 1px solid var(--gray-700);
}

.cd-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.cd-cap {
    font-size: 10px;
    color: var(--gray-400);
    margin-top: 4px;
    font-weight: 600;
}

/* Features */
.offer-feats {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-feats li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-800);
    line-height: 1.6;
}

.feat-icon {
    width: 22px;
    height: 22px;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    flex-shrink: 0;
}

/* Big CTA */
.big-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--r-md);
    font-weight: 800;
    font-size: 16px;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.big-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.big-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 107, 26, 0.5);
}

.big-cta:hover::after { left: 100%; }

.big-cta-arrow {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.big-cta-light {
    background: var(--white);
    color: var(--orange-deep);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.offer-trust {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
}

.offer-warn {
    margin-top: 12px;
    font-size: 12px;
    color: var(--orange-deep);
    font-weight: 700;
    text-align: center;
    background: rgba(255, 107, 26, 0.08);
    padding: 8px 12px;
    border-radius: var(--r-sm);
}

/* ============================================
   LAST FOMO
   ============================================ */
.last-fomo {
    background: var(--black);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.last-fomo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255, 107, 26, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.last-fomo > .container { position: relative; z-index: 1; }

.last-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.types {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.type {
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: right;
    position: relative;
}

.type-bad {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.type-good {
    background: linear-gradient(135deg, rgba(255, 107, 26, 0.15) 0%, rgba(255, 107, 26, 0.05) 100%);
    border: 1px solid var(--orange);
    box-shadow: 0 12px 30px rgba(255, 107, 26, 0.2);
}

.type-emoji {
    font-size: 36px;
    margin-bottom: 10px;
}

.type-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    border-radius: var(--r-full);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.type-bad .type-tag {
    background: rgba(255, 85, 85, 0.15);
    color: #ff7777;
    border: 1px solid rgba(255, 85, 85, 0.3);
}

.type-good .type-tag {
    background: var(--orange);
    color: var(--white);
}

.type h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.type-good h4 { color: var(--orange-bright); }

.type p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.last-q {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--gray-100); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-item summary:hover { color: var(--orange); }

.faq-plus {
    width: 26px;
    height: 26px;
    background: var(--gray-100);
    color: var(--orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 12px;
}

.faq-item[open] .faq-plus {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-ans {
    padding: 0 20px 18px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.85;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 40px 0 24px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-800);
}

.foot-logo {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    padding: 6px;
    object-fit: contain;
}

.foot-name {
    color: var(--white);
    font-weight: 900;
    font-size: 17px;
    margin-bottom: 2px;
}

.foot-sub {
    font-size: 12px;
    color: var(--gray-500);
}

.foot-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.foot-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-900);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: 13px;
    color: var(--gray-300);
    border: 1px solid var(--gray-800);
    transition: all 0.2s ease;
}

.foot-link:hover {
    border-color: var(--orange);
    color: var(--orange-bright);
}

.foot-bottom {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    padding-top: 18px;
    border-top: 1px solid var(--gray-800);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: transform 0.3s ease;
}

.sticky-left {
    flex: 1;
    min-width: 0;
}

.sticky-price {
    font-size: 16px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1.2;
    font-feature-settings: "tnum";
}

.sticky-price small {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.sticky-old {
    font-size: 11px;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-top: 2px;
    font-feature-settings: "tnum";
}

.sticky-btn {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--r-sm);
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-orange);
    flex-shrink: 0;
}

.sticky-btn span {
    font-size: 18px;
    font-weight: 900;
}

/* ============================================
   TABLET / DESKTOP
   ============================================ */
@media (min-width: 768px) {
    body { padding-bottom: 0; }
    
    .container { max-width: 820px; padding: 0 30px; }
    
    .section { padding: 100px 0; }
    
    .section-title { font-size: 40px; }
    
    /* Hero */
    .hero { min-height: 90vh; }
    
    .hero-image { object-position: center 15%; }
    
    .hero-header { padding: 24px 40px; }
    
    .hero-content { padding: 40px 40px 70px; max-width: 720px; }
    
    .hero-title-1 { font-size: 28px; }
    .hero-title-2 { font-size: 56px; }
    
    .hero-sub { font-size: 18px; max-width: 520px; }
    
    .hero-cta { width: auto; padding: 18px 36px; }
    
    .stat-num { font-size: 30px; }
    .stat-label { font-size: 12px; }
    
    /* Modules */
    .modules-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .mod-special { grid-column: span 2; }
    
    /* Why */
    .why-row { padding: 26px 24px; }
    
    /* Instructor */
    .instructor-card {
        display: flex;
        align-items: center;
        gap: 36px;
        padding: 40px;
        text-align: right;
    }
    
    .instructor-img-wrap {
        width: 200px;
        height: 200px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .instructor-bio { margin: 0; }
    
    /* Offer */
    .offer-card {
        max-width: 560px;
        margin: 0 auto;
        padding: 40px 36px;
    }
    
    .offer-title { font-size: 26px; }
    .price-new-num { font-size: 52px; }
    .cd-num { font-size: 32px; }
    
    /* Last FOMO */
    .last-title { font-size: 38px; }
    
    .types {
        flex-direction: row;
        gap: 18px;
    }
    
    .type { flex: 1; }
    
    /* Footer */
    .foot-contact {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sticky-cta { display: none; }
}

@media (min-width: 1024px) {
    .container { max-width: 1000px; }
    
    .hero-content { padding: 50px 60px 80px; }
    .hero-title-2 { font-size: 64px; }
    
    .section-title { font-size: 46px; }
    
    .modules-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mod-special { grid-column: span 3; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.section-subtitle,
.offer-subtitle,
.lead-sub {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-500);
    margin: -10px 0 26px;
}

.hero-title-dynamic {
    font-size: 38px;
}

.lead-section,
.testimonials,
.guarantee {
    background: var(--white);
}

.lead-card,
.testimonial-card,
.guarantee-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}

.lead-card {
    padding: 26px 22px;
    background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
    border-color: rgba(255, 107, 26, 0.2);
}

.lead-grid,
.testimonial-list,
.guarantee-list {
    display: grid;
    gap: 14px;
}

.lead-field span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 700;
}

.lead-field input {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: var(--r-sm);
    padding: 15px 14px;
    font: inherit;
    background: var(--white);
}

.lead-field input:focus {
    outline: 2px solid rgba(255, 107, 26, 0.22);
    border-color: var(--orange);
}

.lead-cta {
    width: 100%;
    margin-top: 14px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: var(--shadow-orange);
}

.lead-flash {
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    margin-bottom: 14px;
}

.lead-flash.success {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.lead-flash.error {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
}

.testimonial-card,
.guarantee-item {
    padding: 22px 20px;
}

.testimonial-text,
.guarantee-item p,
.guarantee-note {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--gray-600);
}

.testimonial-meta {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-meta strong,
.guarantee-item h3 {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 800;
}

.testimonial-meta span {
    color: var(--gray-500);
    font-size: 13px;
}

.guarantee-list {
    margin-bottom: 16px;
}

.guarantee-note {
    background: rgba(255, 107, 26, 0.08);
    border: 1px dashed rgba(255, 107, 26, 0.35);
    border-radius: var(--r-md);
    padding: 16px 18px;
}

@media (min-width: 768px) {
    .lead-grid,
    .testimonial-list,
    .guarantee-list {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title-dynamic {
        font-size: 56px;
    }
}

/* ============================================
   Polish layer — focus rings, fade-in, scroll
   progress, FAQ motion, print
   ============================================ */

/* Global focus-visible ring (keyboard-only). Overrides the
   reduced-motion reset above because it's purely visual. */
:focus { outline: none; }
:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.45);
    border-radius: 6px;
    transition: box-shadow 0.15s ease;
}
.big-cta:focus-visible,
.hero-cta:focus-visible,
.sticky-cta:focus-visible,
.lead-cta:focus-visible {
    box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.55), 0 12px 30px rgba(255, 107, 26, 0.25);
}

/* Section fade-up: JS toggles .is-visible via IntersectionObserver */
.section {
    opacity: 1;
    transform: none;
}
.section.is-animated {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.section.is-animated.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .section.is-animated {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Scroll progress bar — JS sets --progress on body */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}
.scroll-progress::before {
    content: '';
    display: block;
    height: 100%;
    width: var(--scroll-progress, 0%);
    background: linear-gradient(90deg, var(--orange), var(--orange-bright, #ff8534));
    box-shadow: 0 0 12px rgba(255, 107, 26, 0.6);
    transition: width 0.08s linear;
}

/* FAQ smooth open. <details> can't transition height natively,
   so we animate the inner answer wrapper via a content-grid trick. */
.faq-item[open] .faq-ans {
    animation: faq-open 0.35s ease-out;
}
@keyframes faq-open {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.faq-item summary,
.faq-item .faq-plus {
    transition: color 0.15s ease, transform 0.25s ease;
}
.faq-item[open] .faq-plus {
    transform: rotate(45deg);
}

/* Sticky CTA hide state (toggled by JS when #offer is on-screen) */
.sticky-cta.is-hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}
.sticky-cta {
    transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Print styles */
@media print {
    .ticker,
    .sticky-cta,
    .scroll-progress,
    .hero-cta,
    .big-cta,
    .lead-form,
    .faq-plus,
    .cd-block {
        display: none !important;
    }
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .section {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    a[href]::after {
        content: ' (' attr(href) ')';
        font-size: 11px;
        color: #555;
    }
}

/* ============ Sprint 1: Polish ============ */

/* Skeleton shimmer */
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-image-wrap::before,
.instructor-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, #1a1a1a 8%, #2a2a2a 18%, #1a1a1a 33%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.6s linear infinite;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.instructor-img-wrap::before {
    border-radius: 50%;
    background: linear-gradient(110deg, #eee 8%, #f6f6f6 18%, #eee 33%);
    background-size: 200% 100%;
}

.hero-image-wrap.is-loaded::before,
.instructor-img-wrap.is-loaded::before {
    opacity: 0;
    pointer-events: none;
}

.hero-image,
.instructor-img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-image-wrap.is-loaded .hero-image,
.instructor-img-wrap.is-loaded .instructor-img {
    opacity: 1;
}

/* Tabular numerals for prices/countdown so digits don't jitter */
.price-old-num,
.price-new-num,
.price-saved,
.cd-num,
.sticky-price,
.sticky-old,
.stat-num {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* Press-scale on primary CTAs — the physical click feel */
.hero-cta,
.big-cta,
.lead-cta,
.sticky-cta {
    transition: transform 0.12s cubic-bezier(.2,.7,.3,1), box-shadow 0.2s ease, background 0.2s ease;
}
.hero-cta:active,
.big-cta:active,
.lead-cta:active,
.sticky-cta:active {
    transform: scale(0.97);
}

/* Phone input valid-state checkmark */
.lead-field {
    position: relative;
}
.lead-field input[type="tel"].is-valid {
    padding-left: 36px;
    border-color: #16a34a;
}
.lead-field input[type="tel"].is-valid + .phone-check {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}
.phone-check {
    position: absolute;
    left: 12px;
    top: 68%;
    transform: translateY(-50%) scale(0.6);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(.2,.8,.3,1.2);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-image-wrap::before,
    .instructor-img-wrap::before {
        animation: none;
    }
    .hero-cta,
    .big-cta,
    .lead-cta,
    .sticky-cta {
        transition: none;
    }
    .hero-cta:active,
    .big-cta:active,
    .lead-cta:active,
    .sticky-cta:active {
        transform: none;
    }
}

/* ============ Sprint 2: Conversion Psychology ============ */

/* Price reveal animation — old crosses out, new scales in */
@keyframes price-strike {
    0% { background-size: 0 2px; }
    100% { background-size: 100% 2px; }
}
@keyframes price-pop {
    0% { transform: scale(0.6); opacity: 0; }
    60% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes price-saved-in {
    0% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.offer-price-block .price-old,
.offer-price-block .price-new-num,
.offer-price-block .price-new-label,
.offer-price-block .price-saved {
    opacity: 0;
}

.offer-price-block.is-revealing .price-old {
    opacity: 1;
    text-decoration: none;
    background-image: linear-gradient(var(--orange), var(--orange));
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 0 2px;
    animation: price-strike 0.7s 0.1s ease forwards;
}
.offer-price-block.is-revealing .price-new-num,
.offer-price-block.is-revealing .price-new-label {
    animation: price-pop 0.55s 0.75s cubic-bezier(.2,.9,.3,1.3) forwards;
}
.offer-price-block.is-revealing .price-saved {
    animation: price-saved-in 0.5s 1.15s ease forwards;
}

/* Scarcity seat counter */
.scarcity-counter {
    margin: 14px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.08);
    color: #b91c1c;
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(239, 68, 68, 0.2);
    max-width: fit-content;
}
.scarcity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: scarcity-pulse 1.8s infinite;
}
.scarcity-counter strong {
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    font-size: 15px;
}
@keyframes scarcity-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
@keyframes scarcity-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}
.scarcity-counter.is-critical {
    background: rgba(239, 68, 68, 0.15);
    animation: scarcity-shake 0.6s ease-in-out infinite;
    animation-duration: 2.4s;
}

/* Gradient border glow on primary CTA — conic-rotate */
@keyframes cta-border-spin {
    0% { --cta-angle: 0deg; }
    100% { --cta-angle: 360deg; }
}
@property --cta-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
.big-cta {
    isolation: isolate;
}
.big-cta::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: inherit;
    background: conic-gradient(from var(--cta-angle),
        var(--orange-bright),
        #fff6,
        var(--orange-deep),
        var(--orange-bright));
    animation: cta-border-spin 4s linear infinite;
    filter: blur(2px);
    opacity: 0.65;
}

/* Heading text shimmer — one-time sweep */
@keyframes heading-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -50% 0; }
}
.hero-title.is-shimmer,
.offer-title.is-shimmer {
    background: linear-gradient(100deg,
        currentColor 0%,
        currentColor 40%,
        #ffd38a 50%,
        currentColor 60%,
        currentColor 100%);
    background-size: 200% 100%;
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heading-shimmer 1.6s ease-out forwards;
}

/* Ambient offer glow — breathing radial behind the card */
.section.offer { position: relative; overflow: hidden; }
.section.offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%,
        rgba(255, 107, 26, 0.18) 0%,
        rgba(255, 107, 26, 0.05) 35%,
        transparent 65%);
    pointer-events: none;
    animation: offer-breathe 4.5s ease-in-out infinite;
    z-index: 0;
}
.section.offer .container { position: relative; z-index: 1; }
@keyframes offer-breathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

/* Guarantee seal — rotating SVG badge */
.guarantee-seal {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    display: block;
}
.guarantee-seal svg { display: block; width: 100%; height: 100%; }
.guarantee-seal .seal-ring { animation: seal-rotate 18s linear infinite; transform-origin: 50% 50%; }
.guarantee-seal .seal-core {
    transform-origin: 50% 50%;
    animation: seal-pulse 3s ease-in-out infinite;
}
@keyframes seal-rotate {
    to { transform: rotate(360deg); }
}
@keyframes seal-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .offer-price-block .price-old,
    .offer-price-block .price-new-num,
    .offer-price-block .price-new-label,
    .offer-price-block .price-saved { opacity: 1; animation: none; }
    .big-cta::before,
    .section.offer::before,
    .scarcity-dot,
    .scarcity-counter.is-critical,
    .guarantee-seal .seal-ring,
    .guarantee-seal .seal-core,
    .hero-title.is-shimmer,
    .offer-title.is-shimmer { animation: none; }
    .hero-title.is-shimmer,
    .offer-title.is-shimmer { -webkit-text-fill-color: currentColor; background: none; }
}

/* ============ Sprint 3: Heavyweight features ============ */

/* Comparison slider */
.compare-slider {
    position: relative;
    max-width: 560px;
    margin: 24px auto 0;
    border-radius: var(--r-md);
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    aspect-ratio: 16 / 10;
    background: #111;
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    cursor: ew-resize;
}
.compare-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
}
.compare-after-wrap {
    position: absolute;
    inset: 0;
    clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0);
}
.compare-after-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.compare-label {
    position: absolute;
    top: 14px;
    padding: 6px 12px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    pointer-events: none;
}
.compare-label.before { right: 14px; }
.compare-label.after { left: 14px; background: rgba(255,107,26,0.9); }
.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-pos, 50%);
    width: 3px;
    margin-left: -1.5px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 4px 20px rgba(0,0,0,0.35);
}
.compare-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-deep);
    font-size: 18px;
    font-weight: 900;
}

/* Live social proof ticker */
.social-proof-toast {
    position: fixed;
    bottom: 100px;
    left: 16px;
    max-width: 280px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12.5px;
    z-index: 50;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(.2,.9,.3,1.2), opacity 0.3s ease;
}
.social-proof-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}
.social-proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}
.social-proof-body strong {
    display: block;
    color: var(--gray-900);
    font-weight: 800;
    font-size: 13px;
}
.social-proof-body span {
    color: var(--gray-600);
    font-size: 11.5px;
}

/* Exit-intent modal */
.exit-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.72);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.exit-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}
.exit-modal {
    background: var(--white);
    border-radius: var(--r-lg);
    max-width: 420px;
    width: 100%;
    padding: 28px 24px;
    position: relative;
    text-align: center;
    transform: scale(0.85) translateY(20px);
    transition: transform 0.4s cubic-bezier(.2,.9,.3,1.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.exit-modal-backdrop.is-open .exit-modal {
    transform: scale(1) translateY(0);
}
.exit-modal h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.exit-modal p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 14.5px;
}
.exit-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
    color: #fff;
    padding: 14px 26px;
    border-radius: var(--r-md);
    font-weight: 800;
    font-size: 15px;
    box-shadow: var(--shadow-orange);
}
.exit-modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}
.exit-modal-badge {
    display: inline-block;
    background: rgba(255,107,26,0.12);
    color: var(--orange-deep);
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* Testimonial carousel */
.testimonial-list.is-carousel {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.testimonial-list.is-carousel::-webkit-scrollbar { display: none; }
.testimonial-list.is-carousel .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.testimonial-dot.is-active {
    background: var(--orange);
    transform: scale(1.4);
}

@media (prefers-reduced-motion: reduce) {
    .social-proof-toast,
    .exit-modal-backdrop,
    .exit-modal,
    .testimonial-list.is-carousel {
        transition: none;
    }
}

/* ============ Sprint 4: Premium micro-interactions ============ */

/* Card tilt — perspective on hover */
.mod, .testimonial-card, .type, .guarantee-item, .why-row {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(.2,.8,.3,1);
    will-change: transform;
}
.mod[data-tilt], .testimonial-card[data-tilt], .type[data-tilt], .guarantee-item[data-tilt], .why-row[data-tilt] {
    transform: perspective(900px)
               rotateX(var(--tilt-x, 0deg))
               rotateY(var(--tilt-y, 0deg))
               translateZ(0);
}

/* Magnetic CTA — translates toward cursor */
.hero-cta, .big-cta, .lead-cta {
    transform: translate(var(--mag-x, 0), var(--mag-y, 0));
}
.hero-cta:active, .big-cta:active, .lead-cta:active {
    transform: translate(var(--mag-x, 0), var(--mag-y, 0)) scale(0.97);
}

/* Stagger reveal — children of .section.is-visible fade up with delay */
.section.is-animated .container > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.8,.3,1);
}
.section.is-animated.is-visible .container > * {
    opacity: 1;
    transform: translateY(0);
}
.section.is-animated.is-visible .container > *:nth-child(1) { transition-delay: 0ms; }
.section.is-animated.is-visible .container > *:nth-child(2) { transition-delay: 80ms; }
.section.is-animated.is-visible .container > *:nth-child(3) { transition-delay: 160ms; }
.section.is-animated.is-visible .container > *:nth-child(4) { transition-delay: 240ms; }
.section.is-animated.is-visible .container > *:nth-child(5) { transition-delay: 320ms; }
.section.is-animated.is-visible .container > *:nth-child(6) { transition-delay: 400ms; }

/* Ripple effect on CTA tap */
.hero-cta, .big-cta, .lead-cta, .sticky-cta, .exit-modal-cta {
    position: relative;
    overflow: hidden;
}
.cta-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transform: scale(0);
    animation: ripple-grow 0.7s ease-out forwards;
    pointer-events: none;
}
@keyframes ripple-grow {
    to { transform: scale(2.4); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .mod, .testimonial-card, .type, .guarantee-item, .why-row,
    .section.is-animated .container > * {
        transition: none;
        transform: none !important;
    }
    .cta-ripple { animation: none; display: none; }
}

/* ============ Sprint 5: Trust layer ============ */

/* Hero rating row */
.rating-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-full);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.rating-stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 14px;
}
.rating-row strong {
    font-weight: 900;
    font-size: 15px;
}
.rating-count {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Verified testimonial badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    border-radius: 50%;
    background: #1d9bf0;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    vertical-align: middle;
}

/* Payment method icons row */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 12px;
}
.payment-icon {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--r-sm);
    font-size: 11.5px;
    font-weight: 700;
    border: 1px solid var(--gray-200);
}

/* ===== Phase F: View Transitions ===== */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.35s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) { animation: none; }
}

/* ===== Phase F: image fade-in (LQIP-lite) ===== */
img[data-fade] {
    opacity: 0;
    transition: opacity 0.5s ease;
}
img[data-fade].is-loaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    img[data-fade] { opacity: 1; transition: none; }
}

/* ===== Videos section (Aparat) ===== */
.videos-section { padding: 60px 0; }
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.video-card { margin: 0; }
.video-frame-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-md);
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background-color: #111;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}
.video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.video-poster:hover { transform: scale(1.02); }
.video-play-btn {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 107, 26, 0.95);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 26, 0.5);
    transition: transform 0.3s ease;
}
.video-poster:hover .video-play-btn { transform: scale(1.1); }
.video-card figcaption {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
}
@media (prefers-reduced-motion: reduce) {
    .video-poster, .video-play-btn { transition: none; }
}

/* ============================================================
   Phase 4 modules — hero variants, banner, panels, logos, pricing
   ============================================================ */

/* Hero: full-bleed */
.hero.hero-fullbleed {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero.hero-fullbleed .hero-bleed-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.hero.hero-fullbleed .hero-bleed-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.hero.hero-fullbleed .hero-bleed-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 40px 24px;
    text-align: center;
}
.hero.hero-fullbleed .hero-title { color: #fff; font-size: clamp(1.8rem, 5vw, 3.2rem); }
.hero.hero-fullbleed .hero-sub { color: rgba(255,255,255,0.85); margin-block: 12px 24px; }

/* Hero: centered with badges */
.hero.hero-centered {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(180deg, #fafcff 0%, #f1f4fa 100%);
}
.hero.hero-centered .hero-centered-inner {
    max-width: 720px; margin-inline: auto;
}
.hero.hero-centered .hero-badges {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-block-end: 20px;
}
.hero.hero-centered .hero-badge-pill {
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e1e7f2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #2f3a4d;
}
.hero.hero-centered .hero-title { font-size: clamp(1.8rem, 5vw, 3rem); margin-block: 8px 14px; }

/* Hero: video background */
.hero.hero-video {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.hero.hero-video .hero-video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero.hero-video .hero-bleed-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
}
.hero.hero-video .hero-bleed-content {
    position: relative; z-index: 2; max-width: 720px; padding: 40px 24px; text-align: center;
}
.hero.hero-video .hero-title { color: #fff; font-size: clamp(1.8rem, 5vw, 3rem); }
.hero.hero-video .hero-sub { color: rgba(255,255,255,0.85); }

/* Announcement bar */
.announcement-bar {
    background: linear-gradient(90deg, #ff6b1a, #ff8a3d);
    color: #fff;
    padding: 10px 16px;
}
.announcement-bar[hidden] { display: none; }
.announcement-bar .ann-inner {
    max-width: 1200px; margin-inline: auto;
    display: flex; align-items: center; gap: 14px;
    font-size: 14px;
}
.announcement-bar .ann-tag {
    padding: 2px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.announcement-bar .ann-text { flex: 1; font-weight: 600; }
.announcement-bar .ann-cta {
    color: #fff; font-weight: 700; text-decoration: none;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
    transition: background 0.15s;
}
.announcement-bar .ann-cta:hover { background: rgba(255,255,255,0.3); }
.announcement-bar .ann-close {
    width: 28px; height: 28px; border-radius: 50%;
    border: 0; background: rgba(255,255,255,0.15); color: #fff;
    font-size: 18px; cursor: pointer; font-family: inherit;
}
.announcement-bar .ann-close:hover { background: rgba(255,255,255,0.3); }

/* Feature grid */
.feature-grid-section {
    padding-block: 60px;
}
.feature-grid-section .fg-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-block-start: 32px;
}
.feature-grid-section .fg-item {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--gray-200, #e1e7f2);
    border-radius: 14px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.feature-grid-section .fg-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feature-grid-section .fg-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,107,26,0.1);
    border-radius: 12px;
    font-size: 22px;
    margin-block-end: 14px;
}
.feature-grid-section .fg-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900, #18212f);
}
.feature-grid-section .fg-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-600, #64748b);
}

/* Logo wall */
.logo-wall-section { padding-block: 50px; }
.logo-wall-section .lw-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-block-start: 28px;
    opacity: 0.75;
}
.logo-wall-section .lw-cell {
    flex: 0 0 auto;
    filter: grayscale(100%);
    transition: filter 0.2s, opacity 0.2s;
    opacity: 0.7;
}
.logo-wall-section .lw-cell:hover {
    filter: grayscale(0);
    opacity: 1;
}
.logo-wall-section .lw-cell img {
    height: 40px;
    width: auto;
    display: block;
}

/* Pricing tiers */
.pricing-tiers-section { padding-block: 60px; }
.pricing-tiers-section .pt-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-block-start: 32px;
    align-items: stretch;
}
.pricing-tiers-section .pt-card {
    position: relative;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--gray-200, #e1e7f2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
}
.pricing-tiers-section .pt-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.pricing-tiers-section .pt-card.is-featured {
    border-color: #ff6b1a;
    box-shadow: 0 20px 50px rgba(255,107,26,0.18);
    transform: scale(1.03);
}
.pricing-tiers-section .pt-badge {
    position: absolute;
    inset-block-start: -12px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: #ff6b1a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
}
.pricing-tiers-section .pt-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900, #18212f);
}
.pricing-tiers-section .pt-price {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b1a;
    margin-block-end: 4px;
}
.pricing-tiers-section .pt-currency { font-size: 14px; font-weight: 600; color: var(--gray-700, #2f3a4d); }
.pricing-tiers-section .pt-note { font-size: 12px; color: var(--gray-600, #64748b); margin-block-end: 18px; }
.pricing-tiers-section .pt-features {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.pricing-tiers-section .pt-features li {
    font-size: 13px;
    color: var(--gray-700, #2f3a4d);
    line-height: 1.5;
}
.pricing-tiers-section .pt-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: var(--gray-100, #f1f4fa);
    color: var(--gray-900, #18212f);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s;
}
.pricing-tiers-section .pt-card.is-featured .pt-cta {
    background: #ff6b1a;
    color: #fff;
}
.pricing-tiers-section .pt-cta:hover { transform: translateY(-1px); }

@media (max-width: 768px) {
    .pricing-tiers-section .pt-card.is-featured { transform: none; }
    .hero.hero-fullbleed, .hero.hero-video { min-height: 60vh; }
}
