/* Extracted from gigabit-landing.php */

/* ===================================
   GIGABIT LANDING - CYBERPUNK STYLE
   =================================== */

body {
    background: #0a0f1a !important;
}

header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: rgba(10, 15, 26, 0.98) !important;
    backdrop-filter: blur(10px);
}

body {
    padding-top: 80px;
}

footer {
    position: relative;
    z-index: 10;
    background: #0a0f1a !important;
}

.sticky-call-btn {
    display: none !important;
}


:root {
    --gig-bg: #0a0f1a;
    --gig-primary: #00d4ff;
    --gig-secondary: #00ffc8;
    --gig-accent: #00ff88;
    --gig-dark: #0d1525;
    --gig-card: rgba(13, 21, 37, 0.8);
    --gig-text: #e0e0e0;
    --gig-glow: 0 0 30px rgba(0, 212, 255, 0.5);
    --gig-glow-green: 0 0 30px rgba(0, 255, 200, 0.5);
}

.gigabit-page {
    background: transparent;
    min-height: 100vh;
    color: var(--gig-text);
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* === HYPERSPACE BACKGROUND === */
.hyperspace-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* === CONTAINER === */
.gig-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* === HERO SECTION === */
.gig-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.gig-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gig-primary), var(--gig-secondary));
    color: #0a0f1a;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 32px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}

.gig-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff !important;
    
    
    text-shadow: var(--gig-glow);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.gig-hero-sub {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--gig-secondary);
    margin-bottom: 48px;
    font-family: 'Courier New', monospace;
    min-height: 2em;
}

.gig-hero-gigabit {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gig-primary);
    text-shadow: var(--gig-glow);
    margin-bottom: 16px;
}

.gig-hero-price-block {
    margin-bottom: 32px;
}

.gig-hero-price {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gig-primary), var(--gig-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

.gig-hero-price-suffix {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff !important;
    
    
    font-weight: 700;
    margin-left: 8px;
}

.gig-hero-connection {
    font-size: 1.8rem;
    color: var(--gig-text);
    margin-bottom: 48px;
    opacity: 0.9;
}

/* === FORMS === */
.gig-form {
    background: var(--gig-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    margin: 0 auto;
}

.gig-form-row {
    margin-bottom: 16px;
}

.gig-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.9) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: #fff !important;
    
    
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.gig-input {
    color: var(--gig-primary) !important;
    text-shadow: 0 0 8px var(--gig-primary), 0 0 15px rgba(0, 212, 255, 0.5) !important;
    -webkit-text-fill-color: var(--gig-primary) !important;
}

.gig-input:focus {
    outline: none;
    border-color: var(--gig-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Fix autofill colors on mobile */
.gig-input:-webkit-autofill,
.gig-input:-webkit-autofill:hover,
.gig-input:-webkit-autofill:focus,
.gig-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.4) inset !important;
    
    
    
    caret-color: #fff !important;
    
    
}

.gig-input::placeholder {

/* iOS Safari fix */
input[type="tel"],
input[type="text"] {
    
    
    
    opacity: 1 !important;
}
    color: rgba(255, 255, 255, 0.7) !important;
}

.gig-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gig-primary), var(--gig-secondary));
    border: none;
    border-radius: 12px;
    color: #0a0f1a;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.gig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.15);
}

.gig-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.gig-btn:hover::before {
    left: 100%;
}

/* === SECTION STYLES === */
.gig-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.gig-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    color: #fff !important;
    
    
    text-shadow: var(--gig-glow);
    margin-bottom: 16px;
}

.gig-section-sub {
    font-size: 2rem;
    text-align: center;
    color: var(--gig-text);
    margin-bottom: 48px;
    opacity: 0.8;
}

/* === SPEEDTEST SIMULATOR === */
.speedtest-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speedtest-gauge {
    width: 280px;
    height: 160px;
    position: relative;
    margin-bottom: 30px;
}

.speedtest-arc {
    width: 280px;
    height: 140px;
    border: 10px solid rgba(0, 212, 255, 0.15);
    border-bottom: none;
    border-radius: 140px 140px 0 0;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05), transparent);
}

.speedtest-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 6px;
    height: 90px;
    background: linear-gradient(to top, var(--gig-secondary), var(--gig-primary));
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
    border-radius: 6px;
    transition: transform 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 20px var(--gig-primary), 0 0 40px var(--gig-primary);
}

.speedtest-needle::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--gig-secondary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gig-secondary), 0 0 30px var(--gig-primary);
}

.speedtest-value {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gig-primary), var(--gig-secondary), #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1;
    margin-top: 20px;
}

.speedtest-unit {
    font-size: 1.8rem;
    color: var(--gig-text);
    margin-top: 8px;
    letter-spacing: 2px;
}

/* === COMPARISON BLOCK === */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.compare-card {
    background: var(--gig-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.compare-card.old {
    opacity: 0.7;
}

.compare-card.new {
    border-color: var(--gig-primary);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.15);
}

.compare-label {
    font-size: 1.6rem;
    color: var(--gig-text);
    margin-bottom: 16px;
    opacity: 0.8;
}

.compare-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.compare-file {
    font-size: 2rem;
    color: #fff !important;
    
    
    margin-bottom: 24px;
}

.compare-time {
    font-size: 2.5rem;
    font-weight: 800;
}

.compare-card.old .compare-time {
    color: #ff6b6b;
}

.compare-card.new .compare-time {
    color: var(--gig-secondary);
    text-shadow: var(--gig-glow-green);
}

.compare-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 24px;
    overflow: hidden;
}

