/* ========================================
   VenueLinQ Shared Styles
   ======================================== */

:root {
    --linq-blue: #0066CC;
    --linq-blue-dark: #0052A3;
    --linq-blue-light: #E6F0FA;
    --trust-navy: #1A2E4C;
    --trust-navy-light: #2A4A6C;
    --network-teal: #00A3A3;
    --network-teal-light: #E6F7F7;
    --alert-amber: #F5A623;
    --alert-amber-light: #FEF6E6;
    --ready-green: #2ECC71;
    --ready-green-light: #E9F9F0;
    --danger-red: #E74C3C;
    --danger-red-light: #FDEDEC;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent any element from causing horizontal overflow */
img, video, iframe, embed, object {
    max-width: 100%;
}

input, select, textarea, button {
    max-width: 100%;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ========== SKIP LINK (Accessibility) ========== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
    background: var(--linq-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
    position: fixed;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Hero scroll target - hero already has padding-top for fixed header */
#hero,
.hero {
    scroll-margin-top: 0;
    outline: none; /* Remove focus outline when skip link targets this */
}

/* ========== LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

section {
    padding: 4rem 0;
    width: 100%;
    overflow-x: hidden;
}

/* ========== HEADER / NAV ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 200px;
    height: auto;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--alert-amber-light);
    color: var(--trust-navy);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.header-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--alert-amber);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--linq-blue);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: var(--linq-blue-dark);
    transform: translateY(-1px);
}

/* Navigation */
.header-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-list li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.nav-list li a:hover {
    color: var(--linq-blue);
    background: var(--gray-100);
}

.nav-list li a.active {
    color: var(--linq-blue);
    font-weight: 700;
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-dropdown-toggle:hover {
    color: var(--linq-blue);
    background: var(--gray-100);
}

.nav-dropdown-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: -0.5rem;
    min-width: 240px;
    margin-top: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.15s ease;
    z-index: 1001;
}

/* Invisible bridge to prevent hover gap between toggle and menu */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--linq-blue);
}

.nav-dropdown-menu a .dropdown-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.nav-dropdown-menu a .dropdown-desc {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--gray-500);
}

.nav-dropdown-menu a.active {
    background: var(--linq-blue-light);
    color: var(--linq-blue);
}

.nav-dropdown-menu a.active .dropdown-desc {
    color: var(--linq-blue);
    opacity: 0.7;
}

.nav-dropdown-toggle.active {
    color: var(--linq-blue);
    font-weight: 700;
}

.nav-list li:last-child {
    margin-left: auto;
}

.nav-list li a.nav-cta {
    background: var(--linq-blue);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-list li a.nav-cta:hover {
    background: var(--linq-blue-dark);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--trust-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Kill backdrop-filter when mobile menu is open - it creates a stacking 
   context that traps position:fixed children inside the header/container */
header:has(.header-nav.mobile-open) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #FFFFFF;
}

/* Mobile navigation overlay */
.header-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    z-index: 1;
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.header-nav.mobile-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.5rem;
}

.header-nav.mobile-open .nav-list li a {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    text-align: left;
    border-radius: 0.5rem;
}

.header-nav.mobile-open .nav-list li a.nav-cta {
    margin-left: 0;
    margin-top: 1rem;
}

/* Mobile dropdown */
.header-nav.mobile-open .nav-dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    padding: 1rem;
    font-size: 1.125rem;
    width: 100%;
}

.header-nav.mobile-open .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    border-radius: 0.5rem;
    margin-top: -0.1rem;
    display: none;
}

.header-nav.mobile-open .nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.header-nav.mobile-open .nav-dropdown-menu a {
    text-align: left;
}

.header-nav.mobile-open .nav-dropdown-menu a .dropdown-desc {
    display: none;
}

