:root {
    /* Design System: Modern Editorial */
    
    /* Color Palette */
    --primary-color: #0A0A0A; /* Black - Text & Headings */
    --primary-light: #6B6B6B; /* Gray - Body Text */
    
    --accent-color: #FF5C39; /* Coral - Primary Action/Buttons */
    --accent-hover: #FF6B4A; /* Light Coral */
    
    --secondary-color: #F8F8F8; /* Off-white - Secondary Backgrounds */
    
    --bg-color: #FFFFFF; /* White - Main Background */
    --bg-secondary: #F8F8F8; /* Off-white - Section Backgrounds */
    --bg-tertiary: #F5F5F5;
    
    --text-color: #0A0A0A;
    --text-light: #6B6B6B;
    --border-color: rgba(0,0,0,0.08);
    
    --white: #ffffff;
    
    /* UI Tokens */
    --radius: 24px; /* Rounded corners */
    --shadow: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.08);
    --border: 1px solid var(--border-color);
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
    height: auto;
}

section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
    padding: 6rem 0; /* Standard section padding */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    line-height: 1.15;
}

.section-title {
    font-size: 3.5rem; /* h1 size */
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--accent-color); /* Coral to match reference style */
    color: #FFFFFF;
    text-align: center;
    padding: 0.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    background: var(--bg-color);
    color: var(--text-color);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.hero-avatars {
    display: flex;
    padding-left: 10px; /* Offset for overlap */
}

