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

:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-primary: #00d4ff;
    --accent-secondary: #00a8cc;
    --accent-tertiary: #0088aa;
    --success: #00ff88;
    --warning: #ffaa00;
    --border-color: #333333;
}

/* ===========================
   LOADING SPINNER
   =========================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--medium-gray);
    border-top: 4px solid var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    border-top: 2px solid var(--accent-primary);
    padding: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--accent-primary);
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent-primary);
    color: var(--black);
}

.cookie-btn-accept:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: var(--text-white);
    background-color: var(--medium-gray);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--black);
    color: var(--text-white);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   PROMO BANNER
   =========================== */
.promo-banner {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--black);
    padding: 12px 0;
    text-align: center;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-badge {
    background-color: var(--black);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.promo-text {
    font-size: 15px;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 800;
    font-size: 16px;
}

.promo-btn {
    background-color: var(--black);
    color: var(--accent-primary);
    padding: 6px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===========================
   TRUST BADGES
   =========================== */
.trust-section {
    background-color: var(--dark-gray);
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 88px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-text {
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
    background-color: var(--black);
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-white);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--accent-primary);
    font-size: 14px;
}

/* ===========================
   FLOATING CHAT BUTTON
   =========================== */
.chat-fab {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transform: none;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--black);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    z-index: 9997;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
    transition: all 0.3s ease;
    animation: chatPulse 2s infinite;
    border: 2px solid var(--black);
}

.chat-fab:hover {
    box-shadow: 0 8px 35px rgba(0, 212, 255, 0.9);
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    transform: scale(1.08) translateY(-3px);
}

.chat-fab svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.chat-fab span {
    white-space: nowrap;
}

@keyframes chatPulse {
    0%, 100% {
        box-shadow: -4px 4px 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: -6px 6px 30px rgba(0, 212, 255, 0.6);
    }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background-color: var(--dark-gray);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo::before {
    content: "SBH";
    background-color: var(--text-white);
    color: var(--medium-gray);
    padding: 8px 16px;
    border-radius: 0 12px 0 12px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary);
}

.btn-nav-facebook {
    background-color: #1877f2;
    color: var(--text-white) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-nav-facebook svg {
    flex-shrink: 0;
}

.btn-nav-facebook:hover {
    background-color: #166fe5;
    color: var(--text-white) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 100px 0;
    text-align: center;
    background-image: url('https://eu-assets.simpleview-europe.com/stoke/imageresizer/?image=%2Fdbimgs%2FSTOK%20-%20Main%20Gallery%20-%20Countryside%20-%20Roaches.jpg&action=Background_Overlay');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, 0.85);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-primary);
}

.subheadline {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--medium-gray);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    border-color: var(--accent-primary);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-primary);
}

.btn-tertiary:hover {
    background-color: var(--accent-primary);
    color: var(--black);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--medium-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent-primary);
}

.icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-white);
}

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

/* ===========================
   COVERAGE SECTION
   =========================== */
.coverage-section {
    padding: 80px 0;
    background-color: var(--black);
}

.coverage-text {
    max-width: 900px;
    margin: 0 auto;
}

.coverage-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.coverage-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.area-group h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.area-list {
    list-style: none;
    padding: 0;
}

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

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

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

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

.coverage-map {
    text-align: center;
}

.map-placeholder {
    background-color: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 15px;
}

.map-placeholder svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.map-caption {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    padding: 60px 0;
    text-align: center;
    background-color: var(--dark-gray);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-primary);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 20px;
}

.guarantee-badge svg {
    flex-shrink: 0;
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.pricing-card {
    background-color: var(--dark-gray);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--accent-secondary);
}

.pricing-card.premium {
    border-color: var(--success);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-primary);
    color: var(--black);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card.premium .badge {
    background-color: var(--success);
}

.price-header h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.pricing-card.premium .price {
    color: var(--success);
}

.price-header p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.spots-remaining {
    background-color: var(--accent-primary);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    animation: pulse 2s infinite;
}

.spots-remaining.urgent {
    background-color: #ff3366;
    color: var(--text-white);
    animation: urgentPulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes urgentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 51, 102, 0);
    }
}

