/* ========================================
   CLUBE DA CIDADE — Styles
   Aesthetic: Noir Editorial
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --bg: #09090B;
    --bg-surface: #131316;
    --bg-surface-light: #1C1C22;
    --bg-surface-hover: #232329;
    --text-primary: #F2EDE4;
    --text-secondary: #7A7A86;
    --text-tertiary: #55555F;
    --accent-gold: #C8A34E;
    --accent-gold-light: #D4B86A;
    --accent-gold-dim: rgba(200, 163, 78, 0.15);
    --accent-blue: #3B7DDD;
    --border: rgba(242, 237, 228, 0.06);
    --border-light: rgba(242, 237, 228, 0.1);
    --font-display: 'Bricolage Grotesque', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --max-width: 1200px;
    --nav-height: 72px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

em {
    font-style: normal;
    color: var(--accent-gold);
}

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

/* ---------- Grain Overlay ---------- */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--accent-gold);
    color: var(--bg);
}

.btn--primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 163, 78, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn--ghost:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    transition: color 0.3s;
}

.nav-logo:hover {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    color: var(--bg);
    background: var(--accent-gold);
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--accent-gold-light);
    color: var(--bg);
    transform: translateY(-1px);
}

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

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.hero-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8B5E34 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: orbFloat3 18s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 163, 78, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.hero-glow.active {
    opacity: 1;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-gold-dim);
    border: 1px solid rgba(200, 163, 78, 0.2);
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.9s var(--ease-out) forwards;
}

.reveal--d1 { animation-delay: 0.1s; }
.reveal--d2 { animation-delay: 0.2s; }
.reveal--d3 { animation-delay: 0.3s; }
.reveal--d4 { animation-delay: 0.5s; }
.reveal--d5 { animation-delay: 0.65s; }

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

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SECTIONS — General
   ======================================== */
.section {
    padding: clamp(80px, 12vw, 140px) 0;
    position: relative;
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--accent-gold);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    max-width: 700px;
}

/* ========================================
   ABOUT
   ======================================== */
.section--about {
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: clamp(60px, 8vw, 100px);
}

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

.about-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    padding: 28px 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
}

.value-card:hover {
    border-color: rgba(200, 163, 78, 0.2);
    background: var(--bg-surface-light);
    transform: translateX(8px);
}

.value-icon {
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 56px);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-prefix,
.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

/* ========================================
   SERVICES
   ======================================== */
.section--services {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: clamp(32px, 3.5vw, 44px);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.service-card:hover {
    border-color: rgba(200, 163, 78, 0.15);
    transform: translateY(-4px);
}

.service-card--featured {
    border-color: rgba(200, 163, 78, 0.15);
    background: linear-gradient(135deg, var(--bg) 0%, rgba(200, 163, 78, 0.03) 100%);
}

.service-card-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card--featured .service-card-glow,
.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-gold-dim);
    border: 1px solid rgba(200, 163, 78, 0.2);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.service-icon {
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    margin-bottom: 4px;
}

.service-subtitle {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    font-weight: 500;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-desc strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.6;
}

.service-card--featured .service-features li::before {
    opacity: 1;
}

/* ========================================
   ANDROMEDA
   ======================================== */
.section--andromeda {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.andromeda-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#andromedaCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.andromeda-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, transparent 30%, var(--bg) 75%);
}

.andromeda-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.andromeda-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.andromeda-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 40px;
}

.andromeda-desc strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.andromeda-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.andromeda-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.andromeda-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold-dim);
    border: 1px solid rgba(200, 163, 78, 0.15);
    border-radius: 12px;
    color: var(--accent-gold);
}

.andromeda-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 4px;
}

.andromeda-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Andromeda Seal */
.andromeda-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.andromeda-seal {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.andromeda-seal-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.andromeda-seal-ring--outer {
    width: 100%;
    height: 100%;
    border-color: rgba(200, 163, 78, 0.15);
    animation: sealRotate 30s linear infinite;
}

.andromeda-seal-ring--outer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateX(-50%);
}

.andromeda-seal-ring--middle {
    width: 75%;
    height: 75%;
    border-color: rgba(200, 163, 78, 0.1);
    animation: sealRotate 20s linear infinite reverse;
}

.andromeda-seal-ring--middle::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    transform: translateX(-50%);
}

.andromeda-seal-ring--inner {
    width: 50%;
    height: 50%;
    border-color: rgba(200, 163, 78, 0.2);
    animation: sealRotate 12s linear infinite;
}

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

.andromeda-seal-core {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.andromeda-seal-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.andromeda-seal-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
}

.andromeda-seal-sub {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

/* ========================================
   RESULTS
   ======================================== */
.section--results {
    border-top: 1px solid var(--border);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.result-card {
    padding: clamp(28px, 3vw, 40px);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.result-card:hover {
    border-color: rgba(200, 163, 78, 0.15);
    transform: translateY(-4px);
}

.result-metric {
    margin-bottom: 12px;
}

.result-prefix {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    color: var(--accent-gold);
}

.result-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.result-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--accent-gold);
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial {
    padding: clamp(32px, 3.5vw, 44px);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
}

.testimonial:hover {
    border-color: rgba(200, 163, 78, 0.12);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--accent-gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gold-dim);
    border: 1px solid rgba(200, 163, 78, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.04em;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ========================================
   CONTACT
   ======================================== */
.section--contact {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-gold);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A7A86' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-gold-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button Loading State */
.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(9, 9, 11, 0.25);
    border-top-color: var(--bg);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.btn.loading .btn-text,
.btn.loading .btn-arrow {
    display: none;
}

.btn.loading .btn-spinner {
    display: block;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.85;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: clamp(36px, 5vw, 52px);
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s var(--ease-out);
}

.popup-overlay.active .popup {
    transform: translateY(0) scale(1);
}

.popup-icon {
    color: #2d8a4e;
    margin-bottom: 20px;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.popup-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.popup-close {
    min-width: 160px;
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .andromeda-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .andromeda-features {
        align-items: center;
    }

    .andromeda-feature {
        max-width: 500px;
        text-align: left;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(9, 9, 11, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        border-left: 1px solid var(--border);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link--cta {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

    .stats-bar {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .andromeda-seal {
        width: 220px;
        height: 220px;
    }
}
