/* ==========================================
   INTERNET PLAN FINDER - PREMIUM 3D DESIGN SYSTEM
   Clean typography, layered shadows, floating cards
   ========================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-lighter: #eff6ff;
    --secondary: #7c3aed;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --gray-lightest: #f1f5f9;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --font: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    /* 3D Shadow System - each level adds more depth */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.05);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08), 0 16px 48px rgba(0,0,0,0.06);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.1), 0 32px 64px rgba(0,0,0,0.08);
    /* Colored shadows for buttons */
    --shadow-primary: 0 4px 14px rgba(37,99,235,0.25);
    --shadow-primary-lg: 0 8px 24px rgba(37,99,235,0.3);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.2s ease;
    --transition-medium: all 0.3s ease;
    --transition-slow: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-2);
    background: #f8fafc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* ===== BACKGROUNDS ===== */
.bg-light {
    background: var(--bg-light);
}

.bg-darker {
    background: var(--dark);
    color: var(--gray-light);
}

.bg-pattern {
    background: var(--bg-light);
    position: relative;
}

/* ===== UTILITY CLASSES ===== */
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.w-full { width: 100%; }
.text-accent { color: var(--primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray); }
.text-blue { color: var(--primary); }
.text-yellow { color: var(--warning); }
.text-green { color: var(--success); font-weight: 600; }
.text-red { color: var(--danger); font-weight: 600; }

/* ===== BLUEPRINT / SECTION LABEL ===== */
.container-blueprint {
    position: relative;
}

.blueprint-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-light);
    margin-bottom: 8px;
}

/* Underline highlight */
.underline-glitch {
    position: relative;
    display: inline;
}

.underline-glitch::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Glitch header (clean) */
.glitch-header {
    font-family: var(--font);
    font-weight: 800;
    color: var(--dark);
}

/* Terminal-style list (clean) */
.list-terminal {
    list-style: none;
    padding: 0;
}

.list-terminal li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--dark-2);
    border-bottom: 1px solid var(--gray-lighter);
}

.list-terminal li:last-child {
    border-bottom: none;
}

/* System message */
.system-msg {
    padding: 12px 16px;
    background: var(--white);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -0.025em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.65;
}

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

/* ===== BUTTONS - Premium 3D Style ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}

.btn-outline {
    background: var(--white);
    color: var(--dark-2);
    border: 1.5px solid var(--gray-lighter);
    box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
    box-shadow: var(--shadow-sm);
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 12px 16px;
    border: none;
    box-shadow: none;
}

.btn-text:hover {
    color: var(--primary-dark);
    background: var(--primary-lighter);
}

.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; justify-content: center; }
.btn-nav { padding: 10px 20px; font-size: 14px; }

/* Glitch button (clean alias) */
.btn-glitch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-glitch:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
}

/* ===== BADGES & TAGS ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--primary-lighter);
    color: var(--primary);
}

.badge-gold {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    background: var(--primary-lighter);
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
}

.tag-green { background: #d1fae5; color: #065f46; }
.tag-blue { background: #dbeafe; color: #1e40af; }
.tag-purple { background: #ede9fe; color: #5b21b6; }
.tag-orange { background: #fed7aa; color: #9a3412; }
.tag-red { background: #fee2e2; color: #991b1b; }

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--gray-lightest);
    color: var(--dark-3);
    letter-spacing: 0.3px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--gray-light);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar a {
    color: var(--gray-light);
    font-size: 13px;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar .separator {
    color: var(--dark-3);
}

.top-bar i {
    margin-right: 4px;
}

/* ===== HEADER & NAVBAR ===== */
.header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-lighter);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--dark);
    font-weight: 300;
    font-family: var(--font);
}

.logo i {
    color: var(--primary);
    font-size: 24px;
}

.logo strong {
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}

.nav-link.highlight {
    color: var(--danger);
    font-weight: 600;
}

.nav-link i.fa-chevron-down {
    font-size: 10px;
    transition: var(--transition);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== DROPDOWN MENUS ===== */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition-medium);
    min-width: 220px;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--dark-2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

/* Mega Dropdown */
.mega-dropdown {
    min-width: min(700px, 90vw);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding: 24px;
}

.nav-item:hover .mega-dropdown {
    transform: translateX(-50%) translateY(0);
}

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

.dropdown-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 12px;
    padding: 0 16px;
    font-weight: 700;
}

.dropdown-col.featured {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 16px;
}

.featured-card {
    margin-top: 8px;
}

.featured-card h5 {
    font-size: 16px;
    margin: 8px 0 4px;
}