.hero-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.hero-social-proof p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.hero-image-container {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 1.7rem; /* Hero scale */
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero .highlight {
    color: var(--accent-color); /* Coral */
    font-style: normal;
    font-weight: 800;
}

.hero .highlight::after {
    display: none;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    margin-top: 3rem;
}

.offer-timer {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #5df06c; /* Black primary button */
    color: #1d1d1d;
    padding: 1rem 2.5rem;
    border-radius: 100px; /* Pill shape */
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    width: auto;
    min-width: 200px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: #4ecd5f;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.cta-button-secondary {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    color: var(--text-light);
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}

.cta-button-secondary:hover {
    background: #e0e0e0;
    color: var(--text-color);
    border-color: #ccc;
}
/* Pricing Button Override */
.pricing .cta-button {
    background: #0A0A0A;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: none; /* Remove pulse for cleaner look */
}

.pricing .cta-button:hover {
    background: #000000;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.lifetime-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    border: none;
}

/* Pulse Animation - Subtle */
@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Features (Course Content) */
.features {
    padding: 8rem 0;
    background: var(--bg-color);
    border-top: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.feature-item {
    text-align: left; /* Editorial style */
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-item:hover {
    background: #FFFFFF;
    border-color: rgba(0,0,0,0.08);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-item i {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    background: var(--accent-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item p {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Instructor */
.instructor {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.instructor-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.instructor-img-wrapper {
    width: 240px;
    height: 240px;
    border-radius: var(--radius); 
    overflow: hidden;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow);
}

.instructor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.instructor-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.instructor-text .role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* Modules (Flat List) */
.modules-section {
    padding: 8rem 0;
    background: var(--white);
}

.module-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.module-item:hover {
    border-color: rgba(0,0,0,0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.module-number {
    background: var(--primary-color);
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    border: none;
}

.module-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.module-item p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Deliverables (Ebooks) */
.deliverables-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.ebook-card {
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ebook-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.ebook-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.bonus-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    transform: none;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    letter-spacing: 0.05em;
}

.ebook-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    margin-top: 0;
    padding: 0;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.ebook-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.bonus-value {
    margin-top: 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.bonus-value .strike {
    text-decoration: line-through;
    color: var(--text-light);
    opacity: 0.6;
}

.bonus-value .free {
    color: var(--accent-color);
    font-weight: 700;
    background: rgba(255, 92, 57, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Certificate */
.certificate-section {
    padding: 8rem 0;
    background: #0A0A0A;
    color: white;
    text-align: center;
}

.certificate-section h2 {
    color: white;
}

.certificate-img {
    max-width: 800px;
    width: 100%;
    margin: 4rem auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Pricing */
.pricing {
    padding: 8rem 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.pricing-header {
    background: #0A0A0A;
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    font-size: 1.75rem;
}

.pricing-body {
    padding: 3rem 2rem;
    text-align: center;
}

.product-list {
    text-align: left;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.product-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    opacity: 0.7;
}

.total-value-row {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.total-strike {
    text-decoration: none;
    color: var(--primary-color);
}

.price-box {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color); /* Coral for price */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 2rem 0;
    letter-spacing: -0.03em;
}

.currency {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.payment-type {
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.payment-methods {
    margin-top: 2.5rem;
    font-size: 1.75rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0.6;
}

/* Black Friday Coupon Box in Pricing */
.blackfriday-coupon-box {
    background: #0A0A0A;
    border: none;
    border-radius: 24px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: none;
}

.blackfriday-badge {
    background: var(--accent-color);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: none;
    animation: none;
}

.coupon-instruction {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.coupon-instruction strong {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.final-price-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.final-label {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.final-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #FFFFFF;
    font-weight: 800;
}

.final-currency {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.final-amount {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    text-shadow: none;
}

.savings-text {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    animation: none;
}

/* Guarantee */
.guarantee-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: var(--border);
}

.guarantee-badge {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.guarantee-badge:hover {
    transform: scale(1.05);
}

/* Gift Button & Modal Styles */
.gift-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.gift-button:hover {
    transform: scale(1.1);
}

.gift-button.hidden {
    display: none;
}

.gift-icon {
    font-size: 24px;
    color: var(--accent-color);
    z-index: 2;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    z-index: 1;
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s;
    transform-origin: 50% 50%;
    stroke: var(--accent-color);
}

/* Modal Styles */
.gift-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gift-modal.active {
    display: flex;
    opacity: 1;
}

.gift-modal-content {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.gift-modal h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.gift-modal p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Card Game Styles */
.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto 2rem;
    perspective: 1000px;
}

.lucky-card {
    background-color: transparent;
    width: 100%;
    aspect-ratio: 3/4;
    perspective: 1000px;
    cursor: pointer;
}

.lucky-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 16px;
}

.lucky-card.flipped .lucky-card-inner {
    transform: rotateY(180deg);
}

.lucky-card-front, .lucky-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

/* Front Styling - More stylized */
.lucky-card-front {
    background: linear-gradient(135deg, #2c2624 0%, #1a1614 100%);
    border: 2px solid #d8755f;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.lucky-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d8755f' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.lucky-card-front i {
    font-size: 1.8rem;
    color: #d8755f;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.lucky-card:hover .lucky-card-front i {
    transform: scale(1.1);
}

/* Back Styling */
.lucky-card-back {
    background-color: #fff;
    color: #2c2624;
    transform: rotateY(180deg);
    border: 2px solid #e0e0e0;
    padding: 1rem;
}

.lucky-card-back .discount-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.lucky-card-back .discount-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

/* Winner Card Styling - Highlighted */
.lucky-card-back.winner {
    background: linear-gradient(135deg, #d8755f 0%, #c05540 100%);
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(216, 117, 95, 0.4);
}

.lucky-card-back.winner .discount-label {
    color: rgba(255,255,255,0.8);
}

.segment-text {
    display: none; /* Hide text for cleaner look like reference */
}

/* Pointer - black triangle at top */
.roulette-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 38px solid #2d2d2d;
    z-index: 100;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.roulette-pointer::after {
    content: '';
    position: absolute;
    top: -38px;
    left: -18px;
    width: 36px;
    height: 36px;
    background: #2d2d2d;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Central Spin Button */
.spin-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
}

.spin-button {
    background: linear-gradient(135deg, #FF3B3B 0%, #E63946 100%);
    color: #fff;
    border: 6px solid #fff;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 
        0 0 0 3px #FF3B3B,
        0 6px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 
            0 0 0 3px #FF3B3B,
            0 6px 20px rgba(0,0,0,0.4);
    }
    50% {
        box-shadow: 
            0 0 0 3px #FF3B3B,
            0 0 25px rgba(255, 59, 59, 0.7),
            0 6px 25px rgba(0,0,0,0.5);
        transform: scale(1.05);
    }
}

.spin-button:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #E63946 0%, #FF3B3B 100%);
}

.spin-button:disabled {
    background: #999;
    cursor: not-allowed;
    animation: none;
    box-shadow: 0 0 0 3px #666, 0 4px 12px rgba(0,0,0,0.3);
    border-color: #ccc;
}

/* Result Box */
.result-box {
    display: none;
    animation: fadeIn 0.5s ease;
}

.result-box.active {
    display: block;
}

.result-box h3 {
    color: #FF3B3B;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.result-box strong {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.claim-button {
    background: linear-gradient(135deg, #36E38C 0%, #2BC476 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(54, 227, 140, 0.4);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 227, 140, 0.6);
}

.timer-box {
    background: linear-gradient(135deg, #f0e5d3 0%, #e6dbc9 100%);
    padding: 1.2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.timer-countdown {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 900;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social Proof */
.social-proof-section {
    padding: 8rem 0;
    background: var(--white);
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .whatsapp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .whatsapp-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.whatsapp-print {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    border: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.whatsapp-print:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-print img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.whatsapp-print::after {
    display: none;
}

/* FAQ */
.faq {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.accordion-item:first-child {
    border-top: none;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: transparent;
    border: none;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-header:hover {
    color: var(--accent-color);
    background: transparent;
}

.accordion-header i {
    font-size: 1rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.accordion-content p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.accordion-item.active {
    box-shadow: var(--shadow-hover);
}

.accordion-item.active .accordion-header {
    color: var(--accent-color);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .accordion-header {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-content p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
}    

/* Footer */
footer {
    background: var(--white);
    color: var(--text-color);
    padding: 6rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
    margin-top: 2rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 5.5rem;
    }
    
    .instructor-content {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }
    
    .instructor-text {
        text-align: left;
    }
}
/* Pulse Animation for CTA */
@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(54, 227, 140, 0.7); /* Green #36E38C */
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(54, 227, 140, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(54, 227, 140, 0);
    }
}

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

/* Soap Types Section */
.soap-types-section {
    padding: 8rem 0;
    background: var(--bg-color);
}

.soap-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .soap-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.soap-type-card {
    background: var(--white);
    border-radius: var(--radius);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow);
}

.soap-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Header Section */
.soap-type-header {
    padding: 2rem 2rem 1.5rem;
    background: var(--white);
    border-bottom: none;
    position: relative;
}

.soap-type-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.soap-type-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

/* Image Section */
.soap-type-image {
    width: 100%;
    aspect-ratio: 4 / 3; /* Changed from 1:1 */
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

.soap-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 0;
}

.soap-type-card:hover .soap-type-image img {
    transform: scale(1.05);
}

/* Content Section */
.soap-type-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.soap-type-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.soap-type-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.soap-type-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 500;
}

.soap-type-benefits li i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Animation on scroll */
.soap-type-card {
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
}

.soap-type-card:nth-child(1) { animation-delay: 0.1s; }
.soap-type-card:nth-child(2) { animation-delay: 0.2s; }
.soap-type-card:nth-child(3) { animation-delay: 0.3s; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .soap-type-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .soap-type-header h3 {
        font-size: 1.5rem;
    }
    
    .soap-type-content {
        padding: 1.5rem;
    }

    /* Optimize horizontal spacing for mobile */
    .container {
        width: 92%;
        padding: 0 1rem;
    }

    /* Reduce section padding */
    section {
        padding: 4rem 0;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .features,
    .instructor,
    .modules-section,
    .deliverables-section,
    .certificate-section,
    .pricing,
    .soap-types-section,
    .social-proof-section,
    .faq {
        padding: 4rem 0;
    }
    
    .pricing-header {
        padding: 1.5rem !important;
    }
    
    .pricing-body {
        padding: 2rem 1.5rem !important;
    }
    footer {
        padding: 3rem 0 !important;
    }

    /* Black Friday Coupon Box - Mobile Optimization */
    .blackfriday-coupon-box {
        padding: 1.2rem !important;
        margin: 1.5rem 0 !important;
    }

    /* Soap Types Section - Mobile Optimization */
    .soap-types-section {
        padding: 3.5rem 0 !important;
    }

    .soap-types-grid {
        gap: 2rem !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float i {
    margin-top: 2px; /* Visual adjustment */
}

/* Mobile First Adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}

/* --- New Design System Utilities --- */

/* Hero Utilities */
.hero-image-container {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
}

.scroll-indicator {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse-animation 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Pain Section Utilities */
.pain-section {
    background: var(--white);
    padding: 8rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pain-image-wrapper {
    margin-bottom: 4rem;
}

.pain-image {
    max-width: 100%;
    height: auto;
}

.pain-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    width: 100%;
    margin: 2rem auto 0;
    opacity: 0.5;
}

.pain-text {
    font-size: 1.25rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.pain-text-large {
    font-size: 1.75rem;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 3rem;
    font-weight: 700;
}

.icon-cross {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.highlight-text {
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 4px;
}

.highlight-text-coral {
    color: var(--accent-color);
    font-weight: 800;
}

.transformation-box {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius);
    border: 2px dashed var(--accent-color);
    margin-bottom: 4rem;
}

.transformation-title {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.transformation-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.highlight-badge {
    color: var(--accent-color);
    font-weight: 900;
    background: rgba(255, 92, 57, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
}

@media (max-width: 768px) {
    .pain-text {
        font-size: 1.1rem;
    }
    
    .pain-text-large {
        font-size: 1.4rem;
    }
    
    .transformation-box {
        padding: 2rem 1.5rem;
    }
    
    .transformation-title {
        font-size: 1.5rem;
    }
}

/* Soap Types Utilities */
.soap-types-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Pricing Utilities */
.pricing-card-header-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
    border: 3px solid #fff;
}

.pricing-card-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.pricing-card-divider {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.pricing-new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.pricing-payment-info {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.payment-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0.6;
    margin-top: 3rem;
}

.payment-icons-container i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Special Offer Section */
.special-offer-section {
    background: var(--bg-secondary);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.special-offer-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Transformation Section */
.transformation-section {
    background: #0A0A0A; /* Dark background */
    padding: 8rem 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Steps Section */
.steps-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #FF3B3B; /* Red/Pink from reference */
    color: white;
    padding: 1.8rem;
    border-radius: 24px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(216, 30, 75, 0.2);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.step-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 2rem;
    }
}