.features-list {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

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

.features-list li::before {
    content: "✓ ";
    color: var(--accent-primary);
    font-weight: 700;
    margin-right: 8px;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* ===========================
   AD EXAMPLES SECTION
   =========================== */
.ad-examples {
    padding: 80px 0;
    background-color: var(--black);
}

.ad-examples h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background-color: var(--medium-gray);
}

.comparison-row.header .comparison-cell {
    font-weight: 700;
    padding: 20px 15px;
}

.comparison-cell {
    padding: 18px 15px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-right: none;
}

.feature-cell {
    text-align: left;
    font-weight: 500;
}

.price-small {
    display: block;
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 5px;
}

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

.comparison-cell:not(.feature-cell) {
    color: var(--text-gray);
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--accent-primary);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #151515;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ===========================
   ISSUES SECTION
   =========================== */
.issues {
    padding: 80px 0;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.issue-card {
    background-color: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.issue-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.issue-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent-primary);
}

.issue-icon svg {
    width: 100%;
    height: 100%;
}

.issue-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.issue-date {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.issue-card .btn {
    width: 100%;
}

.coming-soon-notice {
    background-color: var(--dark-gray);
    border: 2px solid var(--accent-primary);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-notice .notice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--accent-primary);
}

.coming-soon-notice .notice-icon svg {
    width: 100%;
    height: 100%;
}

.coming-soon-notice h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.coming-soon-notice p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.coming-soon-notice p:last-child {
    margin-bottom: 0;
    margin-top: 25px;
}

.coming-soon-notice a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.coming-soon-notice a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form-wrapper {
    background-color: var(--dark-gray);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    width: 100%;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: var(--dark-gray);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    margin-top: 0;
}

footer p {
    color: var(--text-gray);
    font-size: 14px;
}

footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer with sections (for legal pages) */
.footer {
    background-color: var(--black);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 30px 0;
    margin-top: 0;
    text-align: center;
}

.footer h3 {
    color: var(--text-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent-primary);
    margin: 0 auto 20px auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

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

.footer-note {
    color: rgba(153, 153, 153, 0.6);
    font-size: 11px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--accent-primary);
}

.legal-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.legal-updated {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
}

.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: var(--accent-primary);
    font-size: 32px;
    margin: 40px 0 20px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    color: var(--text-white);
    font-size: 24px;
    margin: 30px 0 15px 0;
}

.legal-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.legal-text ul {
    margin: 15px 0 25px 30px;
    color: var(--text-gray);
}

.legal-text ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-text a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.legal-text strong {
    color: var(--text-white);
}

/* ===========================
   404 ERROR PAGE
   =========================== */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 150px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.error-404 p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.error-actions .btn-primary,
.error-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
}

.error-actions .btn-primary svg {
    width: 20px;
    height: 20px;
}

.error-suggestions {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.error-suggestions h3 {
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions ul li {
    margin-bottom: 12px;
}

.error-suggestions ul li a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.error-suggestions ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent-primary);
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.faq-category-title svg {
    flex-shrink: 0;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

.faq-answer {
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    margin-left: 20px;
    list-style: disc;
}

.faq-answer ul li {
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--accent-primary);
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--accent-secondary);
}

@media (max-width: 768px) {
    .faq-category-title {
        font-size: 20px;
        gap: 10px;
    }

    .faq-question {
        padding: 16px;
        font-size: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: var(--dark-gray);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        max-height: 500px;
        padding: 20px;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .nav-links .btn-nav-facebook {
        display: none !important;
    }

    .nav-links li:has(.btn-nav-facebook) {
        display: none;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }

    .subheadline {
        font-size: 16px;
    }

    .logo {
        font-size: 16px;
    }

    .hero {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .pricing-grid,
    .feature-grid,
    .benefits-grid,
    .issues-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper,
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .coverage-areas {
        grid-template-columns: 1fr;
    }

    .coverage-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .benefits h2,
    .cta-section h2,
    .coverage-text h2,
    .testimonials-section h2 {
        font-size: 28px;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-text {
        font-size: 13px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .trust-text {
        font-size: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-fab {
        right: 20px;
        bottom: 20px;
        top: auto;
        transform: none;
        border-radius: 50%;
        padding: 16px;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .chat-fab span {
        display: none;
    }
    
    .chat-fab svg {
        width: 28px;
        height: 28px;
    }
    
    .chat-fab:hover {
        right: 20px;
        transform: scale(1.1);
    }

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

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .feature-cell::before {
        content: '';
        display: block;
        font-weight: 700;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 36px;
    }
    
    .legal-text h2 {
        font-size: 26px;
    }
    
    .legal-text h3 {
        font-size: 20px;
    }
    
    .error-number {
        font-size: 100px;
    }
    
    .error-404 h1 {
        font-size: 32px;
    }
    
    .cookie-consent {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .headline {
        font-size: 26px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
    
    .legal-hero h1 {
        font-size: 28px;
    }
    
    .error-number {
        font-size: 80px;
    }
    
    .error-404 h1 {
        font-size: 24px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
    }
    
}
