/* ============================================================
   enns.co -Concept 4 Styles (v2)
   Brand: Navy #0A1F44 / Ice Blue #0EA5E9
   ============================================================ */

/* --- Custom Properties (Brand Tokens) --- */
:root {
    --navy: #0A1F44;
    --navy-90: rgba(10, 31, 68, 0.9);
    --navy-80: rgba(10, 31, 68, 0.8);
    --navy-60: rgba(10, 31, 68, 0.6);
    --navy-40: rgba(10, 31, 68, 0.4);
    --navy-20: rgba(10, 31, 68, 0.2);
    --navy-10: rgba(10, 31, 68, 0.1);
    --navy-05: rgba(10, 31, 68, 0.03);
    --accent: #0EA5E9;
    --accent-dark: #0284C7;         /* Darker blue for text on white - passes WCAG AA */
    --accent-80: rgba(14, 165, 233, 0.8);
    --accent-60: rgba(14, 165, 233, 0.6);
    --accent-40: rgba(14, 165, 233, 0.4);
    --accent-20: rgba(14, 165, 233, 0.2);
    --accent-10: rgba(14, 165, 233, 0.1);
    --accent-05: rgba(14, 165, 233, 0.05);
    --light: #FAFAFA;
    --white: #FFFFFF;
    --surface: rgba(255, 255, 255, 0.7);
    --border: rgba(10, 31, 68, 0.06);
    --text-primary: #0A1F44;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-on-dark: #E2E8F0;
    --text-on-dark-muted: #94A3B8;
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background-color: var(--accent);
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Glassmorphism Panels --- */
.glass-panel {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px -1px rgba(10, 31, 68, 0.03);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -4px rgba(10, 31, 68, 0.08);
}

/* Glass on dark backgrounds */
.glass-panel-dark {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel-dark:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.2);
}

/* --- Ambient Background --- */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, var(--accent-10) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, var(--navy-05) 0%, transparent 50%);
    filter: blur(60px);
    opacity: 0.8;
    pointer-events: none;
}

.ambient-wrap {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-20);
    animation: float1 20s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--navy-10);
    animation: float2 25s infinite alternate-reverse ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 5%) scale(1.1); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, -10%) scale(1.2); }
}

/* --- GSAP Reveal State --- */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* --- Hover Underline --- */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar-inner {
    border-radius: 9999px;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 56rem;
    width: 100%;
    justify-content: space-between;
}

.navbar-inner.scrolled {
    box-shadow: 0 4px 16px rgba(10, 31, 68, 0.08);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

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

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px var(--accent-20);
}

.nav-cta:hover {
    background-color: var(--accent-dark);
    transform: scale(1.05);
}

/* Mobile hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--navy);
    line-height: 1;
}


/* ==========================================================
   HERO
   ========================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--navy);
    margin: 0 0 2rem;
    max-width: 56rem;
}

.hero h1 .muted {
    color: var(--navy-40);
}

.hero-sub {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 38rem;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 3rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Stat bar under hero */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 5rem;
    width: 100%;
    max-width: 48rem;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--border);
}

.hero-stat {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    text-align: center;
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px var(--accent-20);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 8px 24px var(--accent-20);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-secondary:hover {
    color: var(--navy);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}


/* ==========================================================
   SECTION SHARED UTILITIES
   ========================================================== */
.section-header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Dark section variants */
.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-header p {
    color: var(--text-on-dark-muted);
}


/* ==========================================================
   SERVICES
   ========================================================== */
.services {
    padding: 6rem 1.5rem 8rem;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(10, 31, 68, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--navy-10);
}

.service-icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--navy);
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.015em;
    margin: 0 0 0.5rem;
}

.service-hook {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--accent-dark);
    font-weight: 500;
    margin: 0 0 1rem;
}



.service-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--navy-10);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-list li svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}


/* ==========================================================
   WHY SECTION -Full-width dark background
   ========================================================== */
