:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(25, 25, 35, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-blue: #00d2ff;
    --accent-purple: #3a7bd5;
    --accent-glow: rgba(0, 210, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Typography Details */
.text-gradient {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--accent-glow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-large {
    font-size: 1.5rem;
    padding: 20px 50px;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.btn-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.btn-pill:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--accent-blue);
    color: #fff;
    transform: translateY(-2px);
}
/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    border-radius: 0 0 40px 40px;
    margin-bottom: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 210, 255, 0.12) 0%, rgba(58, 123, 213, 0.06) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

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

.hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--accent-purple);
    border-right: 2px solid var(--accent-purple);
    transform: rotate(45deg);
    margin: -4px auto;
    animation: scroll-arrow 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

@keyframes scroll-arrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 60px 0;
}

.hero-top {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent-blue);
}

.typewrap {
    color: var(--accent-blue);
    display: inline-block;
    min-width: 150px;
    text-align: left;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Horizontal Timeline in Hero */
.hero-benefits {
    margin-bottom: 50px;
}

.horizontal-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}

.timeline-track {
    position: absolute;
    top: 52px; /* Center of the meta verification badge assuming 24px height + 40px padding */
    left: 16.666%;
    right: 16.666%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.benefit-card {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.timeline-node {
    width: 24px;
    height: 24px;
    background: transparent;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}



.benefit-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.link-selengkapnya {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.link-selengkapnya:hover {
    text-decoration: underline;
}

.hero-cta {
    text-align: center;
}

/* TIPS SECTION */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.step-num {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tips-warning {
    text-align: center;
    border-left: 4px solid var(--accent-purple);
    background: rgba(58, 123, 213, 0.1);
}

.tips-warning p {
    font-weight: 600;
    color: #ffd700;
}

/* PRICING TABLE */
.pricing-table ul {
    list-style: none;
}

.pricing-table li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.pricing-table li:last-child {
    border-bottom: none;
}

.total-value {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid var(--accent-blue);
    font-size: 1.2rem;
    font-weight: bold;
}

.highlight-value {
    color: var(--accent-blue);
}

.announcement-box {
    margin: 60px auto 0;
    text-align: center;
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.97) 0%, rgba(25, 15, 40, 0.97) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 0 60px rgba(120, 40, 200, 0.25), 0 0 20px rgba(0, 210, 255, 0.1);
    overflow: hidden;
    max-width: 720px;
}

.announcement-shine {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    animation: shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0%   { left: -120%; }
    20%  { left: 160%;  }
    100% { left: 160%;  }
}

.announce-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff0f7b, #f89b29);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.announcement-box .accent-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.announce-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* 90% Discount Circle Badge */
.discount-hero {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
}

.discount-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0f7b 0%, #f89b29 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255, 15, 123, 0.5), 0 0 20px rgba(248, 155, 41, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%   { box-shadow: 0 0 50px rgba(255, 15, 123, 0.5), 0 0 20px rgba(248, 155, 41, 0.4); }
    50%  { box-shadow: 0 0 80px rgba(255, 15, 123, 0.8), 0 0 40px rgba(248, 155, 41, 0.7); }
    100% { box-shadow: 0 0 50px rgba(255, 15, 123, 0.5), 0 0 20px rgba(248, 155, 41, 0.4); }
}

.discount-off {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.discount-label {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Price Display */
.price-display {
    margin: 20px 0 25px;
}

.strike-price {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* Main CTA Button */
.btn-cta-main {
    display: inline-block;
    margin: 25px 0 15px;
    padding: 20px 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #ff0f7b, #f89b29, #ff0f7b);
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 15, 123, 0.5);
    transition: all 0.4s ease;
    animation: shimmer-btn 3s linear infinite;
}

@keyframes shimmer-btn {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.btn-cta-main:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 15, 123, 0.7);
}

.announce-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
    opacity: 0.7;
}

/* Check list in announcement */
.announcement-box .check-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 20px 0 10px;
    padding: 0;
}

.announcement-box .check-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}



