/* ============================================
   MACKIE MOBILE - CUTTING EDGE THEME v3
   ============================================ */

/* ============================================
   VARIABLES
============================================ */
:root {
    /* Primary Green */
    --green: #12efac;
    --green-light: #5fffc4;
    
    /* Desert Coyote Accent */
    --brown: #af9a82;
    --brown-light: #c4ad94;
    
    /* Section Background Colors */
    --bg-white: #ffffff;
    --bg-offwhite: #f9fdfb;
    --bg-green: #c8e4d4;
    --bg-gray: #f5f5f5;
    --bg-dark: #5a7c69;
    
    /* Text Colors */
    --text-dark: #5a7c69;
    --text-medium: #6b8e7a;
    --text-light: #a8c4b5;
    
    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

a {
    color: var(--brown);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

.nowrap {
    white-space: nowrap;
}

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

/* ============================================
   SECTION BACKGROUNDS
============================================ */
.section-white {
    background: var(--bg-white);
}

.section-offwhite {
    background: var(--bg-offwhite);
}

.section-green {
    background: var(--bg-green);
}

.section-gray {
    background: var(--bg-gray);
}

/* ============================================
   WAVE DIVIDERS
============================================ */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Set wave colors based on what comes NEXT */
.hero .wave-divider svg {
    color: var(--bg-white);
}

.threats-section .wave-divider svg {
    color: var(--bg-green);
}

.comparison-section .wave-divider svg {
    color: var(--bg-offwhite);
}

.protect-section .wave-divider svg {
    color: var(--bg-white);
}

.steps-section .wave-divider svg {
    color: var(--bg-green);
}

.pricing-section .wave-divider svg {
    color: var(--bg-offwhite);
}

.faq-section .wave-divider svg {
    color: var(--bg-white);
}

/* ============================================
   NAVIGATION
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #f5f5f5;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.mobile-m-icon {
    display: none;
    height: 44px;
    width: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-m {
    height: 44px;
    width: auto;
    display: none;
}

.logo-full {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin-left: auto;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brown);
    text-decoration: none;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--green);
    color: #fff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s ease;
    margin-left: 32px;
}

.nav-cta:hover {
    background: var(--brown);
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s ease;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    overflow: visible;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 48px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    min-height: calc(100vh - 80px);
}

.hero-content {
    max-width: 100%;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(18, 239, 172, 0.15);
    border: 1px solid var(--green);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 16px;
}

.hero-headline {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.rotating-word {
    color: var(--green);
    display: inline-block;
    transition: opacity 0.3s ease;
}

.rotating-word.fade-out {
    opacity: 0;
}

.rotating-protection {
    display: inline-block;
    transition: opacity 0.3s ease;
    color: var(--brown);
}

.rotating-protection.fade-out {
    opacity: 0;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-form {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-form input {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font);
    background: var(--bg-white);
    transition: 0.3s ease;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(18, 239, 172, 0.15);
}

.hero-form .btn {
    white-space: nowrap;
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-form {
    display: flex;
    gap: 0;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-coyote {
    background: var(--brown);
    color: #fff;
}

.btn-coyote:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 239, 172, 0.3);
}

/* Waitlist Counter */
.waitlist-counter {
    margin-top: 0;
}

.waitlist-counter p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Video */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-video-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    background: var(--bg-white);
}

.hero-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.unmute-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--font);
}

.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid var(--green);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--green);
    transform: translate(-50%, -50%) scale(1.05);
}

/* ============================================
   SECTION HEADERS (Reusable)
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--brown);
}

.highlight-white {
    color: var(--brown);
}

/* ============================================
   THREATS SECTION (What We Protect Against)
============================================ */
.threats-section {
    padding: 100px 0 140px;
    position: relative;
}

.threats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.threat-card {
    background: var(--bg-offwhite);
    border-radius: 16px;
    padding: 32px;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.threat-card:hover {
    transform: translateY(-4px);
    border-color: var(--text-dark);
    box-shadow: 0 12px 40px rgba(90, 124, 105, 0.15);
}

.threat-featured {
    border-color: var(--text-dark);
    background: var(--bg-offwhite);
}

.threat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.threat-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.threat-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.threat-card strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.threat-card em {
    font-style: normal;
    color: var(--brown);
    font-weight: 600;
}

.threat-insurance {
    margin-top: 16px;
}

.insurance-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--text-dark);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

/* MetaCert Banner */
.metacert-banner {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3d5a4a 100%);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(90, 124, 105, 0.3);
}

.metacert-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.metacert-banner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--green);
}

