/* 
 * UnverPort Privacy - Design System & Custom Stylesheet
 * Cyberpunk & Siber-Neon Theme (Dark Slate, Cyan, Purple, Blue)
 */

/* Color Space Interop Fallback Setup */
:root {
  --in-oklab: ;
  --in-oklch: ;
}

@supports (linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
    --in-oklch: in oklch;
  }
}

:root {
    /* Brand Colors */
    --bg-dark: #0B0F19;
    --bg-slate: #1E293B;
    --bg-card: rgba(15, 23, 42, 0.45);
    
    --neon-cyan: #06B6D4;
    --neon-purple: #D946EF;
    --neon-blue: #3B82F6;
    --neon-green: #10B981;
    --alert-red: #EF4444;
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    
    /* RGB values for transparent overlays */
    --neon-cyan-rgb: 6, 182, 212;
    --neon-purple-rgb: 217, 70, 239;
    --neon-blue-rgb: 59, 130, 246;
    
    /* Layout & Styling details */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-glow: rgba(6, 182, 212, 0.25);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    /* Fonts */
    --font-headers: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Background Cyber Grid */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -3;
    pointer-events: none;
}

.cyber-grid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-dark) 80%);
    pointer-events: none;
}

/* Background Glow Orbs */
.cyber-glow-orb-1,
.cyber-glow-orb-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.35;
}

.cyber-glow-orb-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.4) 0%, transparent 70%);
    animation: pulse-orb-1 15s infinite alternate ease-in-out;
}

.cyber-glow-orb-2 {
    bottom: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    animation: pulse-orb-2 18s infinite alternate ease-in-out;
}

@keyframes pulse-orb-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 50px) scale(1.1); }
}

@keyframes pulse-orb-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, -60px) scale(1.05); }
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-headers);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg var(--in-oklch), var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--neon-cyan);
}

p {
    color: var(--text-secondary);
}

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

.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-headers);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg var(--in-oklch), var(--neon-blue), var(--neon-cyan));
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
    background-color: var(--neon-cyan); /* Fallback */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(6, 182, 212, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-cyan);
    box-shadow: inset 0 0 0 transparent;
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(11, 15, 25, 0.7);
    transition: background var(--transition-normal);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: linear-gradient(135deg, #1e222d, #0f1118);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 14px rgba(6, 182, 212, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.logo-text {
    font-family: var(--font-headers);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width var(--transition-fast);
}

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

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 102;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left var(--transition-normal);
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--neon-cyan);
}

.mobile-cta {
    margin-top: 1.5rem;
    width: 200px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--glass-border-glow);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.08);
}

/* Hero Section */
.hero-section {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

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

.badge-new {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(217, 70, 239, 0.15);
    border: 1px solid rgba(217, 70, 239, 0.3);
    color: var(--neon-purple);
    font-family: var(--font-headers);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

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

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

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

.stat-number {
    font-family: var(--font-headers);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--neon-cyan);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Visual Mockup Window */
.hero-visual {
    position: relative;
}

.mockup-window {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(12px);
    aspect-ratio: 1.3;
}

.mockup-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-cyan), transparent);
}

.mockup-header {
    background: rgba(30, 41, 59, 0.4);
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 1.5rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-dots span:nth-child(1) { background: var(--alert-red); }
.mockup-dots span:nth-child(2) { background: #EAB308; }
.mockup-dots span:nth-child(3) { background: var(--neon-green); }

.mockup-title {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mockup-body {
    padding: 1.5rem;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.console-line {
    margin-bottom: 0.75rem;
}

.console-line::before {
    content: "$ ";
    color: var(--text-secondary);
}

.cmd-cyan { color: var(--neon-cyan); }
.cmd-cursor {
    animation: blink 1s infinite;
    font-weight: bold;
}

.sec-green { color: var(--neon-green); }
.sec-cyan { color: var(--neon-cyan); }
.sec-purple { color: var(--neon-purple); }

@keyframes blink {
    50% { opacity: 0; }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: background var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-glow);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.08);
}

.feature-card:hover::before {
    background: var(--neon-cyan);
}

.feature-card:nth-child(even):hover::before {
    background: var(--neon-purple);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.feature-name {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.95rem;
}

/* Sales Strategy Section */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.strategy-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.strategy-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.strategy-card-num {
    font-family: var(--font-headers);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(6, 182, 212, 0.2);
    line-height: 1;
}

.strategy-card h3 {
    font-size: 1.35rem;
}

.strategy-card-body p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.strategy-card-body ul {
    list-style: none;
}

.strategy-card-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.strategy-card-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

.strategy-dl dt {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.strategy-dl dd {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 0;
    margin-bottom: 0.5rem;
}

/* Pricing Toggle */
.billing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 40px;
    margin-top: 1.5rem;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-primary);
}

.billing-toggle-btn {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition-normal);
}

.billing-toggle-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: transform var(--transition-normal);
}