.accent-title {
    color: var(--accent-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.link-progress {
    color: var(--accent-purple);
    text-decoration: underline;
}

.countdown-wrapper {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: inline-block;
}

.countdown {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin: 10px 0;
}

.countdown div {
    display: flex;
    flex-direction: column;
}

.countdown span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.timer-date {
    color: var(--text-secondary);
    font-style: italic;
}

.price-display {
    margin: 20px 0 25px;
}

.strike-price {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.final-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.price-guarantee .check-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}

.price-guarantee .check-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.check-icon {
    color: var(--accent-blue);
    margin-right: 10px;
    font-weight: bold;
}

/* VIDEO SECTION */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* TIMELINE SECTION (A-Z) */
.vertical-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* The vertical center line */
.vertical-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue));
    top: 0;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    width: 100%;
    padding: 24px 0;
    position: relative;
}

/* Letter dot — sits exactly on the center line */
.timeline-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    top: 24px;
    left: 40%;
    transform: translateX(-50%);
    box-shadow: 0 0 16px var(--accent-glow);
    z-index: 2;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content: left image col + right text col, separated by the line */
.timeline-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

/* LEFT COLUMN — image + badge, occupies 0 to 40% minus half-dot gap */
.thumb-col {
    width: 40%;
    padding-right: 36px; /* breathing room before the dot */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

.thumb-col .thumb {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 1px rgba(0, 210, 255, 0.08),
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 210, 255, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: block;
}

.thumb-col .thumb:hover {
    box-shadow:
        0 0 0 2px rgba(0, 210, 255, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 35px rgba(0, 210, 255, 0.2);
    transform: scale(1.02);
}

/* RIGHT COLUMN — text, occupies 40% to 100% */
.content-text {
    flex: 1;
    padding-left: 36px; /* breathing room after the dot */
    min-width: 0;
}

.content-text h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.content-text h3 strong, .content-text h3 span {
    color: var(--accent-blue);
}

.content-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* STATUS BADGES */
.status-badge {
    margin-top: 16px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
}

.status-badge.released {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 120, 0.12);
    border: 1px solid rgba(0, 210, 120, 0.35);
    color: #00d278;
    padding: 8px 18px;
    border-radius: 50px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d278;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #00d278;
    animation: blink-green 1.5s ease-in-out infinite;
}

@keyframes blink-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-badge.in-progress {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.progress-pct {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50px;
    position: relative;
    animation: fill-grow 1.4s ease-out forwards;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 10px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-blue);
}

@keyframes fill-grow {
    from { width: 0 !important; }
}

.progress-eta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 4px;
    opacity: 0.7;
}

/* CLOSING SECTION */
.decisions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.decision-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    max-width: 400px;
    padding: 30px;
}

.decision-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.decision-card:hover {
    border-color: var(--accent-blue);
}

.decision-card.active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-glow);
}

.final-offer {
    margin-top: 50px;
}

.final-offer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