.metacert-banner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   COMPARISON SECTION (Clean & Simple)
============================================ */
.comparison-section {
    padding: 100px 0 140px;
    position: relative;
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(90, 124, 105, 0.15);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(90, 124, 105, 0.1);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th {
    background: var(--bg-dark);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.comparison-table th.mackie-col {
    background: var(--text-dark);
}

.comparison-table td {
    font-size: 15px;
    color: var(--text-dark);
}

.comparison-table td.mackie-col {
    background: rgba(18, 239, 172, 0.08);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-green {
    color: var(--brown);
    font-size: 20px;
    font-weight: 700;
}

.check-gray {
    color: #ccc;
    font-size: 20px;
}

/* ============================================
   PROTECT SECTION (Who We Protect)
============================================ */
.protect-section {
    padding: 100px 0 140px;
    position: relative;
}

/* Featured Journalist Card */
.featured-protect {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: 0 12px 40px rgba(90, 124, 105, 0.15);
    border: 3px solid var(--green);
}

.featured-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.featured-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.featured-content p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Regular Protect Cards */
.protect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.protect-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 124, 105, 0.08);
}

.protect-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(90, 124, 105, 0.15);
}

.protect-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.protect-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.protect-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
}

/* ============================================
   STEPS SECTION (How It Works)
============================================ */
.steps-section {
    padding: 100px 0 140px;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.step {
    text-align: center;
    padding: 32px;
    background: var(--bg-offwhite);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(90, 124, 105, 0.08);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(18, 239, 172, 0.3);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    padding: 100px 0 140px;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(90, 124, 105, 0.12);
    border: 2px solid transparent;
    transition: 0.3s ease;
}

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

.pricing-featured {
    border-color: var(--green);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-price .price {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
}

.plan-price .period {
    font-size: 18px;
    color: var(--text-medium);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(90, 124, 105, 0.08);
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-charity {
    color: var(--text-dark) !important;
    font-weight: 500;
    background: rgba(18, 239, 172, 0.1);
    margin: 0 -40px;
    padding: 10px 40px !important;
    border-radius: 0;
    font-size: 13px !important;
}

.feature-note {
    font-size: 13px !important;
    font-style: italic;
    color: var(--text-light) !important;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 32px;
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--green);
}

.btn-secondary:hover {
    background: var(--green);
    color: #fff;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 100px 0 140px;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 124, 105, 0.08);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(90, 124, 105, 0.12);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--brown);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rotating-fear {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    min-height: 50px;
    transition: opacity 0.4s ease;
    line-height: 1.3;
}

.rotating-fear.fade-out {
    opacity: 0;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-subtext {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 2px solid rgba(90, 124, 105, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font);
    background: var(--bg-white);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(18, 239, 172, 0.15);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cta-trust span {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Share Section */
.share-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(90, 124, 105, 0.1);
}

.share-section p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    background: var(--bg-offwhite);
    border: 1px solid rgba(90, 124, 105, 0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    font-family: var(--font);
}

.share-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    text-decoration: none;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-card {
    background: var(--bg-offwhite);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-badges {
    display: flex;
    gap: 8px;
}

.cert-badge {
    height: 50px;
    width: auto;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brown);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(175, 154, 130, 0.4);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 24px 120px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .trust-badge {
        margin: 0 auto 20px;
    }
    
    .hero-form {
        justify-content: center;
    }
    
    .hero-form input {
        max-width: 100%;
    }
    
    .hero-cta-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta-row {
        display: contents;
    }
    
    .hero-form {
        order: 1;
    }
    
    .waitlist-counter {
        order: 2;
        text-align: center;
    }
    
    .hero-buttons {
        order: 3;
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-coyote {
        text-align: center;
    }
    
    .hero-visual {
    display: flex;
    order: 2;
    min-height: auto;
    margin-top: 40px;
}

.hero-video-container {
    max-width: 100%;
}
    
    .threats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .protect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-protect {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .wave-divider svg {
        height: 50px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }
    
    .mobile-m-icon {
        display: block;
        height: 40px;
        width: auto;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo-full {
        display: block;
        height: 36px;
    }
    
    .logo-m {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Mobile Menu Active State */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu.active a {
        display: block;
        font-size: 18px;
        padding: 16px 0;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 40px 24px 100px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: left;
        padding: 0;
    }
    
    .trust-badge {
        margin: 0 0 20px 0;
    }
    
    .hero-headline {
        font-size: clamp(32px, 8vw, 52px);
    }
    
    .hero-form {
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .hero-form input {
        min-width: 100%;
    }
    
    .hero-cta-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta-row {
        display: contents;
    }
    
    .hero-form {
        order: 1;
    }
    
    .waitlist-counter {
        order: 2;
        text-align: left;
    }
    
    .hero-buttons {
        order: 3;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        text-align: center;
    }
    
    .threats-grid {
        grid-template-columns: 1fr;
    }
    
    .protect-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-protect {
        padding: 32px;
    }
    
    .featured-icon {
        font-size: 60px;
    }
    
    .metacert-banner {
        padding: 32px;
    }
    
    .metacert-banner h3 {
        font-size: 22px;
    }
    
    .pricing-card {
        padding: 32px;
    }
    
    .plan-price .price {
        font-size: 48px;
    }
    
    .feature-charity {
        margin: 0 -32px;
        padding: 10px 32px !important;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-logo-card {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .footer-badges {
        gap: 12px;
    }
    
    .cert-badge {
        height: 40px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-form input {
        min-width: 100%;
    }
    
    .cta-trust {
        gap: 16px;
    }
    
    .cta-trust span {
        font-size: 12px;
    }
    
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .wave-divider svg {
        height: 40px;
    }
}