.billing-toggle-btn.yearly {
    background: var(--neon-cyan);
}

.billing-toggle-btn.yearly::after {
    transform: translateX(20px);
    background: #000;
}

.badge-discount {
    background: var(--neon-green);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.25rem;
    vertical-align: middle;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

.pricing-card.popular {
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.12);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-blue));
    color: #000;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2.5rem;
}

.tier-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tier-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-container {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price {
    font-family: var(--font-headers);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.pricing-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
}

.pricing-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

.pricing-features li strong {
    color: var(--text-primary);
}

/* FAQ Accordions */
.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--glass-border-glow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-headers);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--text-secondary);
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.faq-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: rotate(90deg) scaleY(0);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
    background: var(--neon-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

/* Contact / Form Section */
.contact-container {
    max-width: 900px;
}

.contact-card {
    padding: 4rem;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    text-align: left;
}

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

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

.form-group label {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

.btn-submit {
    margin-top: 1rem;
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.form-feedback-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: none;
}

.form-feedback-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--neon-green);
}

.form-feedback-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--alert-red);
}

/* Footer styling */
.footer {
    background: rgba(11, 15, 25, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.6fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-links-grid {
    display: contents;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--neon-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* UnverTech Ecosystem Styles */
.ecosystem-section {
    position: relative;
    overflow: hidden;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.eco-card {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all var(--transition-normal);
}

.eco-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-glow);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.08);
}

.eco-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.eco-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.eco-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.eco-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    color: #000;
}