.compare-progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 2s ease-out;
}

.compare-card.old .compare-progress-bar {
    background: #ff6b6b;
    width: 0;
}

.compare-card.new .compare-progress-bar {
    background: linear-gradient(90deg, var(--gig-primary), var(--gig-secondary));
    width: 0;
}

/* === TECH GRID === */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    background: var(--gig-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: var(--gig-primary);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.15);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.tech-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gig-primary);
    margin-bottom: 8px;
}

.tech-desc {
    font-size: 1.5rem;
    color: var(--gig-text);
    opacity: 0.8;
}

/* === TARIFF CARD === */
.tariff-card {
    max-width: 450px;
    margin: 0 auto;
    background: #0d1525;
    border: 2px solid var(--gig-primary);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.tariff-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gig-primary);
    margin-bottom: 24px;
}

.tariff-speed {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gig-primary), var(--gig-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    position: relative;
}

.tariff-price {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.tariff-price span {
    font-size: 1.5rem;
    opacity: 0.8;
}

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

.tariff-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tariff-features li::before {
    content: '✓';
    color: var(--gig-secondary);
    font-weight: bold;
}

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

.review-card {
    background: var(--gig-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gig-primary), var(--gig-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0f1a;
}

.review-name {
    font-weight: 700;
    color: #fff !important;
    
    
}

.review-date {
    font-size: 1.4rem;
    color: var(--gig-text);
    opacity: 0.6;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 12px;
}

.review-text {
    color: var(--gig-text);
    line-height: 1.6;
}

/* === COVERAGE === */
.coverage-block {
    text-align: center;
    background: var(--gig-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.coverage-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gig-primary);
}

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

.faq-item {
    background: var(--gig-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-question {
    list-style: none;
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #fff !important;
    
    
}


.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gig-primary);
    transition: transform 0.3s;
}

.faq-item[open] 
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--gig-text);
    line-height: 1.6;
}

.faq-item[open] .faq-answer {
    display: block;
}

/* === FINAL CTA === */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 200, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-form {
    max-width: 450px;
    margin: 32px auto 0;
}

/* === EXIT POPUP === */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.exit-popup {
    background: var(--gig-dark);
    border: 2px solid var(--gig-primary);
    border-radius: 24px;
    padding: 48px;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.15);
    animation: popup-in 0.3s ease-out;
}

@keyframes popup-in {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--gig-text);
    font-size: 24px;
    cursor: pointer;
}

.exit-popup-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff !important;
    
    
    margin-bottom: 16px;
}

.exit-popup-text {
    font-size: 1.3rem;
    color: var(--gig-secondary);
    margin-bottom: 32px;
}


/* === PHONE MODAL === */
.phone-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.phone-modal {
    background: #0d1525;
    border: 2px solid var(--gig-primary);
    border-radius: 24px;
    padding: 48px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.3);
}

.phone-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.phone-modal-close:hover {
    opacity: 1;
}

.phone-modal h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.phone-modal p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.phone-modal .gig-input {
    width: 100%;
    margin-bottom: 16px;
}

.phone-modal .gig-btn {
    width: 100%;
}

/* === SUCCESS MODAL === */
.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.success-modal {
    background: var(--gig-dark);
    border: 2px solid var(--gig-secondary);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    box-shadow: var(--gig-glow-green);
    animation: success-pulse 0.5s ease-out;
}

@keyframes success-pulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    animation: check-bounce 0.5s ease-out 0.3s both;
}

@keyframes check-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gig-secondary);
    margin-bottom: 16px;
    text-shadow: var(--gig-glow-green);
}

.success-text {
    font-size: 2rem;
    color: var(--gig-text);
}

/* === MOBILE STICKY CTA === */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 1000;
    box-sizing: border-box;
}

/* === RESPONSIVE === */
@media (min-width: 769px) {
    .speedtest-gauge {
        width: 320px;
        height: 180px;
        margin-bottom: 40px;
    }
    .speedtest-arc {
        width: 320px;
        height: 160px;
    }
    .speedtest-needle {
        height: 100px;
    }
    .speedtest-value {
        font-size: 6rem;
    }
}

@media (max-width: 1024px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        background: rgba(10, 15, 26, 0.98) !important;
    }
    .gig-hero { padding-top: 140px !important; }

    .gig-hero { padding: 100px 20px 60px; min-height: auto; }
    .compare-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .final-cta { padding: 40px 24px; }
    .mobile-sticky-cta { display: block; }
    .gig-section { padding: 60px 20px; }
}

.tech-icon svg {
    stroke: var(--gig-primary);
    transition: all 0.3s;
}

.tech-card:hover .tech-icon svg {
    stroke: var(--gig-secondary);
    filter: drop-shadow(0 0 10px var(--gig-primary));
}

.compare-icon svg {
    transition: all 0.3s;
}

.coverage-icon svg {
    animation: pulse-glow 2s ease-in-out infinite;
}

.star-icon {
    display: inline-block;
    margin-right: 2px;
    filter: drop-shadow(0 0 3px var(--gig-primary));
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}
