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

:root {
    --primary: #00d9ff;
    --secondary: #ff006e;
    --accent: #8338ec;
    --dark: #0a0e27;
    --darker: #050812;
    --light: #f8f9fa;
    --text: #e0e0e0;
    --text-dark: #1a1a2e;
    --border: rgba(0, 217, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 217, 255, 0.05) 25%, rgba(0, 217, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 217, 255, 0.05) 75%, rgba(0, 217, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 217, 255, 0.05) 25%, rgba(0, 217, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 217, 255, 0.05) 75%, rgba(0, 217, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 10%;
    right: 10%;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: 20%;
    left: 5%;
    animation: float 25s ease-in-out infinite 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary), transparent);
    top: 50%;
    left: 50%;
    animation: float 30s ease-in-out infinite 4s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

h1 {
    font-size: 4rem;
    color: white;
}

h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.4rem;
    color: white;
}

p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

strong {
    color: var(--primary);
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    margin-bottom: 2rem;
    width: fit-content;
    animation: slideInDown 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title .word {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .word:nth-child(4) { animation-delay: 0.4s; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), 0 0 60px rgba(255, 0, 110, 0.2);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.5), 0 0 80px rgba(255, 0, 110, 0.3);
}

.primary:active {
    transform: translateY(-1px);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.primary:hover .button-glow {
    animation: glow 0.6s ease-out;
}

.large {
    padding: 20px 50px;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.final-cta {
    font-size: 1.3rem;
    padding: 24px 60px;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 12px 20px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--primary);
    width: fit-content;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.trust-icon {
    font-weight: 800;
    font-size: 1.2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    animation: slideInRight 0.8s ease-out;
}

.hologram {
    width: 300px;
    height: 300px;
    position: relative;
    perspective: 1000px;
}

.hologram-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 20s linear infinite;
}

.hologram-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
    z-index: 2;
}

.hologram-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: spin 4s linear infinite;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), inset 0 0 30px rgba(0, 217, 255, 0.1);
}

.hologram-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    animation: spin 6s linear infinite reverse;
    opacity: 0.5;
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

/* Pain Section */
.pain-section {
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pain-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text);
}

/* Beliefs Section */
.beliefs-section {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 100px 20px;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.belief-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.belief-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.belief-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.belief-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.belief-card p {
    color: var(--text);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(20px);
}

.highlight-quote {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(131, 56, 236, 0.1));
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

.highlight-quote p {
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Product Section */
.product-section {
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text);
    margin: 0;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.feature-item:hover .feature-line {
    width: 100%;
}

/* Learning Section */
.learning-section {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 100px 20px;
}

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

.learning-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.learning-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.learning-check {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.learning-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.learning-item p {
    color: var(--text);
    font-size: 1rem;
    margin: 0;
}

/* Transformation Section */
.transformation-section {
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.transform-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.transform-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.transform-item:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
}

.transform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.transform-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.transform-item p {
    color: var(--text);
    font-size: 1rem;
    margin: 0;
}

/* Credibility Section */
.credibility-section {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 100px 20px;
}

.credibility-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    font-size: 1.15rem;
    color: var(--text);
}

/* Offer Section */
.offer-section {
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.offer-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.offer-item:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.offer-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.offer-item p {
    color: var(--text);
    font-size: 1rem;
    margin: 0;
}

.offer-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    color: var(--text);
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 100px 20px;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    max-width: 900px;
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.1);
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.guarantee-box p:last-child {
    margin-bottom: 0;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 100px 20px;
    color: white;
}

.urgency-section h2 {
    color: white;
}

.urgency-text {
    color: var(--text);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: justify;
    font-size: 1.15rem;
}

/* Footer */
.footer {
    background: var(--darker);
    color: var(--text);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@keyframes rotate3d {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }
    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes glow {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .hologram {
        width: 200px;
        height: 200px;
    }

    .hologram-text {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .large {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .final-cta {
        font-size: 1.1rem;
        padding: 18px 40px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .beliefs-grid,
    .learning-grid,
    .transformation-grid,
    .offer-features {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        padding: 30px 20px;
    }

    section {
        padding: 60px 20px;
    }

    .beliefs-section,
    .product-section,
    .learning-section,
    .transformation-section,
    .credibility-section,
    .offer-section,
    .guarantee-section,
    .urgency-section {
        margin: 60px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    .large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .final-cta {
        font-size: 1rem;
        padding: 14px 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .belief-card,
    .learning-item,
    .transform-item,
    .offer-item {
        padding: 20px;
    }

    .feature-item {
        padding: 20px;
    }

    .guarantee-box {
        padding: 20px;
        border-left-width: 2px;
    }

    section {
        padding: 40px 20px;
    }

    .beliefs-section,
    .product-section,
    .learning-section,
    .transformation-section,
    .credibility-section,
    .offer-section,
    .guarantee-section,
    .urgency-section {
        margin: 40px 20px;
    }

    .hero {
        padding: 40px 20px;
        min-height: auto;
    }
}
