/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

.highlight {
    background: linear-gradient(120deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: #10b981;
}

/* ===== BUTTONS & CTAs ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.3rem;
}

.cta-button.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.1;
}

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

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

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

.hero-headline {
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.cta-container {
    margin-bottom: 32px;
}

.cta-subtext {
    margin-top: 16px;
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.revenue-chart {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-header {
    text-align: center;
    margin-bottom: 32px;
}

.chart-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.chart-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: center;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bar {
    width: 60px;
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bar.before {
    height: 80px;
    background: linear-gradient(to top, #ef4444, #f87171);
}

.bar.after {
    height: 200px;
    background: linear-gradient(to top, #10b981, #34d399);
    animation: growBar 2s ease-out;
}

@keyframes growBar {
    from { height: 80px; }
    to { height: 200px; }
}

.bar::before {
    content: attr(data-value);
    position: absolute;
    top: -30px;
    font-weight: 800;
    font-size: 1rem;
}

.growth-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: -20px;
}

.growth-arrow i {
    font-size: 2rem;
    color: #10b981;
}

.growth-arrow span {
    font-weight: 800;
    font-size: 1.2rem;
    color: #10b981;
}

.bar-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== AUTHORITY SECTION ===== */
.authority-section {
    padding: 100px 0;
    background: #f8fafc;
}

.colin-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.colin-image {
    width: 120px;
    height: 120px;
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.colin-details h2 {
    margin-bottom: 8px;
}

.title {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.credential-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.social-proof {
    text-align: center;
    margin-bottom: 60px;
}

.social-proof h3 {
    margin-bottom: 32px;
    color: #6b7280;
}

.featured-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    color: #6b7280;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-2px);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.achievement-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 8px;
}

.achievement-label {
    color: #6b7280;
    font-weight: 600;
}

/* ===== CASE STUDY SECTION ===== */
.case-study-section {
    padding: 100px 0;
    background: white;
}

.case-study-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 0;
}

.case-study-timeline {
    max-width: 800px;
    margin: 0 auto 80px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:not(:last-of-type)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #e5e7eb, transparent);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.timeline-content {
    padding-top: 8px;
}

.timeline-content h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    margin-bottom: 24px;
}

.metric {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: #f8fafc;
    border-radius: 12px;
    margin-right: 16px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b35;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.strategy-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.point {
    color: #10b981;
    font-weight: 600;
}

.result-metrics {
    display: flex;
    gap: 16px;
}

.timeline-arrow {
    text-align: center;
    margin: 20px 0;
    color: #6b7280;
    font-size: 1.5rem;
}

.case-study-cta {
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    border-radius: 20px;
    border: 2px solid #e5e7eb;
}

.cta-box h3 {
    margin-bottom: 16px;
}

.cta-box p {
    margin-bottom: 32px;
    color: #6b7280;
}

/* ===== LEARN SECTION ===== */
.learn-section {
    padding: 100px 0;
    background: #f8fafc;
}

.learn-header {
    text-align: center;
    margin-bottom: 80px;
}

.learning-modules {
    margin-bottom: 80px;
}

.module {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 32px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.module-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.module-content h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.module-content p {
    color: #6b7280;
    margin-bottom: 20px;
}

.module-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight-item {
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

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

.value-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-box h3 {
    margin-bottom: 32px;
}

.differences {
    display: grid;
    gap: 16px;
    text-align: left;
}

.difference-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #f8fafc;
}

.difference-item i {
    font-size: 1.2rem;
    width: 20px;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto 80px;
}

.story-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.story-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 49px;
    top: 60px;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #e5e7eb, transparent);
}

.story-year {
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.story-details h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.story-details p {
    color: #6b7280;
}

.testimonials {
    margin-top: 80px;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff6b35;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info strong {
    display: block;
    color: #1f2937;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-result {
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== URGENCY SECTION ===== */
.urgency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.urgency-header {
    text-align: center;
    margin-bottom: 60px;
}

.urgency-header h2 {
    color: white;
    margin-bottom: 16px;
}

.urgency-header p {
    color: #d1d5db;
    font-size: 1.2rem;
}

.countdown-container {
    text-align: center;
    margin-bottom: 60px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #d1d5db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scarcity-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.scarcity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.scarcity-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    width: 24px;
}

.scarcity-text strong {
    display: block;
    margin-bottom: 4px;
}

.scarcity-text span {
    color: #d1d5db;
    font-size: 0.9rem;
}

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

.recent-signups h4 {
    margin-bottom: 24px;
    color: #d1d5db;
}

.signup-feed {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.signup-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #d1d5db;
    animation: slideIn 0.5s ease-out;
}

.signup-item:last-child {
    border-bottom: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== REGISTRATION SECTION ===== */
.registration-section {
    padding: 100px 0;
    background: #f8fafc;
}

.registration-header {
    text-align: center;
    margin-bottom: 60px;
}

.registration-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.registration-form {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-footer {
    text-align: center;
    margin-top: 24px;
}

.form-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.form-footer i {
    color: #10b981;
}

.registration-benefits {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.registration-benefits h4 {
    margin-bottom: 32px;
    color: #1f2937;
    text-align: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-list .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
}

.benefit-list .benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
    width: 20px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    margin-bottom: 60px;
}

.final-promise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.promise-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    width: 60px;
    flex-shrink: 0;
}

.promise-text h3 {
    margin-bottom: 8px;
    color: white;
}

.promise-text p {
    color: #d1d5db;
    margin-bottom: 0;
}

.final-cta-button {
    margin-bottom: 60px;
}

.final-cta-subtext {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-top: 16px;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    margin-bottom: 8px;
    color: white;
}

.guarantee-text p {
    color: #d1d5db;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-text p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .chart-bars {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .growth-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    /* Authority Section Mobile */
    .colin-intro {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .credentials {
        align-items: center;
    }
    
    .featured-logos {
        gap: 16px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Timeline Mobile */
    .timeline-item,
    .story-item {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .timeline-item::after,
    .story-item::after {
        display: none;
    }
    
    /* Modules Mobile */
    .module {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    /* Registration Mobile */
    .registration-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .registration-form,
    .registration-benefits {
        padding: 32px 24px;
    }
    
    /* Final Promise Mobile */
    .final-promise {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .promise-item {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    /* Countdown Mobile */
    .countdown-timer {
        gap: 16px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 16px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    /* Scarcity Mobile */
    .scarcity-indicators {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Footer Mobile */
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Button Mobile */
    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .authority-section,
    .case-study-section,
    .learn-section,
    .story-section,
    .urgency-section,
    .registration-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .revenue-chart {
        padding: 24px 16px;
    }
    
    .bar {
        width: 40px;
    }
    
    .bar.before {
        height: 60px;
    }
    
    .bar.after {
        height: 140px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box,
    .value-box {
        padding: 32px 24px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.authority-content,
.case-study-timeline,
.learning-modules {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

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

.hidden {
    display: none;
}

.visible {
    display: block;
}