/* ============================================
   YEAH! Software - State of the Art Design
   ============================================ */

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-primary-50: #eff6ff;
    --color-primary-100: #dbeafe;

    --color-accent: #f59e0b;
    --color-accent-dark: #d97706;

    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-gray-950: #030712;

    --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    --max-width: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-700);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--color-gray-900);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img { border-radius: 10px; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
}

.logo-bang { color: var(--color-primary); }

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

.main-nav a {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-600);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.main-nav a:hover {
    color: var(--color-gray-900);
    background: var(--color-gray-100);
}

.nav-cta {
    background: var(--color-primary) !important;
    color: #fff !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--color-primary-dark) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-gray-800);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
    }
    .main-nav.open { display: flex; }
    .main-nav a { font-size: 1.125rem; padding: 0.75rem 1rem; }
    .nav-cta { margin-left: 0; text-align: center; margin-top: 1rem; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 1px 3px rgba(37,99,235,0.3), 0 4px 12px rgba(37,99,235,0.15);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37,99,235,0.35), 0 8px 24px rgba(37,99,235,0.2);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.orb-1 { width: 600px; height: 600px; background: #3b82f6; top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: #8b5cf6; bottom: -100px; left: -100px; }
.orb-3 { width: 300px; height: 300px; background: #06b6d4; top: 50%; left: 60%; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 8px rgba(16,185,129,0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-accent {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--color-accent); }

.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

@media (max-width: 640px) {
    .hero-stats { gap: 1.25rem; }
    .stat-number { font-size: 1.5rem; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Trust Bar --- */
.trust-bar {
    padding: 1.25rem 0;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
    text-align: center;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* --- Sections --- */
.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-500);
    max-width: 640px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* --- Features --- */
.features {
    padding: 7rem 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: var(--color-primary-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon-blue { background: #eff6ff; color: #2563eb; }
.feature-icon-green { background: #ecfdf5; color: #059669; }
.feature-icon-amber { background: #fffbeb; color: #d97706; }
.feature-icon-red { background: #fef2f2; color: #dc2626; }
.feature-icon-purple { background: #f5f3ff; color: #7c3aed; }
.feature-icon-teal { background: #f0fdfa; color: #0d9488; }

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* --- Split Layouts (Portal & Hub) --- */
.portal-section {
    padding: 7rem 0;
    background: var(--color-gray-50);
}

.hub-section { padding: 7rem 0; }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

@media (max-width: 900px) {
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .split-reverse { direction: ltr; }
}

.split-content p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding: 0.375rem 0 0.375rem 2rem;
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.625rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary-50);
    border: 2px solid var(--color-primary-light);
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 14px;
    width: 5px;
    height: 8px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    margin: 0 auto;
    background: var(--color-gray-900);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.phone-screen {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    min-height: 400px;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1.25rem 1.25rem 1rem;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.0625rem;
}

.phone-header img { border-radius: 6px; }

.phone-menu { padding: 0.75rem; }

.phone-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: background 0.2s;
    border-bottom: 1px solid var(--color-gray-100);
}

.phone-menu-item:last-child { border-bottom: none; }
.pmi-icon { font-size: 1.25rem; }

/* Dashboard Mockup */
.dashboard-mockup {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-300);
}

.dash-dots span:first-child { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #10b981; }

.dash-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.dash-body { padding: 0.5rem; }

.dash-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
}

.dash-row:last-child { border-bottom: none; }

.dash-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dash-green { background: var(--color-success); box-shadow: 0 0 6px rgba(16,185,129,0.4); }
.dash-yellow { background: var(--color-warning); box-shadow: 0 0 6px rgba(245,158,11,0.4); }
.dash-red { background: var(--color-danger); box-shadow: 0 0 6px rgba(239,68,68,0.4); }

/* Hub Features */
.hub-features { display: flex; flex-direction: column; gap: 1.25rem; }

.hub-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hub-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-primary-50);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-feature strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.hub-feature p {
    font-size: 0.875rem !important;
    color: var(--color-gray-500) !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* --- Automation --- */
.automation-section {
    padding: 7rem 0;
    background: var(--color-gray-50);
    text-align: center;
}

.auto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

@media (max-width: 900px) { .auto-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .auto-grid { grid-template-columns: 1fr; } }

.auto-card {
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s;
}

.auto-card:hover {
    border-color: var(--color-primary-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.auto-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary-light), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.auto-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.auto-card p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* --- Global --- */
.global-section {
    padding: 7rem 0;
    text-align: center;
}

.global-inner {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.global-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.15) 0%, transparent 60%);
}

.global-inner .section-label { color: #60a5fa; }
.global-inner .section-title { color: #fff; }
.global-inner .section-subtitle { color: rgba(255,255,255,0.6); }

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) { .global-stats { grid-template-columns: 1fr; } }

.global-stat {
    padding: 1.5rem;
}

.global-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #60a5fa;
    margin-bottom: 1rem;
}

.global-stat h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.global-stat p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* --- Contact --- */
.contact-section {
    padding: 7rem 0;
    background: var(--color-gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info p {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-details { margin-bottom: 2rem; }

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-gray-700);
}

.contact-detail svg { color: var(--color-primary); flex-shrink: 0; }

.contact-powered {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
}

.contact-powered p {
    font-size: 0.875rem !important;
    color: var(--color-gray-500) !important;
    margin: 0 !important;
}

.appx-link {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin: 0.25rem 0 0.5rem;
}

.contact-powered-sub {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
}

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-gray-200);
}

.contact-form h3 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}

.contact-form > p {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.375rem;
}

.required { color: var(--color-danger); }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-gray-800);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.form-group textarea { resize: vertical; }

.form-status {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.form-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-gray-950);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-text { color: #fff; font-size: 1.25rem; }

.footer-links {
    display: flex;
    gap: 4rem;
}

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

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.8125rem;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 700px) {
    .footer-top { flex-direction: column; }
    .footer-links { gap: 2rem; }
}

/* --- Scroll Reveal --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Print --- */
@media print {
    .site-header, .hero-bg, .hero-actions, .nav-toggle, .contact-form-wrap { display: none; }
    .hero { min-height: auto; background: #fff; color: #000; padding: 2rem 0; }
    .hero-title, .hero-subtitle { color: #000; -webkit-text-fill-color: #000; }
}