.badge-corp { background-color: var(--neon-cyan); color: #000; }
.badge-system { background-color: var(--neon-blue); color: #fff; }
.badge-fintech { background-color: var(--neon-green); color: #000; }
.badge-security { background-color: var(--alert-red); color: #fff; }
.badge-autonomous { background-color: var(--neon-purple); color: #fff; }
.badge-ai { background-color: var(--neon-purple); }
.badge-prod { background-color: var(--neon-blue); color: #fff; }
.badge-media { background-color: #EAB308; }
.badge-tools { background-color: var(--neon-cyan); }
.badge-net { background-color: var(--neon-green); }

.eco-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.eco-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Founder Profile Styles */
.founder-section {
    position: relative;
    overflow: hidden;
}

.founder-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.founder-visual {
    display: flex;
    justify-content: center;
}

.founder-card-frame {
    position: relative;
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg var(--in-oklch), rgba(6, 182, 212, 0.1), rgba(217, 70, 239, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    transition: all var(--transition-normal);
}

.founder-card-frame:hover {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(6, 182, 212, 0.15);
}

.founder-card-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg var(--in-oklch), var(--neon-cyan), var(--neon-purple));
    z-index: -1;
    opacity: 0.3;
    filter: blur(2px);
    transition: opacity var(--transition-normal);
}

.founder-card-frame:hover::after {
    opacity: 0.8;
    filter: blur(4px);
}

.founder-avatar-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--neon-cyan);
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.45);
    transition: all var(--transition-normal);
}

.founder-card-frame:hover .founder-avatar-img {
    transform: scale(1.05);
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.55);
}

.founder-badge-glowing {
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.founder-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--neon-cyan);
    padding: 1.75rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: inset 5px 0 15px rgba(6, 182, 212, 0.03);
}

.quote-text {
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .founder-content {
        align-items: center;
    }
    
    .quote-box {
        border-left: none;
        border-top: 4px solid var(--neon-cyan);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .badge-new {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-card {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Accessibility Reduced Motion overrides */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .cyber-glow-orb-1,
    .cyber-glow-orb-2 {
        animation: none;
        opacity: 0.15;
    }
    
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* ===== Language Selector Styling ===== */
.lang-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: #0B0F19;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.lang-selector:hover .lang-dropdown,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.lang-option.active {
    color: var(--neon-cyan);
    background: rgba(6, 182, 212, 0.1);
    font-weight: 700;
}

/* --- Interactive App Showcase Styles --- */
.showcase-section {
    background: linear-gradient(180deg, #0B0F19 0%, #060913 100%);
    position: relative;
    z-index: 1;
}

.platform-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-headers);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.platform-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.platform-btn.active {
    color: var(--text-primary);
    background: rgba(6, 182, 212, 0.12);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.showcase-device-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
    position: relative;
}

/* Desktop Mockup Frame */
.device-desktop-frame {
    width: 100%;
    max-width: 960px;
    background: #0B0F19;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.desktop-header-bar {
    background: #0F1322;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    position: relative;
}

.window-controls {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
}

.window-controls .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.window-controls .dot.red { background: #EF4444; }
.window-controls .dot.yellow { background: #F59E0B; }
.window-controls .dot.green { background: #10B981; }

.window-title {
    margin: 0 auto;
    font-size: 0.75rem;
    font-family: var(--font-body);
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.desktop-app-layout {
    display: flex;
    height: 500px;
}

.desktop-app-sidebar {
    width: 200px;
    background: #0F1322;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0.5rem;
}

.app-brand-sidebar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-headers);
    font-size: 0.9rem;
    font-weight: 800;
}

.sidebar-logo {
    width: 20px;
    height: 20px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
}

.sidebar-nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.sidebar-nav-item.active {
    color: var(--text-primary);
    background: rgba(6, 182, 212, 0.1);
    font-weight: 600;
    box-shadow: inset 2px 0 0 var(--neon-cyan);
}

.desktop-app-viewport {
    flex: 1;
    background: #070913;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Mobile Mockup Frame */
.device-mobile-frame {
    width: 320px;
    height: 580px;
    background: #0B0F19;
    border: 10px solid #1e293b;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-notch {
    width: 130px;
    height: 20px;
    background: #1e293b;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 11;
}

.mobile-status-bar {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: #0F1322;
    z-index: 10;
    padding-top: 6px;
}

.mobile-app-layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #070913;
    height: calc(100% - 36px);
    overflow: hidden;
}

.mobile-app-viewport {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.mobile-app-tabbar {
    height: 60px;
    background: #0F1322;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tabbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.65rem;
    gap: 2px;
}

.tabbar-item.active {
    color: var(--neon-cyan);
}

.tabbar-icon {
    font-size: 1.1rem;
}

.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.95);
}

/* Interior Mockup Views styling */
.mockup-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.mockup-view-title {
    font-size: 1.1rem;
    font-family: var(--font-headers);
    font-weight: 700;
}

.mockup-view-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Dashboard View Widgets */
.dashboard-widgets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.widget-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.widget-title {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-value-container {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.widget-value {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.widget-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}

.widget-status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-green);
}

.switches-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch-label {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Custom Toggle Switch in Mockup */
.mock-switch {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.mock-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #FFF;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
}

.mock-switch.active {
    background: var(--neon-cyan);
}

.mock-switch.active::after {
    left: 22px;
}

/* Mockup Graph styling */
.mockup-chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 1rem;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.chart-svg {
    width: 100%;
    height: 100%;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChart 4s linear infinite;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

/* Firewall Rules Mockup view */
.mock-rules-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
}

.mock-rules-table th {
    text-align: left;
    color: var(--text-secondary);
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.mock-rules-table td {
    padding: 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.badge-allow, .badge-deny {
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.65rem;
}

.badge-allow { background: rgba(16, 185, 129, 0.15); color: var(--neon-green); }
.badge-deny { background: rgba(239, 68, 110, 0.15); color: var(--alert-red); }

/* Sniffer Table view */
.sniffer-table-container {
    max-height: 380px;
    overflow-y: auto;
}

.sniffer-packet-row {
    font-family: monospace;
    font-size: 0.7rem;
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    justify-content: space-between;
}

.protocol-tcp { color: var(--neon-cyan); }
.protocol-udp { color: var(--neon-purple); }
.protocol-dns { color: var(--neon-blue); }
.protocol-icmp { color: var(--neon-green); }

/* Diagnostics Console view */
.console-logs-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-family: monospace;
    font-size: 0.7rem;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.console-log-line {
    line-height: 1.4;
}

.level-info { color: #94A3B8; }
.level-success { color: var(--neon-green); }
.level-warning { color: #F59E0B; }
.level-error { color: var(--alert-red); }

.tag-btn-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    overflow-x: auto;
}

.console-tag-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    cursor: pointer;
}

.console-tag-btn.active {
    background: var(--neon-cyan);
    color: #000;
    font-weight: 700;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .desktop-app-layout {
        height: 400px;
    }
    .desktop-app-sidebar {
        width: 60px;
        align-items: center;
    }
    .sidebar-nav-item span, .app-brand-sidebar span {
        display: none;
    }
    .app-brand-sidebar {
        padding: 0 0 1.5rem;
    }
}

/* --- Responsive Sizing Fixes for All Mobile Viewports --- */
.hero-stats {
    flex-wrap: wrap;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
}

.ecosystem-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)) !important;
}

.device-mobile-frame {
    width: 100% !important;
    max-width: 320px !important;
    box-sizing: border-box;
}

/* --- Gallery Section Styles (Cleaned up from Inline Styles) --- */
.gallery-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(6, 182, 212, 0.15);
    transition: var(--transition-slow);
}

.gallery-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.98) 0%, rgba(11, 15, 25, 0.7) 60%, rgba(11, 15, 25, 0) 100%);
    padding: 6rem 2rem 2.5rem;
    text-align: center;
}

.gallery-text {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* --- Direct Contact Link Badges & Footer Contact Layout --- */
.contact-direct-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0 2.5rem;
    width: 100%;
}

.contact-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-badge-item:hover {
    background: rgba(6, 182, 212, 0.12);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

.contact-badge-item.whatsapp-badge {
    border-color: rgba(16, 185, 129, 0.25);
}

.contact-badge-item.whatsapp-badge:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.footer-direct-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1.5rem;
}

.footer-contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    display: block;
}

