/* 
    PROJECT: Art By Design Computer Aided Drafting
    THEME: Modern Light (Clean, Professional, Data-Driven)
    VERSION: 2.1 (Fixes Mobile Menu Leak on Desktop)
*/

/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    /* Color Palette - Light Theme */
    --primary-color: #2563EB;
    /* Royal Blue */
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --accent-color: #F97316;
    /* Vibrant Orange for CTAs */
    --accent-hover: #ea580c;

    --bg-body: #ffffff;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);

    --text-main: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;

    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1280px;
    --header-height: 80px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITIES & ANIMATIONS
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate-3d {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }

    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. CANVAS BACKGROUND
   ========================================= */
#neural-network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* --- MOBILE MENU DEFAULT STATE (HIDDEN) --- */
.mobile-menu-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-overlay {
    display: none;
    /* Crucial Fix: Hidden on desktop */
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 0.8s ease-out;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1.2s ease-out;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    height: 400px;
    animation: fadeIn 1.5s ease-out;
}

/* 3D Abstract Elements */
.cube-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-3d 15s infinite linear;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.cube-face:nth-child(1) {
    transform: rotateY(0deg) translateZ(100px);
}

.cube-face:nth-child(2) {
    transform: rotateY(90deg) translateZ(100px);
}

.cube-face:nth-child(3) {
    transform: rotateY(180deg) translateZ(100px);
}

.cube-face:nth-child(4) {
    transform: rotateY(-90deg) translateZ(100px);
}

.cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(100px);
}

.cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(100px);
}

/* Floating Elements */
.float-icon {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: 0%;
    animation-delay: 1s;
}

