/* ================================================
   ATTUNE — Recover Your Adaptive Intelligence
   Brand Identity System - Deep Navy & Warm Amber
   ================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Attune Brand Palette */
    --deep-navy: #0D1B2A;
    --navy-mid: #1B2D3E;
    --navy-light: #253A4D;
    --warm-amber: #D4A574;
    --amber-soft: #E5B88A;
    --accent-teal: #4A7C7E;
    --teal-light: #5A9698;
    
    /* Neutrals */
    --soft-white: #F8F6F3;
    --warm-white: #FDFCFA;
    --charcoal: #2C3E50;
    --charcoal-light: #4A5568;
    
    /* Typography - Geist Sans */
    --font-primary: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --container-max: 1200px;
    --container-narrow: 720px;
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    
    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========== WAVE ANIMATED BACKGROUND ========== */
.wave-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 1;
}

.wave-bg svg {
    width: 100%;
    height: 100%;
    min-width: 1920px;
    min-height: 1080px;
}

/* Wave base styles */
.wave {
    stroke-linecap: round;
    stroke-linejoin: round;
    will-change: stroke-dashoffset, opacity;
}

/* Wave animation layers */
.wave-layer-1 {
    opacity: 1;
}

.wave-flow-1 {
    stroke-dasharray: 40 60;
    animation: waveFlow1 15s ease-in-out infinite;
}

.wave-flow-2 {
    stroke-dasharray: 30 50;
    animation: waveFlow2 18s ease-in-out infinite;
    animation-delay: -6s;
}

.wave-flow-3 {
    stroke-dasharray: 50 70;
    animation: waveFlow3 20s ease-in-out infinite;
    animation-delay: -12s;
}

/* Wave layer 2 - growing effect */
.wave-layer-2 {
    opacity: 0.8;
}

.wave-grow-1 {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: waveGrow 18s ease-in-out infinite alternate;
}

.wave-grow-2 {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: waveGrow 22s ease-in-out infinite alternate;
    animation-delay: -7s;
}

/* Floating wave elements */
.wave-float-1 {
    animation: waveFloat 16s ease-in-out infinite;
    transform-origin: center;
}

.wave-float-2 {
    animation: waveFloat 20s ease-in-out infinite;
    animation-delay: -5s;
}

.wave-float-3 {
    animation: waveFloat 18s ease-in-out infinite;
    animation-delay: -10s;
}

/* Node pulses */
.node {
    will-change: opacity, r;
}

.node-pulse-1 {
    animation: nodePulse 4s ease-in-out infinite;
}

.node-pulse-2 {
    animation: nodePulse 5s ease-in-out infinite;
    animation-delay: -1s;
}

.node-pulse-3 {
    animation: nodePulse 6s ease-in-out infinite;
    animation-delay: -2s;
}

.node-pulse-4 {
    animation: nodePulse 4.5s ease-in-out infinite;
    animation-delay: -3s;
}

.node-pulse-5 {
    animation: nodePulse 5.5s ease-in-out infinite;
    animation-delay: -4s;
}

/* Keyframe Animations */
@keyframes waveFlow1 {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 100;
        opacity: 0.5;
    }
}

@keyframes waveFlow2 {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.25;
    }
    50% {
        stroke-dashoffset: -80;
        opacity: 0.45;
    }
}

@keyframes waveFlow3 {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.35;
    }
    50% {
        stroke-dashoffset: 120;
        opacity: 0.5;
    }
}

@keyframes waveGrow {
    0% {
        stroke-dashoffset: 800;
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.35;
    }
}

@keyframes waveFloat {
    0%, 100% {
        opacity: 0.25;
        transform: translateY(0) translateX(0);
    }
    25% {
        opacity: 0.4;
        transform: translateY(-8px) translateX(4px);
    }
    50% {
        opacity: 0.3;
        transform: translateY(-4px) translateX(-3px);
    }
    75% {
        opacity: 0.45;
        transform: translateY(4px) translateX(5px);
    }
}

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.4);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .wave-bg {
        opacity: 0.3;
    }
    
    .wave,
    .node {
        animation: none !important;
    }
    
    .wave-grow-1,
    .wave-grow-2 {
        stroke-dashoffset: 0;
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--deep-navy);
    color: var(--soft-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========== LAYOUT ========== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.container-narrow {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 24px;
    }
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

em {
    font-style: italic;
}

.prose {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--soft-white);
    opacity: 0.9;
}

