/* CSS Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important;
}

body {
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Buttons */
.cta-button {
    background-color: #13c71a;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.cta-button:hover {
    background-color: #0fa316;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 199, 26, 0.3);
    animation: none;
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(19, 199, 26, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(19, 199, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(19, 199, 26, 0);
    }
}

/* Top Banner */
.top-banner {
    background-color: #ff0000;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-weight: 600;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    font-size: 1.2rem;
}

.top-banner .container {
    padding: 0 15px;
}

.top-banner p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Section Backgrounds */
.hero,
.method-presentation,
.target-audience,
.faq,
.final-cta {
    background-color: #000000;
    color: #ffffff;
}

.method-details,
.social-proof,
.about-instructor {
    background-color: #ffffff;
    color: #222222;
}

.bonuses {
    background-color: #000000;
    color: #ffffff;
}

/* Section Padding */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 140px 0 80px 0;
    margin-top: 70px;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #001a33 50%, #000000 75%, #000000 100%);
    overflow: hidden;
}

/* Tech Grid Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 122, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 122, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

/* Neon Lines */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(19, 199, 26, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(19, 199, 26, 0.1) 50%, transparent 60%);
    z-index: 2;
    animation: neonPulse 4s ease-in-out infinite alternate;
}

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



/* Light Particles */
.hero .hero-subtitle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    width: 4px;
    height: 4px;
    background: #13c71a;
    border-radius: 50%;
    box-shadow: 
        0 0 10px #13c71a,
        20px 30px 0 #007AFF,
        40px -20px 0 #13c71a,
        -30px 40px 0 #007AFF;
    animation: particleFloat 5s linear infinite;
}

/* Holographic Robot Assistant (CSS Art) */
.hero h1::after {
    content: '🤖';
    position: absolute;
    top: -30px;
    right: 10%;
    font-size: 3rem;
    opacity: 0.7;
    animation: robotFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(19, 199, 26, 0.6));
    z-index: 5;
}

/* Floating Interface Elements */
.hero .hero-description::before {
    content: '⬜';
    position: absolute;
    top: -20px;
    left: 5%;
    font-size: 1.5rem;
    color: #007AFF;
    opacity: 0.5;
    animation: interfaceFloat 7s linear infinite;
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.8);
}

.hero .hero-description::after {
    content: '▲';
    position: absolute;
    bottom: -30px;
    right: 10%;
    font-size: 1.2rem;
    color: #13c71a;
    opacity: 0.6;
    animation: interfaceFloat 5s linear infinite reverse;
    text-shadow: 0 0 8px rgba(19, 199, 26, 0.8);
}

/* Animations */
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes neonPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

@keyframes floatCurrency {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(15px); }
}

@keyframes robotFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes interfaceFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(5deg); }
    66% { transform: translateY(-5px) rotate(-3deg); }
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #007AFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Method Presentation */
.method-presentation {
    text-align: center;
}

.impact-phrase {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #007AFF;
}

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

.pillar-card {
    background-color: #1c1c1e;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pillar-icon-container {
    width: 70px;
    height: 70px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.pillar-icon-svg {
    width: 50px;
    height: 50px;
    color: #007AFF;
}

.pillar-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: #cccccc;
}

/* Method Details */
.method-details {
    padding: 100px 0;
    background-color: #000000;
}

.detail-block {
    margin-bottom: 4rem;
}

.detail-block h2 {
    color: #007AFF;
    margin-bottom: 2rem;
}

.flowchart-list,
.modules-list,
.application-steps {
    font-size: 1.2rem;
    line-height: 2;
    color: #ffffff;
}

.flowchart-list li,
.application-steps li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    color: #ffffff;
}

.modules-list li {
    margin-bottom: 0.8rem;
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
}

.modules-list li::before {
    content: "▶";
    color: #007AFF;
    position: absolute;
    left: 0;
}

/* Social Proof */
.social-proof {
    text-align: center;
}

.social-proof h2 {
    color: #007AFF;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #007AFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333333;
}

.testimonial-author {
    font-weight: 600;
    color: #007AFF;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007AFF;
}

/* Arrow Indicator */
.arrow-indicator {
    padding: 5px 0;
    text-align: center;
    background-color: #000000;
}

.animated-arrow {
    display: inline-block;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Comparison Section */
.comparison-section {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    background-color: #1c1c1e;
    padding: 3rem 2rem;
    border-radius: 12px;
    border-top: 4px solid;
    transition: transform 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-5px);
}

.without-agent {
    border-top-color: #ff4757;
}

.with-agent {
    border-top-color: #13c71a;
}

.comparison-column h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.without-agent h2 {
    color: #ff4757;
}

.with-agent h2 {
    color: #13c71a;
}

.comparison-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.comparison-item:hover {
    transform: translateX(5px);
}

.comparison-item .icon {
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 1rem;
    min-width: 20px;
}

.icon.negative {
    color: #ff4757;
}

.icon.positive {
    color: #13c71a;
}

.comparison-item .text {
    font-size: 1rem;
    line-height: 1.4;
    color: #ffffff;
}

/* Bonuses */
.bonuses {
    text-align: center;
}

.bonus-main-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.bonus-subtitle {
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

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

.bonus-card {
    background-color: #1c1c1e;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.bonus-card h3 {
    color: #007AFF;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.bonus-value {
    font-weight: 700;
    color: #13c71a;
    font-size: 1.2rem;
}

.original-price {
    text-decoration: line-through;
    color: #999999;
    margin-right: 0.5rem;
}

/* Pre-Offer Copy */
.pre-offer-copy {
    text-align: center;
    padding: 60px 0 30px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #001a33 50%, #000000 75%, #000000 100%);
    position: relative;
    overflow: hidden;
}

/* Pre-Offer Tech Grid Background */
.pre-offer-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 122, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 122, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

/* Pre-Offer Neon Lines */
.pre-offer-copy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(19, 199, 26, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(19, 199, 26, 0.1) 50%, transparent 60%);
    z-index: 2;
    animation: neonPulse 4s ease-in-out infinite alternate;
}