.float-3 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.float-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.services-section {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title span {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-features li i {
    color: var(--accent-color);
}

/* =========================================
   7. INTERACTIVE CALCULATOR
   ========================================= */
.calculator-section {
    background: white;
}

.calc-wrapper {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calc-controls h3 {
    margin-bottom: 2rem;
}

.range-group {
    margin-bottom: 2rem;
}

.range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.range-slider {
    width: 100%;
    height: 8px;
    background: #d1d5db;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    transition: 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-result {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate-3d 20s infinite linear;
}

.result-value {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin: 1rem 0;
}

/* =========================================
   8. FEATURES & INDUSTRIES
   ========================================= */
.industry-section {
    background: var(--bg-body);
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-light);
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.industry-content {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

.industry-content.active {
    display: block;
}

/* =========================================
   9. TESTIMONIALS
   ========================================= */
.testimonials-section {
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(37, 99, 235, 0.1);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.stars {
    color: #FBBF24;
    margin-bottom: 1rem;
}

/* =========================================
   10. LEGAL & SUB-PAGES
   ========================================= */
.page-header {
    background-color: var(--bg-light);
    padding: calc(var(--header-height) + 3rem) 0 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.legal-content-section {
    padding: 4rem 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
}

.legal-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.legal-wrapper p {
    margin-bottom: 1.5rem;
}

/* Contact Form Specifics */
.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-info-panel {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
}

.contact-info-panel h2 {
    color: white;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.icon-glow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* =========================================
   11. FOOTER
   ========================================= */
.main-footer {
    background-color: #111827;
    /* Dark navy/black for contrast */
    color: white;
    padding: 4rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 65px;
    margin-bottom: 1.5rem;
    
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.branding-col p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* =========================================
   12. LIVE CHAT WIDGET
   ========================================= */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    animation: pulse-glow 2s infinite;
    transition: 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: none;
    /* Toggled via JS */
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--bg-light);
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 0.5rem;
    background: white;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid var(--border-light);
    padding: 0.5rem;
    border-radius: 4px;
}

/* =========================================
   13. MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .cta-button.header-btn {
        display: none;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    /* Reveal the mobile menu only on small screens */
    .mobile-menu-overlay {
        display: block;
        /* Show container */
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        /* Initial hidden state for animation */
        transition: 0.3s;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-nav-links li {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .mobile-nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-main);
    }

    .calc-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .legal-wrapper {
        padding: 1rem;
    }
}

/* ===== 2026 Full Redesign Override (disabled) ===== */
:root { --disable-redesign: 1; }
/*
:root {
    --bg: #0b1220;
    --surface: #121b2d;
    --surface-2: #18243a;
    --text: #e5edf7;
    --muted: #9db1c9;
    --line: #2b3c59;
    --brand: #43b0ff;
    --brand-2: #6ae7d7;
    --cta: #ff8a4c;
    --cta-hover: #ff7330;
    --radius: 16px;
    --container: 1160px;
}
body { color: var(--text); background: radial-gradient(circle at 10% -20%, #1e2e4a 0%, var(--bg) 55%); }
#neural-network-canvas { position: fixed; inset: 0; z-index: -1; opacity: .35; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section-padding { padding: 5.5rem 0; }
.alt-section { background: rgba(255,255,255,.02); border-block: 1px solid var(--line); }
.reveal { opacity: 0; transform: translateY(22px); transition: .6s ease; }
.reveal.active { opacity: 1; transform: none; }
.main-header { position: sticky; top: 0; z-index: 100; background: rgba(11,18,32,.85); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-container { min-height: 78px; gap: 1rem; }
.brand-logo { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 1.2rem; list-style: none; }
.nav-link { color: var(--muted); text-decoration: none; font-weight: 500; transition: color .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.cta-button, .ghost-button { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 12px; font-weight: 600; transition: .2s ease; }
.cta-button { background: var(--cta); color: #fff; border: 0; padding: .8rem 1.25rem; cursor: pointer; }
.cta-button:hover { background: var(--cta-hover); transform: translateY(-1px); }
.ghost-button { border: 1px solid var(--line); color: var(--text); padding: .8rem 1.25rem; }
.mobile-menu-overlay { background: #0e1829; border-bottom: 1px solid var(--line); }
.hero-section { padding: 6rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: start; }
.eyebrow { color: var(--brand-2); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .9rem; font-size: .85rem; }
.hero-text h1 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: 1.15; margin-bottom: 1rem; }
.hero-subtext { color: var(--muted); max-width: 64ch; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.hero-metrics div { background: linear-gradient(145deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: 12px; padding: .9rem; }
.hero-metrics strong { display: block; font-size: 1.25rem; color: var(--brand-2); }
.hero-metrics span { font-size: .86rem; color: var(--muted); }
.hero-card, .service-card, .result-item, .testimonial-card, .contact-panel, .form-wrapper, .legal-wrapper { background: linear-gradient(160deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.hero-card ul { list-style: none; display: grid; gap: .5rem; margin: .8rem 0 1rem; }
.hero-card li i { color: var(--brand-2); margin-right: .45rem; }
.phone-chip { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--text); border: 1px solid var(--line); border-radius: 999px; padding: .55rem .9rem; }
.section-title { margin-bottom: 2rem; }
.section-title span { color: var(--brand-2); font-weight: 600; text-transform: uppercase; font-size: .82rem; letter-spacing: .06em; }
.section-title h2 { margin-top: .55rem; font-size: clamp(1.55rem, 2.6vw, 2.3rem); }
.section-title p, .service-card p, .result-item p, .testimonial-card p, .page-header p, .legal-wrapper p, .note-box p { color: var(--muted); }
.services-grid, .results-grid, .testimonials-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: rgba(67,176,255,.14); color: var(--brand-2); margin-bottom: .8rem; }
.process-steps { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { background: rgba(255,255,255,.02); border: 1px dashed #36527b; border-radius: var(--radius); padding: 1.2rem; }
.step span { color: var(--brand-2); font-weight: 700; display: block; margin-bottom: .4rem; }
.cta-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(67,176,255,.08); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.page-header { padding: 4.5rem 0 2.2rem; }
.page-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .5rem; }
.contact-layout { display: grid; gap: 1rem; grid-template-columns: .95fr 1.25fr; }
.contact-list { list-style: none; display: grid; gap: .8rem; }
.contact-list i { color: var(--brand-2); margin-right: .45rem; }
.contact-list a, .footer-col a { color: var(--text); text-decoration: none; }
.note-box { margin-top: 1rem; padding: .9rem; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.02); }
.form-wrapper h2 { margin-bottom: .7rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-group { margin-bottom: .8rem; }
label { display: block; margin-bottom: .35rem; font-size: .92rem; color: #b9cbe1; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; background: #0e1728; color: var(--text); padding: .78rem .85rem; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); }
.legal-content-section { padding: 0 0 4rem; }
.legal-wrapper h2 { margin: 1.1rem 0 .45rem; font-size: 1.15rem; }
.main-footer { margin-top: 2.4rem; border-top: 1px solid var(--line); background: #0a1220; }
.footer-grid { padding: 3rem 0 2rem; display: grid; gap: 1rem; grid-template-columns: 1.2fr .8fr .8fr 1fr; }
.footer-logo { height: 44px; margin-bottom: .7rem; }
.footer-col ul { list-style: none; display: grid; gap: .45rem; }
.footer-bottom { border-top: 1px solid var(--line); padding: 1rem 0; text-align: center; color: var(--muted); }
@media (max-width: 1024px) {
    .services-grid, .results-grid, .testimonials-grid, .process-steps, .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout, .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .desktop-nav, .header-btn { display: none; }
    .mobile-menu-trigger { display: block; }
    .services-grid, .results-grid, .testimonials-grid, .process-steps, .hero-metrics, .grid-2, .footer-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 4.2rem 0; }
}
*/