/* RESPONSIVE CSS */
@media screen and (max-width: 900px) {

    /* === GLOBAL === */
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .mb-16 {
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 16px;
    }

    /* === HERO (standalone on mobile) === */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0 0;
        border-radius: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-top {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 1rem;
        margin-top: 16px;
    }

    /* === BENEFITS SECTION (separate on mobile) === */
    .benefits-section {
        padding: 80px 0;
    }

    .benefits-section .section-subtitle {
        margin-bottom: 30px;
    }

    .horizontal-timeline {
        flex-direction: column;
        gap: 0;
        padding-top: 0;
        padding-left: 40px;
        position: relative;
    }

    /* Vertical track line on mobile */
    .timeline-track {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 12px;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue));
    }

    /* Meta checkmarks on the line */
    .timeline-node {
        display: flex;
        position: absolute;
        left: -40px;
        top: 0;
        margin: 0;
        width: 26px;
        height: 26px;
        background: var(--bg-dark);
        border-radius: 50%;
        z-index: 2;
    }

    .timeline-node svg {
        width: 26px;
        height: 26px;
    }

    .benefit-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0 40px 0;
        text-align: left;
        position: relative;
    }

    .benefit-card:last-child {
        padding-bottom: 0;
    }

    .benefit-card img {
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px 0;
        border-radius: 16px;
    }

    .benefit-card p {
        font-size: 0.95rem;
        text-align: left;
        padding: 0;
    }

    .benefit-card .btn-pill {
        margin-top: 10px;
    }

    /* === TIPS SECTION === */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 16px;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .step-num {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: -10px;
        left: -10px;
    }

    .tips-warning {
        padding: 20px;
    }

    .tips-warning p {
        font-size: 0.9rem;
    }

    /* === PRICING TABLE === */
    .pricing-table li {
        font-size: 0.9rem;
        padding: 12px 0;
    }

    .total-value {
        font-size: 1rem;
    }

    /* === ANNOUNCEMENT / CTA BOX === */
    .announcement-box {
        padding: 40px 20px;
        border-radius: 20px;
        margin-top: 40px;
    }

    .announcement-box .accent-title {
        font-size: 2rem;
    }

    .announce-desc {
        font-size: 0.95rem;
    }

    .discount-circle {
        width: 120px;
        height: 120px;
    }

    .discount-off {
        font-size: 2.5rem;
    }

    .discount-label {
        font-size: 0.8rem;
    }

    .final-price {
        font-size: 2.8rem;
    }

    .strike-price {
        font-size: 1.1rem;
    }

    .btn-cta-main {
        padding: 16px 30px;
        font-size: 1.15rem;
        width: 100%;
    }

    .countdown {
        font-size: 1.4rem;
        gap: 10px;
    }

    .countdown-wrapper {
        padding: 15px;
    }

    /* === VERTICAL TIMELINE (Curriculum A-Z) === */
    .vertical-timeline::after {
        left: 16px;
        transform: none;
    }

    .timeline-item {
        padding: 20px 0 20px 48px;
    }

    .timeline-dot {
        left: 16px;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        top: 20px;
        transform: translateX(-50%);
    }

    .timeline-content {
        flex-direction: column;
        gap: 14px;
    }

    .thumb-col {
        width: 100%;
        padding-right: 0;
    }

    .thumb-col .thumb {
        width: 100%;
    }

    .content-text {
        width: 100%;
        padding-left: 0;
    }

    .content-text h3 {
        font-size: 1.2rem;
    }

    .content-text p {
        font-size: 0.92rem;
    }

    /* === CLOSING SECTION === */
    .decisions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .decision-card {
        padding: 20px;
        max-width: 100%;
    }

    .final-offer .btn-primary {
        width: 100%;
        font-size: 1.1rem;
        padding: 16px 30px;
    }

    .final-offer p {
        font-size: 1rem;
    }

    /* Glass panel adjustments */
    .glass-panel {
        padding: 20px;
    }

    /* Large buttons full width */
    .btn-large {
        font-size: 1.2rem;
        padding: 16px 30px;
        width: 100%;
    }
}

/* Extra small screens (phones in portrait) */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .announcement-box .accent-title {
        font-size: 1.6rem;
    }

    .discount-circle {
        width: 100px;
        height: 100px;
    }

    .discount-off {
        font-size: 2rem;
    }

    .final-price {
        font-size: 2.2rem;
    }

    .benefit-card img {
        max-width: 80%;
    }

    .countdown {
        font-size: 1.2rem;
        gap: 8px;
    }

    .btn-cta-main {
        font-size: 1rem;
        padding: 14px 20px;
    }
}

/* Leftover utility classes (kept outside media queries) */
.discount-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff0055, #ff5500);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
    letter-spacing: 1px;
}

.btn-premium {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.4);
}