.footer-contact-link:hover {
    color: var(--neon-cyan);
}

/* --- Mobile Specific Overrides --- */
@media (max-width: 768px) {
    .gallery-overlay {
        padding: 3rem 1.5rem 2rem;
        position: static;
        background: rgba(11, 15, 25, 0.95);
    }
    .gallery-text {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    .contact-badge-item {
        width: 100%;
        justify-content: center;
    }
}

/* --- Mobile Responsive Optimizations for Extra Small Viewports (<= 480px and <= 360px) --- */
@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-img {
        height: 28px;
        width: 28px;
    }
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
        line-height: 1.4;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .eco-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    .eco-icon {
        width: 48px;
        height: 48px;
    }
    .founder-card-frame {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 0.875;
        padding: 2rem 1rem;
    }
    .founder-avatar-img {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    .strategy-card {
        padding: 1.5rem;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .mockup-body {
        font-size: 0.75rem;
        padding: 1rem;
    }
    .mockup-header {
        height: 32px;
    }
    .contact-card {
        padding: 2rem 1.25rem;
    }
    .form-feedback-message {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

@media (max-width: 360px) {
    .logo-text span.accent-text {
        display: none;
    }
}

/* Custom pricing text and lead modal overlay styles */
.price.custom-price {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lead-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lead-modal {
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.25) !important;
}

.lead-modal-overlay.active .lead-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--neon-cyan);
}

.modal-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--neon-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.email-btn {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.email-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary) !important;
}

.whatsapp-btn {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}


