/* White Wolf Cybersecurity Platform - Main Styles */

/* ===== CSS Variables ===== */
:root {
    --color-void: #0A0E14;
    --color-deep: #131920;
    --color-surface: #1A2332;
    --color-elevated: #232E3F;
    --color-border: rgba(255, 255, 255, 0.1);

    --color-primary: #00D9FF;
    --icon-stroke: 1.5;
    --color-primary-dim: #00B4D4;
    --color-accent: #7B61FF;
    --color-yellow: #FFCE00;
    /* Palo Alto yellow */
    --color-yellow-dark: #E6B800;
    --color-orange: #FF5A31;
    /* Palo Alto orange */
    --color-orange-dark: #E64A26;
    --color-success: #00FF94;
    --color-warning: #FFB800;
    --color-critical: #FF3366;

    --color-text-primary: #F4F7FC;
    --color-text-secondary: #A8B3C7;
    --color-text-tertiary: #6B7A92;

    --font-display: 'Archivo', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 97, 255, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px);
    pointer-events: none;
    z-index: 0;
}

/* ===== Navigation ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    animation: slideDown 0.6s var(--ease-out-expo);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    position: relative;
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-aura {
    background: linear-gradient(to right, #0052D4, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 900;
}

.brand-shield {
    background: linear-gradient(to right, #e0e0e0, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 900;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.4)) brightness(1.2);
    position: relative;
    z-index: 2;
    mix-blend-mode: screen;
    background: transparent;
}

/* Security Shield Overlay */
.logo-wrapper::before {
    content: '';
    position: absolute;
    width: 58px;
    height: 58px;
    background: transparent;
    border: 2px solid rgba(0, 217, 255, 0.25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexPulse 3s ease-in-out infinite;
    z-index: 1;
}

/* Rotating Security Ring */
.logo-wrapper::after {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    border: 1px solid transparent;
    border-top-color: rgba(123, 97, 255, 0.4);
    border-right-color: rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    animation: rotate 4s linear infinite;
    z-index: 0;
}

@keyframes hexPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Unified Icon Sizing */
.solution-icon svg,
.tech-card-icon svg,
.flow-step-icon svg {
    width: 50%;
    height: 50%;
    stroke: var(--color-primary);
    stroke-width: var(--icon-stroke);
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    padding: 7px 14px;
    border-radius: 8px;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.nav-active {
    color: var(--color-primary);
    background: rgba(0, 217, 255, 0.08);
}

.nav-cta {
    background: rgba(255, 90, 49, 0.15) !important;
    color: var(--color-orange) !important;
    border: 1px solid rgba(255, 90, 49, 0.35) !important;
    padding: 7px 16px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.25s ease !important;
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: rgba(255, 90, 49, 0.25) !important;
    color: #fff !important;
    border-color: var(--color-orange) !important;
}

/* ===== Nav Auth Buttons ===== */
.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    margin-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.btn-nav-signin {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-nav-signin:hover {
    border-color: rgba(0, 217, 255, 0.5);
    color: var(--color-primary);
    background: rgba(0, 217, 255, 0.06);
}

.btn-nav-signup {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    background: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.4);
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.btn-nav-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.45);
    background: #1ae0ff;
}

/* ===== Container ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
}

.hero-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

/* ===== Mesh Gradient Blobs ===== */
.mesh-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.blob-1 {
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.blob-2 {
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
}

.hero,
.product-hero {
    position: relative;
    overflow: hidden;
}

@keyframes gridMove {
    0% {
        transform: translate(-50%, -50%) translateY(0);
    }

    100% {
        transform: translate(-50%, -50%) translateY(60px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 100px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-primary);
    animation: pulse 2s ease-in-out infinite;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

h1 .gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-text-secondary);
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.7;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.btn {
    padding: 18px 36px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dim) 100%);
    color: var(--color-void);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background: var(--color-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

/* ===== Solutions Grid ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-description {
    font-size: 19px;
    color: var(--color-text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.solution-card {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-deep) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 24px 64px rgba(0, 217, 255, 0.2);
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(123, 97, 255, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.solution-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.solution-description {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.solution-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.solution-features li {
    color: var(--color-text-secondary);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li::before {
    content: '→';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
}

/* ===== Technology Section ===== */
.tech-section {
    background: var(--color-deep);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.tech-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(123, 97, 255, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.tech-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.tech-card p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Architecture Diagram ===== */
.architecture {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 60px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 97, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.architecture-content {
    position: relative;
    z-index: 1;
}

.architecture h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
}

.flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
}

.flow-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

.flow-step h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.flow-step p {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.flow-arrow {
    color: var(--color-primary);
    font-size: 32px;
    opacity: 0.5;
}

/* ===== Demo Page Specific ===== */
.demo-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: var(--color-void);
}

.demo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.demo-card {
    background: white;
    border-radius: 20px;
    padding: 60px;
    color: var(--color-void);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.demo-btn {
    background: #ff5a31;
    color: white;
    padding: 18px 48px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.demo-btn:hover {
    background: #e64a26;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 90, 49, 0.3);
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-deep) 100%);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 80px 60px;
    margin: 120px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 500;
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about-text p {
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    gap: 24px;
}

.value-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--color-primary);
    transform: translateX(8px);
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.value-item p {
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ===== Meet With Us Form (Light Section) ===== */
.meet-with-us {
    background: #F8F9FA;
    padding: 100px 0;
    color: #1A1C21;
}

.meet-with-us .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.meet-with-us h2 {
    color: #1A1C21;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.meet-with-us .section-description {
    color: #4A4D55;
    margin: 0;
    font-size: 18px;
    max-width: 600px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.meet-form-group {
    margin-bottom: 20px;
}

.meet-form-group input,
.meet-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #DDE1E6;
    border-radius: 4px;
    background: #FFFFFF;
    color: #1A1C21;
    font-size: 16px;
    transition: border-color 0.2s;
}

.meet-form-group input:focus,
.meet-form-group select:focus {
    outline: none;
    border-color: #00D9FF;
}

.meet-form-group input::placeholder {
    color: #8D9199;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
    color: #4A4D55;
    line-height: 1.5;
}

.form-checkbox input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.form-legal {
    font-size: 12px;
    color: #8D9199;
    line-height: 1.6;
    margin-bottom: 32px;
}

.form-legal a {
    color: #4A4D55;
    text-decoration: underline;
}

.palo-btn {
    background: var(--color-yellow);
    color: #1A1C21;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.palo-btn:hover {
    background: var(--color-yellow-dark);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dim) 100%);
    color: var(--color-void);
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.4);
}

.privacy-note {
    text-align: center;
    color: var(--color-text-tertiary);
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.6;
}

/* ===== Footer ===== */
footer {
    background: var(--color-void);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-tertiary);
    font-size: 15px;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-colum.nav-links li a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-primary);
}

.footer-column ul li a {
    color: var(--color-text-tertiary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-tertiary);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--color-text-tertiary);
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 32px;
    }

    .container {
        padding: 0 32px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .flow-diagram {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .section {
        padding: 80px 0;
    }

    .solution-card {
        padding: 36px;
    }

    .contact-wrapper {
        padding: 40px 28px;
    }
}

/* ===== Scroll Animations (GSAP handles these now) ===== */
.animate-in {
    opacity: 1 !important;
    transform: none !important;
}