/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --color-bg-dark: #070b19;
    --color-bg-card: rgba(13, 21, 41, 0.65);
    --color-bg-card-hover: rgba(20, 31, 60, 0.8);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-glow: rgba(0, 180, 216, 0.3);
    
    /* Highlight blue colors from the client's flyer */
    --color-primary: #0288d1;
    --color-glow-blue: #00b4d8;
    --color-glow-cyan: #00f5d4;
    --color-purple: #3f51b5;
    
    /* Text colors */
    --color-text-title: #ffffff;
    --color-text-body: #94a3b8;
    --color-text-muted: #64748b;
    
    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-body);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   SPLASH SCREEN
   ========================================== */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-dark);
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: splashGlowPulse 3s ease-in-out infinite alternate;
}

.splash-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,180,216,0.25) 0%, transparent 70%);
    top: -100px; left: -100px;
}

.splash-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(63,81,181,0.2) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation-delay: 1.5s;
}

@keyframes splashGlowPulse {
    from { transform: scale(1); opacity: 0.6; }
    to   { transform: scale(1.2); opacity: 1; }
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 1;
}

.splash-logo-wrapper {
    animation: splashLogoIn 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
    opacity: 0;
}

@keyframes splashLogoIn {
    from { opacity: 0; transform: scale(0.4) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.splash-logo-svg {
    width: 260px;
    height: 240px;
    filter: drop-shadow(0 0 30px rgba(0, 180, 216, 0.6)) drop-shadow(0 0 60px rgba(0, 180, 216, 0.3));
}

.splash-tagline {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    text-align: center;
    animation: splashTaglineIn 0.7s ease 0.5s forwards;
    opacity: 0;
}

.splash-tagline span {
    background: linear-gradient(90deg, #0288d1, #00f5d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes splashTaglineIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.splash-progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    animation: splashFadeIn 0.5s ease 0.8s forwards;
    opacity: 0;
}

.splash-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0288d1, #00f5d4);
    border-radius: 10px;
    animation: splashFill 5s linear 0.8s forwards;
}

@keyframes splashFadeIn {
    to { opacity: 1; }
}

@keyframes splashFill {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ==========================================
   ÁREA DO CLIENTE DROPDOWN
   ========================================== */
.cliente-dropdown {
    position: relative;
    display: inline-block;
}

.cliente-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.cliente-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.cliente-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: rgba(10, 18, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 14px;
    padding: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 1000;
}

.cliente-dropdown.open .cliente-dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cliente-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: var(--color-text-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.cliente-dropdown-item:hover {
    background: rgba(0, 180, 216, 0.12);
    color: #fff;
}

.cliente-dropdown-item i {
    color: var(--color-glow-blue);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

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

ul {
    list-style: none;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 180, 216, 0.3);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 180, 216, 0.6);
}

/* ==========================================
   REUSABLE COMPONENTS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-primary) 50%, var(--color-glow-blue) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-glow-blue);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
    pointer-events: none;
}

.btn-glow:hover::after {
    transform: scale(1);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.w-full {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 50px;
    color: var(--color-glow-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 50px;
    color: var(--color-glow-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    color: var(--color-text-title);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-body);
}

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

.highlight-text {
    background: linear-gradient(135deg, var(--color-glow-blue), var(--color-glow-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 11, 25, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 70px;
    width: auto;
}

.logo-text-top {
    font-family: var(--font-primary);
    font-size: 21px;
    font-weight: 900;
    fill: url(#logoGrad);
    letter-spacing: 1px;
}

.logo-text-bottom {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    fill: #ffffff;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-body);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-glow-blue), var(--color-glow-cyan));
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--color-glow-blue);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-purple);
    bottom: -150px;
    right: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--color-text-title);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-body);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-title);
    background: linear-gradient(135deg, #ffffff, var(--color-glow-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Network Status Card */
.visual-card-wrapper {
    position: relative;
}

.visual-card-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-glow-blue));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
    filter: blur(20px);
}

.visual-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.card-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-left: auto;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ping-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ping-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.ping-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-glow-cyan);
}

.pulse-container {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wifi-icon {
    font-size: 2rem;
    color: var(--color-glow-blue);
    z-index: 5;
}

.pulse-circle, .pulse-circle-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 180, 216, 0.2);
    animation: pulse 2.5s infinite ease-out;
}

