/* ==========================================================================
   NEON CYBER-GROWTH THEME SETTINGS
   ========================================================================== */
:root {
    --bg-base: #070B14;
    --bg-surface: #0D1323;
    --bg-surface-light: #151E32;
    --bg-glass: rgba(13, 19, 35, 0.6);

    --accent-primary: #00F2FE;
    --accent-secondary: #4FACFE;
    --accent-purple: #8B5CF6;

    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dark: #070B14;

    --gradient-neon: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-purple) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glow-sm: 0 0 10px rgba(0, 242, 254, 0.2);
    --glow-md: 0 0 20px rgba(0, 242, 254, 0.4);
    --glow-lg: 0 0 40px rgba(139, 92, 246, 0.5);

    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --header-height: 80px;
}

/* ==========================================================================
   BASE STYLES & SCROLLBAR
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

/* Ambient Glow Blobs */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: floatGlow 10s infinite alternate;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(0, 242, 254, 0.15);
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: rgba(139, 92, 246, 0.15);
    animation-delay: -5s;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* Glowing Heading */
.neon-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   GLASSMORPHISM UTILITIES
   ========================================================================== */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-neon {
    background: var(--gradient-neon);
    color: var(--text-dark);
    box-shadow: var(--glow-sm);
}

.btn-neon:hover {
    box-shadow: var(--glow-md);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    backdrop-filter: blur(5px);
}

.btn-glass:hover {
    background: var(--accent-primary);
    color: var(--text-dark);
    box-shadow: var(--glow-md);
}

/* ==========================================================================
   STRICT HEADER (IDENTICAL ACROSS ALL PAGES)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 45px;
    filter: brightness(1) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-smooth);
    box-shadow: var(--glow-sm);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-primary);
    text-shadow: var(--glow-sm);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle {
    display: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-close {
    display: none;
}

/* ==========================================================================
   1. HERO SECTION (CYBER 3D)
   ========================================================================== */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* 3D Data Hologram */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.holo-sphere {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 242, 254, 0.4);
    position: absolute;
    animation: spin 20s linear infinite;
    box-shadow: inset 0 0 50px rgba(0, 242, 254, 0.1);
}

.holo-sphere::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.5);
    animation: spin 15s linear infinite reverse;
}

.holo-card {
    background: var(--bg-glass);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: absolute;
    box-shadow: var(--glow-md);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

/* ==========================================================================
   2. STATS TICKER
   ========================================================================== */
.ticker-wrap {
    background: var(--bg-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    overflow: hidden;
    display: flex;
}

.ticker {
    display: flex;
    gap: 4rem;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
}

.ticker-val {
    color: var(--accent-primary);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: var(--glow-sm);
}

.ticker-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ==========================================================================
   3. ABOUT / ENGINE SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.tech-box {
    background: var(--bg-glass);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.tech-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent-primary), transparent 30%);
    animation: rotateBox 4s linear infinite;
    z-index: -1;
    opacity: 0.2;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-list i {
    color: var(--accent-primary);
    background: rgba(0, 242, 254, 0.1);
    padding: 10px;
    border-radius: 8px;
    font-size: 1.2rem;
}

/* ==========================================================================
   4. CYBER SERVICES MATRIX
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.svc-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-md);
    border-color: var(--accent-primary);
}

.svc-card:hover::before {
    opacity: 0.05;
}

.svc-content {
    position: relative;
    z-index: 1;
}

.svc-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    text-shadow: var(--glow-sm);
}

.svc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.svc-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   5. INDUSTRY TABS (HOLOGRAPHIC)
   ========================================================================== */
.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: var(--glow-sm);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--bg-glass);
    border: var(--border-glass);
    padding: 4rem;
    border-radius: 20px;
}

.industry-img {
    border-radius: 10px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: var(--glow-md);
}

/* ==========================================================================
   6. LIVE CAMPAIGN DATA (ANIMATED BARS)
   ========================================================================== */