.pre-offer-copy .container {
    position: relative;
    z-index: 10;
}

.pre-offer-copy .impact-phrase {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Pre-Offer Light Particles */
.pre-offer-copy .impact-phrase::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -25px;
    width: 3px;
    height: 3px;
    background: #13c71a;
    border-radius: 50%;
    box-shadow: 
        0 0 8px #13c71a,
        15px 25px 0 #007AFF,
        30px -15px 0 #13c71a,
        -20px 35px 0 #007AFF;
    animation: particleFloat 6s linear infinite;
    opacity: 0.7;
}

/* Pre-Offer Floating Elements */
.pre-offer-copy .subheadline::before {
    content: '◆';
    position: absolute;
    top: -20px;
    left: 8%;
    font-size: 1rem;
    color: #007AFF;
    opacity: 0.4;
    animation: interfaceFloat 8s linear infinite;
    text-shadow: 0 0 8px rgba(0, 122, 255, 0.6);
}

.subheadline {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.final-instruction {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0;
    font-weight: 400;
}

.white-emphasis {
    color: #ffffff;
    font-weight: 700;
}

/* Offer and Price */
.offer-price {
    text-align: center;
    padding: 100px 0;
    background-color: #ffffff;
}


.offer-header {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offer-title {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    text-align: left;
    max-width: 800px;
}

.offer-features li {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
}

.feature-check {
    color: #39FF14;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}

a {
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(57, 255, 20, 0.5);
    }
}

.cta-button-main-offer {
    background: linear-gradient(135deg, #39FF14, #2ecc40);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    max-width: 400px;
    margin: 40px auto 20px auto;
    display: block;
    text-transform: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.cta-button-main-offer:hover {
    background: linear-gradient(135deg, #32e610, #27a338);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

.disclaimer-text {
    margin-top: 15px;
    color: #666666;
    font-size: 1rem;
    font-style: italic;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text:hover {
    color: #000000;
}



.pricing-section {
    text-align: center;
    padding: 0 30px 30px;
}

.original-price {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.crossed-price {
    text-decoration: line-through;
    color: #ff4757;
}

.current-price-label {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.current-price {
    color: #13c71a;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.cta-button-final {
    background-color: #13c71a;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
    margin-bottom: 20px;
}

.cta-button-final:hover {
    background-color: #0fa316;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 199, 26, 0.3);
    animation: none;
}

.guarantee-footer {
    color: #cccccc;
    font-size: 0.9rem;
    text-align: center;
    padding: 0 30px 30px;
    line-height: 1.4;
    font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.guarantee-text {
    color: #cccccc;
}

.guarantee-highlight {
    color: #13c71a;
    font-weight: 600;
}

/* About Instructor */
.about-instructor {
    padding: 100px 0;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

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

.instructor-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin: 0 auto;
    display: block;
    border: 4px solid #007AFF;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

.placeholder-image {
    font-size: 8rem;
    color: #007AFF;
    background-color: #f0f0f0;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.instructor-info h2 {
    color: #007AFF;
    margin-bottom: 1.5rem;
}

.instructor-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
}

/* Target Audience */
.target-audience {
    text-align: center;
}

.target-audience h2 {
    margin-bottom: 3rem;
}

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

.audience-item {
    background-color: #1c1c1e;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.audience-item h3 {
    color: #007AFF;
    margin-bottom: 1rem;
}

.audience-item p {
    color: #cccccc;
}

/* FAQ */
.faq {
    text-align: center;
}

.faq h2 {
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #333333;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #007AFF;
}

.faq-arrow {
    color: #007AFF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #cccccc;
    font-size: 1.1rem;
}

/* Separator Line */
.separator-line {
    text-align: center;
    font-size: 1.5rem;
    color: #007AFF;
    margin: 2rem 0;
    font-weight: 300;
}

/* Pre-CTA Section */
.pre-cta-section {
    background-color: #000000;
    text-align: center;
    padding: 60px 0;
}

.pre-cta-title {
    color: #007AFF;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pre-cta-text {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 0;
}

.final-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-phrase {
        font-size: 1.8rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .pre-cta-title {
        font-size: 1.8rem;
    }
    
    .pre-cta-text {
        font-size: 1.1rem;
    }
    
    .separator-line {
        font-size: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .offer-price {
        padding: 60px 0;
    }
    
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .offer-features li {
        font-size: 1.1rem;
    }
    
    .cta-button-main-offer {
        font-size: 1rem;
        padding: 16px 35px;
    }
    
    .offer-features,
    .offer-header,
    .disclaimer-text {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 15px 25px;
    }
    
    .top-banner p {
        font-size: 1rem;
    }
    
    .impact-phrase {
        font-size: 1.5rem;
    }
    
    .final-cta-title {
        font-size: 1.7rem;
    }
    
    .pre-cta-title {
        font-size: 1.5rem;
    }
    
    .pre-cta-text {
        font-size: 1rem;
    }
    
    .separator-line {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .offer-price {
        padding: 40px 0;
    }
    
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .offer-features li {
        font-size: 1rem;
    }
    
    .cta-button-main-offer {
        font-size: 0.9rem;
        padding: 14px 30px;
    }
    
    .offer-features,
    .offer-header,
    .disclaimer-text {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
    }
}

/* High contrast and accessibility */
@media (prefers-contrast: high) {
    .hero::before,
    .hero::after,
    .pre-offer-copy::before,
    .pre-offer-copy::after {
        opacity: 0.8;
    }
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}