.pulse-circle-2 {
    animation-delay: 1.25s;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.speed-bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.speed-bar-fill {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-glow-blue), var(--color-glow-cyan));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

.speed-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
}

.speed-type {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.speed-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-title);
}

/* ==========================================
   ABOUT COMPANY SECTION (Empresa)
   ========================================== */
.company-section {
    padding: 100px 0;
    position: relative;
}

.company-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.company-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.fiber-globe {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-node {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 30px #ffffff, 0 0 50px var(--color-glow-blue);
    z-index: 3;
}

.signal-ring {
    position: absolute;
    border: 2px solid var(--color-glow-blue);
    border-radius: 50%;
    animation: ringEmit 4s infinite linear;
}

.ring-2 {
    animation-delay: 2s;
}

@keyframes ringEmit {
    0% { width: 40px; height: 40px; opacity: 1; border-color: var(--color-glow-cyan); }
    100% { width: 350px; height: 350px; opacity: 0; border-color: var(--color-purple); }
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: rgba(0, 245, 212, 0.2);
    top: 10%;
    left: 15%;
    animation: float 6s infinite ease-in-out;
}

.shape-2 {
    width: 90px;
    height: 90px;
    background: rgba(63, 81, 181, 0.25);
    bottom: 15%;
    right: 10%;
    animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.company-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.value-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-glow-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.value-item h4 {
    color: var(--color-text-title);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--color-text-body);
}

/* ==========================================
   PLANS SECTION (Nossos Planos)
   ========================================== */
.plans-section {
    padding: 100px 0;
    position: relative;
}

.glow-3 {
    width: 600px;
    height: 600px;
    background: var(--color-glow-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

.installation-tax-callout {
    margin-bottom: 3.5rem;
}

.tax-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.1) 0%, rgba(2, 136, 209, 0.15) 100%);
    border: 1px solid var(--color-glow-blue);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.15);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    align-items: stretch;
}

.plan-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-8px);
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-glow);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
}

.plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-body);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-text-title);
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--color-text-body);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    gap: 0.15rem;
    margin-bottom: 2.5rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-title);
    margin-top: 0.35rem;
}

.plan-price .price-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-title);
    line-height: 1;
}

.price-cents-period {
    display: flex;
    flex-direction: column;
    margin-top: 0.25rem;
}

.price-cents-period .cents {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-title);
}

.price-cents-period .period {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.plan-features {
    margin-bottom: 3rem;
}

.plan-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--color-glow-cyan);
    font-size: 0.85rem;
}

.plan-footer {
    margin-top: auto;
}

/* Featured card override */
.plan-card.featured {
    border-color: var(--color-glow-blue);
    background: linear-gradient(180deg, rgba(13, 21, 41, 0.8) 0%, rgba(2, 136, 209, 0.08) 100%);
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.1);
}

.plan-card.featured:hover {
    box-shadow: 0 20px 45px rgba(0, 180, 216, 0.25);
}

.plan-badge-featured {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--color-glow-blue), var(--color-glow-cyan));
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #070b19;
}

.plan-card.featured .plan-name {
    background: linear-gradient(135deg, #ffffff, var(--color-glow-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--color-border-glow);
    background: var(--color-bg-card-hover);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-glow-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.info-card h4 {
    color: var(--color-text-title);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.link-hover:hover {
    color: var(--color-glow-blue);
    text-decoration: underline;
}

.contact-form-container {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form label {
    font-size: 0.85rem;
    color: var(--color-text-title);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-glow-blue);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form select option {
    background-color: var(--color-bg-dark);
    color: #ffffff;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #040710;
    border-top: 1px solid var(--color-border);
    padding: 5rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-brand .brand-desc {
    margin: 1.5rem 0;
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-body);
}

.social-links a:hover {
    background: var(--color-glow-blue);
    color: #070b19;
    border-color: var(--color-glow-blue);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.footer-links a:hover {
    color: var(--color-glow-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .company-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-card.featured {
        order: -1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 80px;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #070b19;
        flex-direction: column;
        padding: 3rem 0;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    .nav-menu.open {
        left: 0;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-actions .btn-primary {
        display: none;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
