/* ========================================
   DIGITAL EDGE COMMUNICATION - STYLESHEET
   AT&T Fiber Authorized Reseller Website
   ======================================== */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --att-blue: #00a8e0;
    --att-dark-blue: #0057a8;
    --att-navy: #001f5b;
    --primary: #0057a8;
    --primary-dark: #003d7a;
    --primary-light: #00a8e0;
    --accent: #ff6b00;
    --accent-dark: #e05a00;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --mid-gray: #e8edf5;
    --text-dark: #1a1a2e;
    --text-body: #4a4a6a;
    --text-light: #7a7a9a;
    --success: #28a745;
    --border: #dee2eb;
    --shadow: 0 4px 20px rgba(0, 87, 168, 0.12);
    --shadow-hover: 0 8px 40px rgba(0, 87, 168, 0.22);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--att-navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.82rem;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-content a {
    color: var(--att-blue);
    font-weight: 600;
}

.top-bar-content a:hover { color: var(--white); }

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo a { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-desktop ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-desktop ul li a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-desktop ul li a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 15px 20px;
}

.mobile-nav.open { display: block; }

.mobile-nav ul { display: flex; flex-direction: column; gap: 5px; }
.mobile-nav ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.mobile-call-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    text-align: center;
    margin-top: 5px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-hero {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
}

.btn-hero:hover {
    background: var(--att-blue);
    color: var(--white);
    border-color: var(--att-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.btn-outline-hero {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
}

.btn-outline-hero:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-plan-featured {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--white);
    color: var(--primary);
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-plan-featured:hover {
    background: var(--att-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: var(--radius-lg);
    font-weight: 800;
}

.btn-cta:hover {
    background: var(--att-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.btn-lg {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--att-navy) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 224, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--white);
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--att-blue);
    display: block;
}

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-feat i { color: var(--att-blue); }

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-disclaimer {
    padding: 14px 20px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--att-blue);
}

.hero-disclaimer p {
    font-size: 0.78rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--light-gray);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.trust-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* ========== SECTIONS ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header.light p { color: rgba(255,255,255,0.8); }

.section-label {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ========== PLANS ========== */
.plans {
    padding: 90px 0;
    background: var(--light-gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.plan-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 87, 168, 0.4);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.plan-card.featured .plan-header h3 { color: var(--white); }

.plan-speed {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.plan-card.featured .plan-speed { color: var(--att-blue); }

.plan-speed span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.plan-header p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.plan-card.featured .plan-header p { color: rgba(255,255,255,0.7); }

.plan-price {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.plan-card.featured .plan-price {
    border-color: rgba(255,255,255,0.2);
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.plan-card.featured .price-amount { color: var(--white); }

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.plan-card.featured .price-period { color: rgba(255,255,255,0.7); }

.plan-features {
    margin: 20px 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--mid-gray);
}

.plan-card.featured .plan-features li {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.15);
}

.plan-features li:last-child { border: none; }

.plan-features li i {
    color: var(--success);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.plan-card.featured .plan-features li i { color: var(--att-blue); }

.plan-note {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.4;
    text-align: center;
}

.plan-card.featured .plan-note { color: rgba(255,255,255,0.5); }

.plans-disclaimer {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.plans-disclaimer p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ========== FEATURES ========== */
.features {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--att-navy) 0%, var(--primary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-5px);
    border-color: var(--att-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 224, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.6rem;
    color: var(--att-blue);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ========== WHY US ========== */
.why-us {
    padding: 90px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-us-content > p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.why-list {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-list li i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-list li div strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.why-list li div p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--att-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 90px 0;
    background: var(--light-gray);
}

.steps-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i { font-size: 1.8rem; color: var(--white); }

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
}

.step p a { color: var(--primary); font-weight: 600; }

.step-arrow {
    color: var(--primary-light);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.how-it-works-cta { text-align: center; }

/* ========== FAQ ========== */
.faq {
    padding: 90px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(0, 87, 168, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: var(--font);
}

.faq-question:hover { background: var(--light-gray); }
.faq-item.open .faq-question { background: var(--light-gray); color: var(--primary); }

.faq-question i {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    background: var(--white);
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.7;
}

.faq-answer a { color: var(--primary); font-weight: 600; }

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--att-navy) 0%, var(--primary) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 224, 0.2), transparent 70%);
    border-radius: 50%;
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.cta-hours {
    margin-top: 16px !important;
    font-size: 0.9rem !important;
    opacity: 0.7;
}

/* ========== CONTACT ========== */
.contact {
    padding: 90px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i { font-size: 1.8rem; color: var(--white); }

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card p, .contact-card address {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.6;
    font-style: normal;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin: 8px 0;
}

.contact-link:hover { color: var(--primary-dark); }

.contact-hours {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--att-navy);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-brand .logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--att-blue);
}

.footer-brand .logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a { color: var(--att-blue); }
.footer-contact a:hover { color: var(--white); }
.footer-contact i { color: var(--att-blue); }

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--att-blue);
    display: inline-block;
}

.footer-col ul li a {
    display: block;
    padding: 5px 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--att-blue);
    padding-left: 5px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-list li span:last-child { color: var(--att-blue); font-weight: 600; }

.footer-bottom {
    padding: 30px 0;
}

.footer-disclaimer {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    border-left: 4px solid var(--att-blue);
}

.footer-disclaimer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-legal-links a:hover { color: var(--att-blue); }

.copyright {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    padding-bottom: 20px;
}

.copyright a { color: var(--att-blue); }

/* ========== FLOATING CALL BUTTON ========== */
.floating-call {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.floating-call a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 30px rgba(0, 87, 168, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 6px 30px rgba(0, 87, 168, 0.5); }
    50% { box-shadow: 0 6px 50px rgba(0, 87, 168, 0.8); }
    100% { box-shadow: 0 6px 30px rgba(0, 87, 168, 0.5); }
}

/* ========== SCROLL TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 998;
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-top.visible { display: flex; }

/* ========================================
   RESPONSIVE / MOBILE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-stats {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav-desktop { display: none; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    /* Top Bar */
    .top-bar-content {
        gap: 12px;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero { padding: 60px 0 50px; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .btn-hero, .btn-outline-hero { width: 100%; justify-content: center; }

    /* Plans */
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.featured { transform: scale(1); }

    /* Features */
    .features-grid { grid-template-columns: 1fr 1fr; }

    /* Steps */
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .step { max-width: 100%; width: 100%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Floating Button */
    .floating-call { display: block; }
    .scroll-top { bottom: 80px; }

    /* Trust */
    .trust-items { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .section-header { margin-bottom: 40px; }
    .plans, .features, .why-us, .how-it-works, .faq, .contact { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .top-bar-content span:nth-child(3) { display: none; }
    .hero-features { gap: 8px; }
    .hero-feat { font-size: 0.8rem; padding: 6px 12px; }
    .stat-card { padding: 24px 16px; }
    .stat-number { font-size: 1.8rem; }
    .cta-banner { padding: 60px 0; }
    .footer-legal-links { flex-direction: column; align-items: center; gap: 10px; }
}