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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
}

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

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

/* Fixed Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid #ff0000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.nav-logo .brand-no {
    color: #ff0000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #ff0000;
}

/* Hero Section - HIGH CONTRAST */
section.hero {
    background: rgba(46, 46, 46, 1);
    background-color: rgba(46, 46, 46, 1) !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 46, 46, 1);
    background-color: rgba(46, 46, 46, 1) !important;
    color: #fff;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-brand {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-brand .brand-no {
    color: #ff0000;
}

.hero-label {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    font-size: 2.5rem;
}

.hero h2.hero-tagline {
    color: #ff0000;
    font-size: 3rem;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
    color: #e8e8e8;
}

.hero-subtitle strong {
    color: #fff;
    font-weight: 700;
}

/* Video Container */
.video-proof {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.video-proof h3 {
    color: #ff0000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
    border: 3px solid #ff0000;
}

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

.video-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #e0e0e0;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 3px solid transparent;
}

.btn-primary {
    background-color: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.btn-primary:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section:nth-child(even) {
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff0000;
    font-size: 3rem;
}

/* Broken Promise Section */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.comparison-card {
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.comparison-card.before {
    background: #000;
    color: #fff;
    border: 3px solid #00ff00;
}

.comparison-card.after {
    background: #000;
    color: #fff;
    border: 3px solid #ff0000;
}

.comparison-card h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: inherit;
}

.comparison-card .icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.comparison-card p {
    font-size: 1.3rem;
    line-height: 1.8;
}

.comparison-card .big-text {
    font-size: 2rem;
    font-weight: bold;
    margin: 1.5rem 0;
    text-transform: uppercase;
}

.comparison-card.before .big-text {
    color: #00ff00;
}

.comparison-card.after .big-text {
    color: #ff0000;
}

.vs-divider {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #ff0000;
    margin: 2rem 0;
    display: none;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 2px solid #ff0000;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Issues Grid */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.issue-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #ff0000;
}

.issue-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.issue-card h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.issue-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.issue-card .highlight {
    margin-top: 1rem;
    font-weight: bold;
    color: #ff0000;
    font-size: 1.1rem;
}

/* Action Cards */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.action-card {
    background: #000;
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid #ff0000;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.action-card .email-recipients {
    font-size: 0.95rem;
    margin: 0.75rem 0;
    line-height: 1.6;
}

.action-card .email-recipients a {
    color: #ff6b6b;
}

.action-card .email-template-label {
    font-size: 0.9rem;
    margin: 0.5rem 0 0.25rem;
    opacity: 0.95;
}

.email-template-wrap {
    margin: 0.75rem 0;
    text-align: left;
    width: 100%;
}

.email-template-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #ccc;
    margin-bottom: 0;
    background: #f5f5f5;
    padding: 0.5rem 0.5rem 0 0.5rem;
    border-radius: 6px 6px 0 0;
}

.email-tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #555;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    margin-bottom: -2px;
    transition: color 0.2s, background 0.2s;
}

.email-tab:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.05);
}

.email-tab.active {
    color: #ff0000;
    background: #fff;
    border: 2px solid #ccc;
    border-bottom-color: #fff;
}

.action-card .email-template {
    display: block;
    width: 100%;
    padding: 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.6;
    border: 2px solid #333;
    border-radius: 4px;
    background: #1a1a1a;
    color: #e8e8e8;
    resize: vertical;
    min-height: 220px;
    box-sizing: border-box;
}

.action-card .btn-copy {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Email template in standalone section (e.g. below cancellation guide) */
.security-warning .email-template,
.email-template-section {
    background: #fff;
    color: #1a1a1a;
    border-color: #ccc;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.email-template-wrap .btn-copy {
    display: block;
    margin-top: 0.5rem;
    text-align: left;
}

.security-warning .btn-copy {
    margin-top: 0.5rem;
}

.action-number {
    background: #ff0000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.action-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #fff;
}

.action-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.action-card .btn {
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

/* Security Warning */
.security-warning {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border-left: 8px solid #ff0000;
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.15);
}

.security-warning h3 {
    color: #ff0000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.security-warning ul {
    list-style: none;
    margin-top: 1.5rem;
}

.security-warning li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.security-warning li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.security-warning .highlight-box {
    background: white;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 4px;
    border: 2px solid #ff0000;
    font-weight: bold;
    color: #ff0000;
    font-size: 1.1rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #ff0000;
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    padding: 0 2rem;
}

.timeline-item.left {
    text-align: right;
    padding-right: calc(50% + 3rem);
}

.timeline-item.right {
    text-align: left;
    padding-left: calc(50% + 3rem);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #ff0000;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #ff0000;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #ff0000;
}

.timeline-date {
    font-weight: bold;
    color: #ff0000;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.timeline-text {
    color: #555;
    font-size: 1.05rem;
}

/* Quote Section */
.quote-section {
    background: #000;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.quote-text {
    font-size: 2.2rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: #ff0000;
}

.quote-author {
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
}

.quote-note {
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 1.2rem;
}

/* Social Share */
.social-share {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin: 3rem 0;
    border: 2px solid #ff0000;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-btn {
    padding: 1rem 2rem;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.facebook {
    background: #4267B2;
}

.social-btn.reddit {
    background: #FF4500;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    margin: 0.75rem 0;
    opacity: 0.8;
    font-size: 1.05rem;
}

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

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2.hero-tagline {
        font-size: 3.5rem;
    }

    .hero-brand {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .nav-links {
        font-size: 0.7rem;
        gap: 1rem;
    }

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

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

    .vs-divider {
        display: block;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item.left,
    .timeline-item.right {
        text-align: left;
        padding-left: 60px;
        padding-right: 1rem;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}