.prose p {
    margin-bottom: 1.5rem;
}

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

.prose.prose-large {
    font-size: 1.125rem;
}

.prose strong {
    font-weight: 600;
    color: var(--warm-white);
}

.highlight {
    color: var(--warm-amber);
    font-weight: 500;
}

/* Coined terms in mono font */
.coined-term {
    font-family: var(--font-mono);
    color: var(--warm-amber);
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.nav.scrolled .nav-logo img {
    height: 44px;
}

.nav.scrolled {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 124, 126, 0.2);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--soft-white);
    opacity: 0.7;
    letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--warm-amber);
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--warm-amber);
    padding: 10px 20px;
    border: 1px solid var(--warm-amber);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--warm-amber);
    color: var(--deep-navy);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--soft-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 24px;
    padding: 80px 24px;
}

.mobile-menu-content a {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--soft-white);
    opacity: 0.8;
    transition: var(--transition);
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
    opacity: 1;
    color: var(--warm-amber);
}

.mobile-menu-content .mobile-cta {
    margin-top: 24px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--warm-amber);
    padding: 16px 32px;
    border: 1px solid var(--warm-amber);
    border-radius: 4px;
}

.mobile-menu-content .mobile-cta:hover {
    background: var(--warm-amber);
    color: var(--deep-navy);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--warm-amber);
    color: var(--deep-navy);
}

.btn-primary:hover {
    background: var(--amber-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--soft-white);
    border: 1px solid rgba(248, 246, 243, 0.3);
}

.btn-ghost:hover {
    border-color: var(--soft-white);
    background: rgba(248, 246, 243, 0.05);
}

.btn-teal {
    background: var(--accent-teal);
    color: var(--soft-white);
}

.btn-teal:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.link-arrow {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--warm-amber);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow::after {
    content: '→';
    transition: var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 var(--section-padding);
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-amber);
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--soft-white);
    opacity: 0.85;
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 var(--section-padding-mobile);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background: var(--navy-mid);
}

.section-light {
    background: var(--soft-white);
    color: var(--charcoal);
}

.section-light .prose {
    color: var(--charcoal);
}

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

.section-title {
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ========== STATEMENT ========== */
.statement {
    padding: var(--section-padding) 0;
    border-bottom: 1px solid rgba(74, 124, 126, 0.2);
}

.statement-text {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
}

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

.statement-text.highlight {
    color: var(--warm-amber);
    font-weight: 500;
}

/* ========== INSIGHT LIST ========== */
.insight-list {
    margin: 40px 0;
}

.insight-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(74, 124, 126, 0.2);
    font-size: 1rem;
    line-height: 1.6;
}

.insight-list li:last-child {
    border-bottom: none;
}

.insight-marker {
    width: 8px;
    height: 8px;
    background: var(--warm-amber);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

/* ========== COMPARISON ========== */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.comparison-column {
    padding: 32px;
    border: 1px solid rgba(74, 124, 126, 0.3);
    border-radius: 8px;
}

.comparison-highlight {
    border-color: var(--warm-amber);
    background: rgba(212, 165, 116, 0.05);
}

.comparison-header {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(74, 124, 126, 0.2);
}

.comparison-highlight .comparison-header {
    color: var(--warm-amber);
    border-color: rgba(212, 165, 116, 0.3);
}

.comparison-list li {
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--soft-white);
    opacity: 0.8;
}

.comparison-highlight .comparison-list li {
    opacity: 1;
}

@media (max-width: 768px) {
    .comparison {
        grid-template-columns: 1fr;
    }
}

/* ========== ABOUT BLOCK ========== */
.about-block {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .about-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-image {
        max-width: 160px;
    }
}

/* ========== FRAMEWORK GRID ========== */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.framework-card {
    padding: 32px;
    border: 1px solid rgba(74, 124, 126, 0.2);
    border-radius: 8px;
    transition: var(--transition);
}

.framework-card:hover {
    border-color: var(--warm-amber);
    transform: translateY(-4px);
}