.featured-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.featured-card .btn {
    margin-top: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background: linear-gradient(160deg, #0a0f1a, #111827, #0f172a);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.hero-stats .stat span {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ===== ZIP SEARCH BOX ===== */
.zip-search-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 8px;
    max-width: 600px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-xl);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input-wrapper i {
    color: var(--primary);
    font-size: 20px;
    padding-left: 16px;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    font-family: var(--font);
    padding: 14px 12px;
    color: var(--dark);
    border-radius: var(--radius);
    background: transparent;
}

.search-input-wrapper input::placeholder {
    color: var(--gray-light);
}

.search-input-wrapper .btn {
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-size: 16px;
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 4px;
    flex-wrap: wrap;
}

.search-tags span {
    font-size: 13px;
    color: var(--gray);
}

.search-tags .tag {
    background: var(--gray-lightest);
    color: var(--gray);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.search-tags .tag:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

/* ZIP Results */
.zip-results {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 800px;
    margin: 32px auto 0;
    box-shadow: var(--shadow-xl);
    text-align: left;
    border: 1px solid var(--gray-lighter);
}

.results-header h3 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 20px;
}

.results-header i {
    color: var(--success);
    margin-right: 8px;
}

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

.result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition-medium);
}

.result-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.result-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.result-provider-logo {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--gray-lighter);
}

.result-details h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.result-details span {
    font-size: 13px;
    color: var(--gray);
}

.result-specs {
    display: flex;
    gap: 24px;
    align-items: center;
}

.result-spec {
    text-align: center;
}

.result-spec .label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-spec .value {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
}

/* ===== FEATURED PROVIDER ===== */
.featured-provider {
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.featured-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-lighter);
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.featured-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.featured-left {
    flex: 1;
}

.featured-left h2 {
    font-size: 1.75rem;
    margin: 12px 0 8px;
}

.featured-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.featured-rating .stars {
    color: var(--warning);
    font-size: 18px;
}

.featured-rating span {
    font-size: 14px;
    color: var(--gray);
}

.featured-highlights {
    list-style: none;
}

.featured-highlights li {
    padding: 6px 0;
    font-size: 16px;
    color: var(--dark-2);
}

.featured-highlights li i {
    color: var(--success);
    margin-right: 10px;
    width: 20px;
}

.featured-right {
    flex-shrink: 0;
}

/* Price Card */
.price-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    min-width: 280px;
    box-shadow: var(--shadow);
}

.price-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 8px 0 4px;
}

.price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 8px;
}

.price .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price .cents {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.price .period {
    font-size: 16px;
    color: var(--gray);
    margin-top: 32px;
    margin-left: 4px;
}

.price-note {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

.price-card .btn {
    margin-bottom: 10px;
}

.disclosure-small {
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 12px;
}

/* Price box industrial */
.price-box-industrial {
    background: var(--bg-light);
    border: 2px solid var(--primary-lighter);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    min-width: 280px;
}

.corner-accents {
    display: contents;
}

.price-display {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

/* ===== PROVIDER CARDS ===== */
.providers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Filter Tabs */
.filter-tabs {
    display: inline-flex;
    background: var(--bg-light);
    padding: 4px;
    border-radius: var(--radius-full);
    gap: 4px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.filter-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.filter-btn:hover:not(.active) {
    color: var(--dark);
}

/* Provider card (basic) */
.provider-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.provider-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

/* Provider card industrial - 3D Depth */
.provider-card-industrial {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    margin-bottom: 12px;
    border: 1px solid var(--gray-lighter);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 24px;
    align-items: center;
    position: relative;
}

.provider-card-industrial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37,99,235,0.15);
}

/* Left accent bar on hover */
.provider-card-industrial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--transition);
}

.provider-card-industrial:hover::before {
    opacity: 1;
}

/* ===== RANK SYSTEM ===== */
.provider-rank {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rank-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.rank-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Provider Info */
.provider-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ===== PROVIDER LOGOS ===== */
.provider-logo,
.logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    border-radius: var(--radius);
    width: 100px;
    height: 48px;
    color: white;
    text-transform: uppercase;
}

