/* ═══════════════════════════════════════════════════════════════════════════
   CYBER UMBRA PRO - Dark Theme Styles v3.0
   Final version with SVG icons, big footer logo, pricing toggle
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Primary Colors */
    --color-bg-dark: #0a0e17;
    --color-bg-medium: #0d1321;
    --color-bg-light: #151d2e;
    --color-bg-card: #1a2235;

    /* Accent Colors */
    --color-primary: #00d4ff;
    --color-primary-dark: #00a8cc;
    --color-secondary: #7c3aed;
    --color-secondary-light: #a855f7;
    --color-accent: #06ffc5;
    --color-danger: #ff3b3b;

    /* Text Colors */
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-dark: #64748b;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-bg: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-primary: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(10, 14, 23, 0.98);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 70px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--color-bg-dark) !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-city {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1400px;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 14, 23, 0.7) 0%, rgba(10, 14, 23, 0.9) 100%);
}

/* Attack Arrows Animation */
.attack-arrows {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.attack-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: attackAppear 4s ease-in-out infinite;
}

.arrow-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.arrow-2 {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.arrow-3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.arrow-4 {
    top: 35%;
    right: 25%;
    animation-delay: 3s;
}

.arrow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-danger));
    position: relative;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 12px solid var(--color-danger);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.arrow-label {
    background: rgba(255, 59, 59, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.5);
}

@keyframes attackAppear {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-20px);
    }

    10%,
    40% {
        opacity: 1;
        transform: translateX(0);
    }

    50% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px 10px rgba(0, 212, 255, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    color: var(--color-bg-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 18px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════════════════════════ */

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SVG ICONS - Professional Style
   ═══════════════════════════════════════════════════════════════════════════ */

.capability-icon svg,
.service-icon svg,
.for-who-icon svg,
.info-icon svg,
.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-primary);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.info-icon svg {
    width: 32px;
    height: 32px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CAPABILITIES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.capabilities {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0f0a1a 100%);
    position: relative;
}

.capabilities::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 40%);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.capability-card {
    background: rgba(26, 34, 53, 0.6);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.capability-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.capability-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.capability-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.services {
    background: var(--color-bg-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card>p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--color-text-muted);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Services 6-Card Grid (like reference) */
.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card-mini {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card-mini:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-card-mini .service-icon {
    margin-bottom: 16px;
}

.service-card-mini .service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card-mini h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-text);
    font-weight: 600;
}

.service-card-mini p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING SECTION WITH TOGGLE
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing {
    background: var(--color-bg-dark);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--color-bg-card);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    color: var(--color-text);
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: var(--color-bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.pricing-header h3 {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.price-currency {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.price-period {
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

.pricing-frequency {
    color: var(--color-text-dark);
    font-size: 13px;
    margin-bottom: 24px;
    min-height: 20px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--color-text-muted);
    font-size: 14px;
}

.pricing-time {
    color: var(--color-text-dark);
    font-size: 13px;
    margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOR WHO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.for-who {
    background: var(--color-bg-medium);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.for-who-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.for-who-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.for-who-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.for-who-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.for-who-card ul {
    list-style: none;
    color: var(--color-text-muted);
    font-size: 14px;
}

.for-who-card li {
    padding: 6px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.about {
    background: var(--color-bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.about-text .legal-note {
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--color-primary);
    padding: 16px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    margin-top: 24px;
}

.about-features {
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Terminal */
.terminal {
    background: #1a1d24;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
}

.terminal-title {
    margin-left: auto;
    color: var(--color-text-muted);
    font-size: 13px;
}

.terminal-body {
    padding: 20px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 13px;
    line-height: 1.8;
}

.terminal-body p {
    margin-bottom: 4px;
}

.prompt {
    color: var(--color-accent);
}

.output {
    color: var(--color-text-muted);
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.faq {
    background: var(--color-bg-medium);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.contact {
    background: var(--color-bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}

.contact-form {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-bg-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dark);
}

.form-group select {
    cursor: pointer;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--color-bg-card);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.info-icon {
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER - BIG LOGO
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--color-bg-medium);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* BIG FOOTER LOGO */
.footer-hero {
    text-align: center;
    margin-bottom: 48px;
}

.footer-logo-big {
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-big:hover {
    transform: scale(1.02);
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.4);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-tagline {
    color: var(--color-primary) !important;
    font-weight: 500;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-dark);
    font-size: 13px;
    margin-bottom: 8px;
}

/* Disclaimer */
.disclaimer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer p {
    font-size: 11px;
    color: var(--color-text-dark);
    line-height: 1.7;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .for-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .logo-text {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--color-bg-dark);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .capabilities-grid,
    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat {
        padding: 12px 16px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .attack-arrows {
        display: none;
    }

    .footer-logo-big {
        max-width: 250px;
    }

    .pricing-toggle {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .logo-img {
        height: 50px;
    }

    .footer-logo-big {
        max-width: 200px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEAD MAGNET SECTION (Professional & Mysterious)
   ═══════════════════════════════════════════════════════════════════════════ */

.margin-top-negative {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.magnet-card {
    background: rgba(13, 19, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.magnet-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

.magnet-content {
    padding: 60px;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.magnet-badge {
    display: inline-block;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.magnet-badge::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--color-primary);
}

.magnet-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.magnet-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.magnet-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.magnet-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-text);
    font-weight: 500;
}

.magnet-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    opacity: 0.8;
}

/* Magnet Form Side */
.magnet-form-wrapper {
    background: #0f121a;
    padding: 60px;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.magnet-form {
    width: 100%;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.form-header p {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px 16px 50px;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.6;
}

.btn-glow {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
    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%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.btn-glow:hover::after {
    opacity: 1;
    transform: scale(1);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-dark);
    margin-top: 20px;
}

/* Responsiveness for Lead Magnet */
@media (max-width: 900px) {
    .magnet-card {
        grid-template-columns: 1fr;
    }

    .magnet-form-wrapper {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px;
    }

    .magnet-content {
        padding: 40px;
    }

}
}

/* Horizontal Pricing Banner */
.pricing-horizontal-banner {
    margin-top: 40px;
    background: rgba(13, 19, 33, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.pricing-horizontal-banner:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.banner-text h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.banner-desc {
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.banner-features {
    display: flex;
    gap: 24px;
    list-style: none;
}

.banner-features li {
    font-size: 0.9rem;
    color: var(--color-text);
}

.banner-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.btn-glow-border {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-glow-border:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .banner-features {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}