.data-dashboard {
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.data-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.data-label {
    width: 150px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.data-track {
    flex: 1;
    height: 12px;
    background: var(--bg-base);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.data-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    background: var(--gradient-neon);
    box-shadow: var(--glow-sm);
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.data-val {
    width: 80px;
    text-align: right;
    font-weight: 700;
    color: var(--accent-primary);
}

/* ==========================================================================
   7. ROI CALCULATOR (NEON SLIDERS)
   ========================================================================== */
.roi-calc {
    background: var(--bg-glass);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--glow-lg);
}

.range-group {
    margin-bottom: 3rem;
}

.range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.range-val {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: var(--glow-sm);
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--text-main);
    border: 3px solid var(--accent-purple);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--glow-sm);
}

.roi-output {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.roi-number {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 1rem 0;
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.3));
}

/* ==========================================================================
   8. TESTIMONIALS (CYBER CARDS)
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testi-card {
    background: var(--bg-surface-light);
    border: var(--border-glass);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
}

.testi-card::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.testi-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.testi-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    background: var(--bg-base);
}

/* ==========================================================================
   9. CTA SEQUENCE
   ========================================================================== */
.cta-section {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><path d="M0 0h100v100H0z" fill="none"/><path d="M0 50h100M50 0v100" stroke="%2300F2FE" stroke-width="1"/></svg>'), var(--bg-surface);
    text-align: center;
    border-top: 1px solid var(--accent-primary);
    border-bottom: 1px solid var(--accent-primary);
    box-shadow: inset 0 0 100px rgba(0, 242, 254, 0.1);
}

/* ==========================================================================
   10. STRICT FOOTER (IDENTICAL ACROSS ALL PAGES)
   ========================================================================== */
.footer {
    background: var(--bg-base);
    color: var(--text-muted);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about .logo img {
    margin-bottom: 1.5rem;
    filter: brightness(1) invert(1);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-surface-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--accent-primary);
    color: var(--bg-base);
    box-shadow: var(--glow-sm);
}

.footer-col-title {
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
    text-shadow: var(--glow-sm);
}

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-primary);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* ==========================================================================
   11. LIVE CHAT (GLASSMORPHISM)
   ========================================================================== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-neon);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: var(--glow-md);
    cursor: pointer;
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(10deg);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: rgba(13, 19, 35, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--accent-primary);
    border-radius: 15px;
    box-shadow: var(--glow-lg);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-box.active {
    transform: scale(1);
}

.chat-header {
    background: var(--accent-primary);
    color: var(--text-dark);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.chat-body {
    height: 300px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.chat-msg {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.msg-bot {
    background: var(--bg-surface-light);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.msg-user {
    background: var(--accent-purple);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
}

.chat-input button {
    background: transparent;
    border: none;
    color: var(--accent-primary);
    font-size: 1.2rem;
    cursor: pointer;
}

/* ==========================================================================
   12. LEGAL & CONTACT PAGES SPECIFICS
   ========================================================================== */
.page-header {
    padding: calc(var(--header-height) + 6rem) 0 4rem;
    text-align: center;
    position: relative;
}

.breadcrumbs {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs i {
    color: var(--accent-primary);
    font-size: 0.7rem;
    margin: 0 10px;
}

.legal-content {
    background: var(--bg-glass);
    border: var(--border-glass);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--accent-primary);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.legal-content strong {
    color: var(--text-main);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--bg-glass);
    border: var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.contact-info {
    background: rgba(0, 242, 254, 0.05);
    padding: 4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrap {
    padding: 4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* ==========================================================================
   ANIMATIONS & MEDIA QUERIES
   ========================================================================== */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

@keyframes rotateBox {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .industry-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        display: none;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        font-size: 1.5rem;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 2.5rem;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .legal-content,
    .contact-info,
    .contact-form-wrap,
    .roi-calc,
    .data-dashboard {
        padding: 2rem;
    }

    .roi-number {
        font-size: 3rem;
    }
}