/* Header social icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--gray-500);
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.header-social a:hover {
    color: var(--linq-blue);
    background: var(--gray-100);
}

.header-social svg {
    width: 18px;
    height: 18px;
}

/* Desktop navigation */
@media (min-width: 768px) {
    .header-nav {
        display: flex;
        flex: 1;
        margin: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .header-badge {
        margin-left: 0.75rem;
    }
}

/* Mobile social icons */
@media (max-width: 767px) {
    .header-social {
        display: none;
    }
    
    .header-nav.mobile-open .header-social-mobile {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-200);
    }
    
    /* Reset desktop right-push on mobile */
    .header-nav.mobile-open .nav-list li:last-child {
        margin-left: 0;
    }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ========== HERO SECTION ========== */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--linq-blue-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

/* Hero variant backgrounds */
.hero--martyns-law {
    background: linear-gradient(180deg, var(--danger-red-light) 0%, var(--white) 100%);
}

.hero--martyns-law::before {
    background: radial-gradient(circle, var(--alert-amber-light) 0%, transparent 70%);
}

.hero--operations {
    background: linear-gradient(180deg, var(--network-teal-light) 0%, var(--white) 100%);
}

.hero--training {
    background: linear-gradient(180deg, var(--ready-green-light) 0%, var(--white) 100%);
}

/* Sub-page hero padding - maintain 128px on narrower screens */
@media (max-width: 1440px) {
    .hero--martyns-law,
    .hero--operations,
    .hero--training {
        padding-top: 8rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--linq-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Hero eyebrow with background (operations/training pages) */
.hero--operations .hero-eyebrow,
.hero--training .hero-eyebrow {
    background: var(--network-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--trust-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--linq-blue), var(--network-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight {
    color: var(--danger-red);
}

.hero h1 .highlight--teal {
    color: var(--network-teal);
}

.hero h1 .highlight--green {
    color: var(--ready-green);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    max-width: 540px;
}

.hero-subtext {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--linq-blue) 0%, var(--network-teal) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.hero-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--danger-red);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Deadline Banner */
.deadline-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--danger-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.deadline-banner svg {
    width: 18px;
    height: 18px;
}

/* Framework Tags */
.framework-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.framework-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.framework-tag .icon {
    width: 16px;
    height: 16px;
}

.framework-tag--primary {
    background: var(--linq-blue-light);
    border-color: var(--linq-blue);
    color: var(--linq-blue);
}

/* ========== VIDEO SECTION ========== */
.hero-video {
    position: relative;
    z-index: 1;
}

.video-container {
    position: relative;
    background: var(--gray-100);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg-image,
.video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.video-bg-icon {
    width: 120px;
    height: 120px;
    opacity: 0.1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 46, 76, 0.6), rgba(26, 46, 76, 0.7));
    color: var(--white);
}

.video-placeholder:hover .video-overlay {
    background: linear-gradient(rgba(26, 46, 76, 0.5), rgba(26, 46, 76, 0.6));
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    width: 32px;
    height: 32px;
    fill: var(--linq-blue);
    margin-left: 4px;
}

.video-label {
    font-size: 1rem;
    font-weight: 600;
}

.video-duration {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.video-embed {
    display: none;
    width: 100%;
    height: 100%;
}

.video-container.playing .video-placeholder {
    display: none;
}

.video-container.playing .video-embed {
    display: block;
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--trust-navy);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== AUDIENCE CARDS ========== */
.audience-section {
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-card {
    display: block;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.audience-card:hover {
    border-color: var(--linq-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    transform: translateY(-4px);
}

.audience-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--gray-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-card:hover .audience-icon {
    background: var(--linq-blue);
}

.audience-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gray-500);
}

.audience-card:hover .audience-icon svg {
    stroke: var(--white);
}

.audience-card h3 {
    font-size: 1.25rem;
    color: var(--trust-navy);
    margin-bottom: 0.5rem;
}

.audience-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.audience-card .badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--alert-amber);
    color: var(--trust-navy);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ========== TIER CARDS (Martyn's Law) ========== */
.tiers-section {
    background: var(--gray-50);
}

.tiers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tier-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--gray-200);
}

.tier-card--standard {
    border-color: var(--linq-blue);
}

.tier-card--enhanced {
    border-color: var(--danger-red);
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.tier-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-card--standard .tier-icon {
    background: var(--linq-blue-light);
}

.tier-card--enhanced .tier-icon {
    background: var(--danger-red-light);
}

.tier-icon svg {
    width: 28px;
    height: 28px;
}

.tier-card--standard .tier-icon svg {
    stroke: var(--linq-blue);
}

.tier-card--enhanced .tier-icon svg {
    stroke: var(--danger-red);
}

.tier-title h3 {
    font-size: 1.25rem;
    color: var(--trust-navy);
    margin-bottom: 0.25rem;
}

.tier-title p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.tier-capacity {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-capacity-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--trust-navy);
}

.tier-capacity-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.tier-requirements h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.tier-requirements ul {
    list-style: none;
}

.tier-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.tier-requirements li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tier-card--standard .tier-requirements li svg {
    stroke: var(--linq-blue);
}

.tier-card--enhanced .tier-requirements li svg {
    stroke: var(--danger-red);
}

.tier-penalty {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.tier-card--standard .tier-penalty {
    background: var(--linq-blue-light);
}

.tier-card--enhanced .tier-penalty {
    background: var(--danger-red-light);
}

.tier-penalty-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.tier-card--standard .tier-penalty-label {
    color: var(--linq-blue);
}

.tier-card--enhanced .tier-penalty-label {
    color: var(--danger-red);
}

.tier-penalty-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--trust-navy);
}

/* ========== COVERAGE CARDS ========== */
.coverage-section {
    background: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.coverage-card {
    padding: 2rem;
    border-radius: 1rem;
}

.coverage-card--included {
    background: var(--ready-green-light);
    border: 2px solid var(--ready-green);
}

.coverage-card--manual {
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
}

.coverage-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--trust-navy);
    margin-bottom: 1.5rem;
}

.coverage-card h3 svg {
    width: 28px;
    height: 28px;
}

.coverage-card--included h3 svg {
    stroke: var(--ready-green);
}

.coverage-card--manual h3 svg {
    stroke: var(--gray-500);
}

.coverage-card ul {
    list-style: none;
}

.coverage-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.coverage-card li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.coverage-card--included li svg {
    stroke: var(--ready-green);
}

.coverage-card--manual li svg {
    stroke: var(--gray-400);
}

/* ========== PRODUCT SHOWCASE SECTION ========== */
.showcase-section {
    background: var(--gray-50);
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.showcase-item {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.showcase-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid var(--gray-200);
}

.showcase-image.mobile-screenshot {
    object-fit: contain;
    background: var(--gray-100);
    padding: 1rem;
}

.showcase-content {
    padding: 1.25rem;
}

.showcase-content h4 {
    font-size: 1rem;
    color: var(--trust-navy);
    margin-bottom: 0.375rem;
}

.showcase-content p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    background: var(--white);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.founder-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.founder-content h2 {
    font-size: 1.75rem;
    color: var(--trust-navy);
    margin-bottom: 1.25rem;
}

.founder-content p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.founder-content .highlight {
    color: var(--trust-navy);
    font-weight: 600;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--linq-blue);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.founder-link:hover {
    gap: 0.75rem;
}

.founder-link svg {
    width: 20px;
    height: 20px;
}

/* ========== SIGNUP FORM ========== */
.signup-section {
    background: linear-gradient(135deg, var(--trust-navy) 0%, var(--trust-navy-light) 100%);
    color: var(--white);
    overflow-x: hidden;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .signup-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.signup-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    word-wrap: break-word;
}

.signup-content .beta-badge {
    display: inline-block;
    background: var(--alert-amber);
    color: var(--trust-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.signup-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    width: 100%;
    max-width: 100%;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    width: 100%;
}

.benefits-list li span:last-child {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefits-list .check {
    width: 24px;
    height: 24px;
    background: var(--ready-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list .check svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
}

.signup-form-container {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    color: var(--trust-navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    width: 100%;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group .label-hint {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.8125rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--linq-blue);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.submit-btn {
    background: linear-gradient(135deg, var(--linq-blue) 0%, var(--network-teal) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn--urgent {
    background: linear-gradient(135deg, var(--danger-red) 0%, var(--alert-amber) 100%);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-toast {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-top: 0.75rem;
    text-align: center;
    animation: toastSlideIn 0.3s ease-out;
}

.form-toast.show { display: block; }

.form-toast.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-toast.info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}



.form-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.form-footer a {
    color: var(--linq-blue);
    text-decoration: none;
}

/* Success state */
.signup-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.signup-success.show {
    display: block;
}

.signup-form-container.submitted .signup-form {
    display: none;
}

.signup-form-container.submitted .signup-success {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--ready-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--ready-green);
}

.signup-success h3 {
    color: var(--trust-navy);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.signup-success p {
    color: var(--gray-600);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--linq-blue-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--linq-blue);
}

.feature-card h4 {
    color: var(--trust-navy);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ========== COUNTDOWN SECTION ========== */
.countdown-section {
    background: var(--gray-50);
    text-align: center;
}

.countdown-section--dark {
    background: var(--trust-navy);
    color: var(--white);
}

.countdown-header {
    margin-bottom: 2rem;
}

.countdown-header h2 {
    font-size: 1.75rem;
    color: var(--trust-navy);
    margin-bottom: 0.5rem;
}

.countdown-section--dark .countdown-header h2 {
    color: var(--white);
}

.countdown-header p {
    color: var(--gray-500);
}

.countdown-section--dark .countdown-header p {
    color: rgba(255, 255, 255, 0.7);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.countdown-item {
    background: var(--gray-200);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    min-width: 100px;
}

.countdown-section--dark .countdown-item {
    background: rgba(255, 255, 255, 0.1);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--linq-blue);
    line-height: 1;
}

.countdown-section--dark .countdown-value {
    color: var(--alert-amber);
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--gray-800);
    margin-top: 0.25rem;
}

.countdown-section--dark .countdown-label {
    color: rgba(255, 255, 255, 0.7);
}

.countdown-note,
.countdown-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--alert-amber-light);
    color: var(--trust-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
}

.countdown-warning {
    background: var(--danger-red);
    color: var(--white);
    font-weight: 600;
}

.countdown-note svg,
.countdown-warning svg {
    width: 20px;
    height: 20px;
    stroke: var(--alert-amber);
}

.countdown-warning svg {
    stroke: var(--white);
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--trust-navy);
    color: var(--white);
    padding: 2rem 1.5rem;
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
    margin: 0;
}

.site-footer a {
    color: var(--network-teal);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.5;
}

/* Footer social icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    color: var(--network-teal);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .site-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--trust-navy);
    padding: 1rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.9375rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: var(--network-teal);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-accept {
    background: var(--linq-blue);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--linq-blue-dark);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .header-badge span {
        display: none;
    }
    
    .header-badge {
        display: none;
    }
    
    /* Countdown - keep on one line at all mobile sizes */
    .countdown-timer {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 65px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Mobile container and card fixes */
@media (max-width: 680px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .signup-section .container {
        padding: 0 1rem;
    }
    
    .signup-form-container {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .signup-grid {
        width: 100%;
    }
    
    .signup-content {
        width: 100%;
    }
    
    .audience-card,
    .feature-card,
    .showcase-item,
    .tier-card,
    .coverage-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .audience-grid,
    .features-grid,
    .showcase-grid,
    .tiers-grid,
    .coverage-grid {
        width: 100%;
    }
    
    /* Fix benefits list text wrapping */
    .benefits-list li {
        flex-wrap: nowrap;
    }
    
    .benefits-list li span:last-child {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Form fixes */
    .form-group input,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Small mobile fixes */
@media (max-width: 400px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .signup-section .container {
        padding: 0 0.75rem;
    }
    
    .signup-form-container {
        padding: 1.25rem;
        margin: 0;
        border-radius: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-header h3 {
        font-size: 1.25rem;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .tier-card {
        padding: 1.5rem;
    }
    
    .coverage-card {
        padding: 1.5rem;
    }
    
    /* Form row - single column */
    .form-row {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Countdown - keep on one line */
    .countdown-timer {
        flex-wrap: nowrap;
        gap: 0.375rem;
        overflow-x: auto;
        justify-content: center;
        padding: 0 0.25rem;
    }
    
    .countdown-item {
        padding: 0.5rem 0.625rem;
        min-width: 50px;
        flex-shrink: 0;
    }
    
    .countdown-value {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.625rem;
    }
    
    .countdown-note {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.375rem;
    }
    
    .countdown-note span {
        line-height: 1.4;
    }
    
    .countdown-warning {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
    }
    
    /* Fix signup section */
    .signup-content h2 {
        font-size: 1.5rem;
    }
    
    .signup-content p {
        font-size: 1rem;
    }
    
    .benefits-list li {
        font-size: 0.9375rem;
    }
    
    .benefits-list .check {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .benefits-list .check svg {
        width: 12px;
        height: 12px;
    }
}

/* Extra small screens - 360px and below */
@media (max-width: 380px) {
    .container {
        padding: 0 0.625rem;
    }
    
    /* Prevent hero background overflow */
    .hero::before {
        display: none;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .framework-tags {
        gap: 0.5rem;
    }
    
    .framework-tag {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    /* Fix video container */
    .video-container {
        border-radius: 0.75rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
    
    .video-label {
        font-size: 0.875rem;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Audience cards */
    .audience-card {
        padding: 1.25rem;
    }
    
    .audience-card h3 {
        font-size: 1.125rem;
    }
    
    .audience-card p {
        font-size: 0.875rem;
    }
    
    .audience-icon {
        width: 52px;
        height: 52px;
    }
    
    .audience-icon svg {
        width: 26px;
        height: 26px;
    }
    
    /* Tier cards */
    .tier-card {
        padding: 1.25rem;
    }
    
    .tier-title h3 {
        font-size: 1.125rem;
    }
    
    .tier-header {
        gap: 0.75rem;
    }
    
    .tier-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Signup section - critical fixes */
    .signup-section {
        padding: 2.5rem 0;
    }
    
    .signup-section .container {
        padding: 0 0.625rem;
    }
    
    .signup-grid {
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .signup-content {
        width: 100%;
        max-width: 100%;
    }
    
    .signup-content h2 {
        font-size: 1.375rem;
    }
    
    .signup-content p {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .benefits-list {
        width: 100%;
    }
    
    .benefits-list li {
        font-size: 0.875rem;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .signup-form-container {
        padding: 1rem;
        border-radius: 0.625rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .signup-form {
        width: 100%;
    }
    
    .form-header {
        margin-bottom: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.125rem;
    }
    
    .form-header p {
        font-size: 0.8125rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group label {
        font-size: 0.8125rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
    }
    
    .form-footer {
        font-size: 0.75rem;
    }
    
    /* Countdown */
    .countdown-header h2 {
        font-size: 1.25rem;
    }
    
    .countdown-header p {
        font-size: 0.875rem;
    }
    
    .countdown-timer {
        gap: 0.25rem;
        padding: 0;
    }
    
    .countdown-item {
        padding: 0.5rem 0.5rem;
        min-width: 45px;
        border-radius: 0.5rem;
    }
    
    .countdown-value {
        font-size: 1.125rem;
    }
    
    .countdown-label {
        font-size: 0.5625rem;
    }
    
    /* Features */
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h4 {
        font-size: 0.9375rem;
    }
    
    .feature-card p {
        font-size: 0.8125rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Showcase */
    .showcase-content {
        padding: 1rem;
    }
    
    .showcase-content h4 {
        font-size: 0.9375rem;
    }
    
    .showcase-content p {
        font-size: 0.8125rem;
    }
    
    /* Founder */
    .founder-content h2 {
        font-size: 1.375rem;
    }
    
    .founder-content p {
        font-size: 0.9375rem;
    }
    
    /* Hero stats */
    .hero-stats {
        padding: 1rem;
        gap: 1rem;
    }
    
    .hero-stat-value {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== BETA CONTENTS SECTION (Index page specific) ========== */
.beta-contents-section {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.beta-contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.beta-contents-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.beta-contents-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--ready-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.beta-contents-item span {
    color: var(--gray-700);
    font-size: 0.9375rem;
}

/* ========== VENUE OPERATIONS PAGE STYLES ========== */

/* Hero eyebrow with icon (operations page variant) */
.hero-eyebrow svg {
    width: 18px;
    height: 18px;
}

/* Pain points box in hero */
.pain-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.pain-point svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-point--problem svg {
    stroke: var(--danger-red);
}

.pain-point--solution svg {
    stroke: var(--ready-green);
}

/* Feature cards with larger icons (operations/training pages) */
.feature-card-icon {
    width: 56px;
    height: 56px;
    background: var(--linq-blue-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--linq-blue);
}

/* Feature card titles and descriptions for operations pages */
.feature-card h3 {
    font-size: 1.25rem;
    color: var(--trust-navy);
    margin-bottom: 0.75rem;
}

.feature-card > p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Feature list inside cards */
.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.feature-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--ready-green);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Hero image for operations page */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-screenshot {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Operations page features section background override */
.features-section {
    background: var(--white);
}

/* Operations page feature grid - 2 columns */
@media (min-width: 768px) {
    .features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Operations feature card padding */
.features-section .feature-card {
    padding: 2rem;
    background: var(--gray-50);
}

/* Responsive adjustments for pain points */
@media (max-width: 400px) {
    .pain-points {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .pain-point {
        font-size: 0.875rem;
    }
}

@media (max-width: 380px) {
    .pain-points {
        gap: 0.5rem;
    }
    
    .pain-point {
        font-size: 0.8125rem;
    }
    
    .feature-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .feature-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
}

/* ========== STAFF TRAINING PAGE STYLES ========== */

/* Scenario box in hero */
.scenario-box {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.scenario-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--trust-navy);
    margin-bottom: 1rem;
}

.scenario-box h3 svg {
    width: 20px;
    height: 20px;
    stroke: var(--alert-amber);
}

.scenario-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .scenario-comparison {
        grid-template-columns: 1fr 1fr;
    }
}

.scenario-item {
    padding: 1rem;
    border-radius: 0.5rem;
}

.scenario-item strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.scenario-item p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.scenario-item--bad {
    background: var(--danger-red-light);
}

.scenario-item--bad strong {
    color: var(--danger-red);
}

.scenario-item--bad p {
    color: var(--gray-600);
}

.scenario-item--good {
    background: var(--ready-green-light);
}

.scenario-item--good strong {
    color: var(--ready-green);
}

.scenario-item--good p {
    color: var(--gray-600);
}

/* Evidence section */
.evidence-section {
    background: var(--white);
}

.evidence-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .evidence-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.evidence-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.evidence-icon {
    width: 64px;
    height: 64px;
    background: var(--ready-green-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.evidence-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--ready-green);
}

.evidence-card h3 {
    font-size: 1.25rem;
    color: var(--trust-navy);
    margin-bottom: 0.75rem;
}

.evidence-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Hero highlight colors for variant pages */
.hero--operations h1 .highlight {
    color: var(--network-teal);
}

.hero--training h1 .highlight {
    color: var(--ready-green);
}

/* Training page responsive */
@media (max-width: 400px) {
    .scenario-box {
        padding: 1rem;
    }
    
    .scenario-box h3 {
        font-size: 0.9375rem;
    }
    
    .scenario-item {
        padding: 0.75rem;
    }
    
    .evidence-card {
        padding: 1.5rem;
    }
    
    .evidence-icon {
        width: 52px;
        height: 52px;
    }
    
    .evidence-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Audit trail section */
.audit-section {
    background: var(--gray-50);
    padding: 5rem 0;
}

.audit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .audit-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.audit-content h2 {
    font-size: 2rem;
    color: var(--trust-navy);
    margin-bottom: 1rem;
}

.audit-content > p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.audit-features {
    list-style: none;
}

.audit-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.audit-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--ready-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.audit-features li strong {
    color: var(--trust-navy);
}

.audit-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    .audit-content h2 {
        font-size: 1.5rem;
    }
    
    .audit-content > p {
        font-size: 1rem;
    }
    
    .audit-features li {
        font-size: 0.875rem;
    }
}