.why-section {
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 10;
    background: linear-gradient(160deg, var(--navy) 0%, #0D2B5C 100%);
    overflow: hidden;
}

/* Decorative glow behind why section */
.why-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 30vw;
    height: 30vw;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.why-card {
    padding: 2.5rem;
    border-radius: 1.25rem;
    position: relative;
}

.why-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.why-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem;
}

.why-card p {
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

/* Accent line on top of each card */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 2rem;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}



/* ==========================================================
   SOCIAL PROOF / TESTIMONIALS
   ========================================================== */
.proof-section {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 10;
    background: var(--light);
    border-top: 1px solid var(--navy-10);
    border-bottom: 1px solid var(--navy-10);
}

.proof-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.proof-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.7;
    margin: 0 0 2rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.proof-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent-40);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    font-style: normal;
    line-height: 1;
}

.proof-attribution {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.proof-attribution strong {
    color: var(--navy);
    font-weight: 600;
}

.proof-placeholder-note {
    font-size: 0.75rem;
    color: var(--navy-40);
    margin-top: 2rem;
    font-style: italic;
}


/* ==========================================================
   FAQ
   ========================================================== */
.faq-section {
    padding: 6rem 1.5rem 8rem;
    position: relative;
    z-index: 10;
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--accent-dark);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}


/* ==========================================================
   ABOUT -Single column, no photo
   ========================================================== */
.about-section {
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 10;
    background: linear-gradient(160deg, var(--navy) 0%, #0D2B5C 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 40vw;
    height: 40vw;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    pointer-events: none;
}

.about-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.about-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    border: 3px solid rgba(14, 165, 233, 0.2);
    margin: 0 auto 1.5rem;
}

.about-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.25rem;
}

.about-title {
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    margin: 0 0 2rem;
}

.about-text {
    text-align: left;
    max-width: 36rem;
    margin: 0 auto;
}

.about-text p {
    color: var(--text-on-dark);
    line-height: 1.8;
    margin: 0 0 1rem;
    font-size: 1.0625rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
}

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.value-tag svg {
    width: 0.875rem;
    height: 0.875rem;
}


/* ==========================================================
   CONTACT -Stronger visual presence
   ========================================================== */
.contact-section {
    padding: 6rem 1.5rem 8rem;
    position: relative;
    z-index: 10;
}

.contact-inner {
    max-width: 56rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    line-height: 1.15;
}

.contact-text > p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.contact-promise {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-promise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.contact-promise-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--navy-10);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px -15px rgba(10, 31, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    background: var(--accent-10);
    border-radius: 50%;
    filter: blur(48px);
    transform: translate(3rem, -3rem);
    pointer-events: none;
}

.contact-form-wrap h3 {
    font-weight: 700;
    font-size: 1.375rem;
    margin: 0 0 1.5rem;
    color: var(--navy);
}

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

.form-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    border: 1px solid var(--navy-10);
    background: var(--light);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--navy);
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-10);
}

.form-input::placeholder {
    color: var(--navy-40);
}

.form-submit {
    width: 100%;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-family: inherit;
    border-radius: 0.75rem;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px var(--accent-20);
    margin-top: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background-color: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-20);
}

.form-submit svg {
    width: 1rem;
    height: 1rem;
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.form-result {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success {
    color: var(--accent-dark);
}

.form-success svg {
    margin: 0 auto 0.75rem;
    display: block;
    color: var(--accent);
}

.form-error {
    color: #dc2626;
}


/* ==========================================================
   FOOTER -More useful
   ========================================================== */
.site-footer {
    padding: 3rem 1.5rem 2rem;
    background: var(--navy);
    color: var(--text-on-dark-muted);
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-logo {
    line-height: 1;
}

.footer-logo-img {
    height: 28px;
    width: auto;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .nav-toggle {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ambient-blob {
        animation: none;
    }

    .glass-panel,
    .glass-panel-dark {
        transition: none;
    }

    .gsap-reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}