.framework-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--warm-white);
}

.framework-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--soft-white);
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .framework-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== NEWSLETTER ========== */
.newsletter-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-block .section-title {
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--navy-mid);
    border: 1px solid rgba(74, 124, 126, 0.3);
    border-radius: 4px;
    color: var(--soft-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--warm-amber);
}

.newsletter-form input::placeholder {
    color: var(--charcoal-light);
}

.newsletter-note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: var(--charcoal-light);
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ========== TESTIMONIALS ========== */
.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.testimonial {
    padding: 32px;
    border-left: 3px solid var(--warm-amber);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 8px 8px 0;
}

.testimonial-text {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 0.9375rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
}

/* ========== FINAL CTA ========== */
.final-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta .section-title {
    margin-bottom: 16px;
}

.final-cta .prose {
    margin-bottom: 32px;
}

.final-cta .cta-group {
    justify-content: center;
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 180px 0 80px;
}

.page-title {
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--soft-white);
    opacity: 0.8;
    max-width: 800px;
}

/* ========== VALUES GRID ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.value-item {
    padding: 32px;
    border: 1px solid rgba(74, 124, 126, 0.2);
    border-radius: 8px;
}

.value-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--warm-white);
}

.value-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--soft-white);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== PROFILE BLOCK ========== */
.profile-block {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.profile-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .profile-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .profile-image {
        max-width: 200px;
    }
}

/* ========== CALLOUT ========== */
.callout {
    padding: 32px;
    margin: 32px 0;
    border-left: 3px solid var(--warm-amber);
    background: rgba(212, 165, 116, 0.05);
    border-radius: 0 8px 8px 0;
}

.callout p {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ========== SERVICES ========== */
.services-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
    padding: 40px;
    border: 1px solid rgba(74, 124, 126, 0.2);
    border-radius: 8px;
    align-items: start;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--warm-amber);
    transform: translateY(-4px);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-amber);
    padding: 6px 12px;
    border: 1px solid var(--warm-amber);
    border-radius: 4px;
    width: fit-content;
}

.service-tag.tag-featured {
    background: var(--warm-amber);
    color: var(--deep-navy);
}

/* Featured service item */
.service-item.service-featured {
    border: 2px solid var(--warm-amber);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.02) 100%);
    position: relative;
}

.service-item.service-featured::before {
    content: '〰️';
    position: absolute;
    top: -16px;
    right: 40px;
    background: var(--deep-navy);
    padding: 4px 8px;
    font-size: 1rem;
}

.service-item.service-featured:hover {
    border-color: var(--warm-amber);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.15);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--soft-white);
    opacity: 0.9;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--charcoal-light);
    padding-left: 16px;
    position: relative;
}

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
}

.service-action {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========== FAQ ========== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(74, 124, 126, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--warm-white);
}

.faq-answer {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--soft-white);
    opacity: 0.8;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 120px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--soft-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    background: var(--navy-mid);
    border: 1px solid rgba(74, 124, 126, 0.3);
    border-radius: 4px;
    color: var(--soft-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-amber);
}

.form-group select {
    cursor: pointer;
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
    margin-top: 8px;
}

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

.contact-block h3 {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--warm-white);
}

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

.contact-methods li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-light);
}

.contact-methods a {
    font-size: 0.9375rem;
    color: var(--soft-white);
}

.contact-methods a:hover {
    color: var(--warm-amber);
}

.quick-faq p {
    font-size: 0.875rem;
    margin-bottom: 12px;
    color: var(--soft-white);
    opacity: 0.8;
}

.quick-faq p:last-child {
    margin-bottom: 0;
}

.quick-faq strong {
    color: var(--warm-white);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(74, 124, 126, 0.2);
    margin-top: 80px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 72px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--charcoal-light);
}

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

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 0.875rem;
    color: var(--soft-white);
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--warm-amber);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(74, 124, 126, 0.2);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--charcoal-light);
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
}

/* ========== WAVE SYMBOL ========== */
.wave-symbol {
    display: inline-block;
    font-size: 1.2em;
    line-height: 1;
}

/* ========== SELECTION HIGHLIGHT ========== */
::selection {
    background: var(--warm-amber);
    color: var(--deep-navy);
}