.provider-logo img,
.result-provider-logo img,
.provider-logo-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.spectrum-logo { background: linear-gradient(135deg, #003057, #0072ce); }
.verizon-logo { background: linear-gradient(135deg, #c4302b, #ee0000); }
.att-logo { background: linear-gradient(135deg, #0057b8, #009fdb); }
.xfinity-logo { background: linear-gradient(135deg, #6b21a8, #9333ea); }
.tmobile-logo { background: linear-gradient(135deg, #e20074, #ff6b9d); }

/* Provider Details */
.provider-details h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.provider-rating .stars {
    color: var(--warning);
    font-size: 14px;
}

.rating-number {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.review-count {
    font-size: 13px;
    color: var(--gray);
}

.provider-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ===== PROVIDER SPECS ===== */
.provider-specs {
    display: flex;
    gap: 24px;
    align-items: center;
}

.spec,
.spec-col {
    text-align: center;
    min-width: 80px;
}

.spec-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 2px;
    font-weight: 600;
}

.spec-value {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
}

.price-highlight {
    color: var(--primary) !important;
    font-size: 18px !important;
}

.price-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

/* Provider Pros/Cons */
.provider-pros-cons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-pros-cons .pros span,
.provider-pros-cons .cons span {
    display: block;
    font-size: 13px;
    padding: 2px 0;
}

.provider-pros-cons .pros span i { color: var(--success); margin-right: 6px; }
.provider-pros-cons .cons span i { color: var(--danger); margin-right: 6px; }

.provider-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

/* ===== DISCLOSURE BAR ===== */
.disclosure-bar {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
    padding: 12px 20px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ===== COMPARISON TABLE - Premium Editorial Style ===== */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border: 1px solid var(--gray-lighter);
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead th {
    background: var(--dark);
    color: var(--white);
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: left;
    white-space: nowrap;
    position: sticky;
    top: 72px;
    z-index: 10;
}

.comparison-table thead th:first-child {
    border-radius: var(--radius-xl) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--radius-xl) 0 0;
}

.comparison-table tbody tr {
    transition: var(--transition);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.comparison-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-lighter);
    vertical-align: middle;
}

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

.active-row {
    background: #fffbeb !important;
    border-left: 4px solid var(--warning);
}

/* Table Provider */
.table-provider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-rank {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.editor-pick {
    font-size: 10px;
    background: linear-gradient(135deg, var(--warning), #f97316);
    color: var(--white);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
}

.table-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rating-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-primary);
}

.mini-stars {
    font-size: 12px;
    color: var(--warning);
}

/* ===== MOBILE COMPARISON CARDS ===== */
.comparison-cards-mobile {
    display: none;
}

.comparison-card-mobile {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 12px;
}

.comparison-card-mobile.featured {
    border: 2px solid var(--primary);
}

.comparison-card-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comparison-card-mobile-header strong {
    font-size: 17px;
}

.comparison-card-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.comparison-card-mobile-grid .label {
    color: var(--gray);
    font-size: 12px;
    display: block;
}

/* ===== VERIFIED DATE BADGE ===== */
.verified-date {
    display: block;
    font-size: 12px;
    color: var(--success);
    margin-top: 4px;
}

.verified-date i {
    margin-right: 3px;
}

/* ===== STATUS INDICATORS ===== */
.indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.indicator.green {
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.indicator.yellow {
    background: var(--warning);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

/* ===== CATEGORY CARDS ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-medium);
    color: var(--dark-2);
    display: block;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: var(--dark-2);
}

.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--primary-lighter);
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 16px;
}

.category-card:nth-child(2) .category-icon { background: #ede9fe; color: var(--secondary); }
.category-card:nth-child(3) .category-icon { background: #d1fae5; color: var(--success); }
.category-card:nth-child(4) .category-icon { background: #fef3c7; color: var(--warning); }
.category-card:nth-child(5) .category-icon { background: #fee2e2; color: var(--danger); }
.category-card:nth-child(6) .category-icon { background: #cffafe; color: var(--accent); }

.category-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.category-winner {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.card-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

/* ===== SPEED TEST CTA ===== */
.speed-test-cta {
    background: var(--dark);
    padding: 0;
}

.speed-test-banner {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 60px 0;
}

.speed-gauge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid rgba(37, 99, 235, 0.3);
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: gaugeRotate 3s ease infinite;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.15), inset 0 0 30px rgba(37, 99, 235, 0.05);
}

@keyframes gaugeRotate {
    0% { border-top-color: var(--primary); border-right-color: var(--primary); }
    50% { border-top-color: var(--success); border-right-color: var(--success); }
    100% { border-top-color: var(--primary); border-right-color: var(--primary); }
}

.gauge-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.gauge-unit {
    font-size: 14px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Radar container */
.radar-container {
    width: 160px;
    height: 160px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--gray-lighter);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-scan {
    display: none;
}

.radar-center {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.speed-right h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.speed-right p {
    color: var(--gray-light);
    font-size: 18px;
    margin-bottom: 24px;
}

/* ===== DEALS SECTION ===== */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deal-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.deal-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

.deal-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.deal-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    background: var(--danger);
    color: var(--white);
    margin-bottom: 12px;
}

.deal-badge-blue { background: var(--primary); }
.deal-badge-green { background: var(--success); }

.deal-provider {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.deal-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.old-price {
    font-size: 18px;
    color: var(--gray-light);
    text-decoration: line-through;
}

.new-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.deal-perks {
    margin: 16px 0 20px;
}

.deal-perks li {
    padding: 4px 0;
    font-size: 14px;
    color: var(--dark-2);
}

.deal-perks li i {
    color: var(--success);
    margin-right: 8px;
}

.deal-expiry {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 12px;
}

/* Deal card tech */
.deal-card-tech {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--gray-lighter);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.deal-card-tech:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.deal-card-tech.outline-only {
    border: 1.5px solid var(--gray-lighter);
}

.deal-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.deal-status.blinking {
    background: #fef2f2;
    color: var(--danger);
    animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.deal-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.deal-card-tech h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.deal-params {
    list-style: none;
    margin-bottom: 20px;
}

.deal-params li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--dark-2);
}

.deal-params span {
    font-size: 13px;
    color: var(--gray);
}

.price-strike {
    font-size: 15px;
    color: var(--gray-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-current {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.divider-line {
    height: 1px;
    background: var(--gray-lighter);
    margin: 16px 0;
}

/* ===== LOCATION SECTION ===== */
.states-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.state-link {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--dark-2);
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition-medium);
    font-weight: 500;
}

.state-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.highlight-state {
    background: var(--primary-lighter);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex: 1;
    max-width: 300px;
    position: relative;
    transition: var(--transition-medium);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-lighter);
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray);
}

.step-arrow {
    color: var(--gray-light);
    font-size: 24px;
}

/* ===== HOW WE RATE ===== */
.rating-factors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.rating-factor-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.rating-factor-card:hover {
    border-color: rgba(37,99,235,0.15);
    box-shadow: var(--shadow-sm);
}

.rating-factor-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.rating-factor-title {
    font-weight: 800;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

.rating-factor-weight {
    font-size: 13px;
    color: var(--gray);
}

/* ===== ARTICLES ===== */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

.article-card.article-featured {
    grid-column: span 2;
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-featured .article-image {
    height: 260px;
}

.article-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.article-img-placeholder.bg-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.article-img-placeholder.bg-green { background: linear-gradient(135deg, #10b981, #34d399); }
.article-img-placeholder.bg-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-content h3 a {
    color: var(--dark);
}

.article-content h3 a:hover {
    color: var(--primary);
}

.article-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-light);
}

.article-meta i {
    margin-right: 4px;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(37,99,235,0.15);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--gray-light);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 44px;
}

.faq-answer ul li {
    list-style: disc;
    margin-bottom: 6px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(400px circle at 20% 50%, rgba(255,255,255,0.1), transparent),
        radial-gradient(300px circle at 80% 50%, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
}

.newsletter-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 16px;
    font-family: var(--font);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    border-color: var(--white);
    background: rgba(255,255,255,0.2);
}

.newsletter-form .btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.newsletter-form .btn:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.newsletter-disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
}

.newsletter-disclaimer a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    z-index: 998;
    border-top: 1px solid var(--gray-lighter);
}

.sticky-mobile-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-mobile-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 64px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 300;
    font-family: var(--font);
}

.footer-logo i {
    color: var(--primary-light);
    font-size: 24px;
}

.footer-logo strong {
    font-weight: 800;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--gray-light);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-disclosure {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-disclosure p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray);
}

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

/* Footer terminal (clean alias) */
.footer-terminal {
    background: var(--dark);
    color: var(--gray-light);
    padding: 64px 0 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.terminal-text {
    font-family: var(--font);
    font-size: 14px;
    color: var(--gray);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary-lg);
}

/* ===== ADDITIONAL CARD STYLES ===== */
.speed-guide-card,
.tip-card,
.plan-card,
.sidebar-card,
.value-card,
.team-card,
.disclosure-card,
.contact-form-card,
.contact-method {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.speed-guide-card:hover,
.tip-card:hover,
.plan-card:hover,
.sidebar-card:hover,
.value-card:hover,
.team-card:hover,
.disclosure-card:hover,
.contact-form-card:hover,
.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .top-bar,
    .footer,
    .back-to-top,
    .sticky-mobile-cta,
    .newsletter-section,
    .speed-test-cta,
    .footer-social,
    .btn,
    .hamburger,
    .nav-right {
        display: none !important;
    }

    body {
        background: var(--white);
        color: var(--dark);
        font-size: 12pt;
    }

    .hero {
        background: var(--white) !important;
        padding: 20px 0;
        min-height: auto;
    }

    .hero h1,
    .hero-subtitle {
        color: var(--dark) !important;
    }

    .section {
        padding: 20px 0;
    }

    .provider-card,
    .provider-card-industrial,
    .deal-card,
    .deal-card-tech {
        box-shadow: none;
        border: 1px solid var(--gray-lighter);
        break-inside: avoid;
    }
}
