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


/*  --teal: #1a1a1a;          ← Dark gray instead of green */
/*    --teal-light: #444444;    ← Medium gray instead of green */
/*    --teal-dim: #111111;      ← Almost black instead of green */
  

/*
:root {
    --bg: #f9f9f9;
    --surface: #eeeeee;
    --card: rgba(255,255,255,0.85);
    --border: rgba(0,0,0,0.10);
    --border-bright: rgba(0,0,0,0.25);
    --teal: #1a1a1a;          
    --teal-light: #444444;    
    --teal-dim: #111111;      
    --teal-glow: rgba(0,0,0,0.05);
    --text: #111111;
    --text-muted: #444444;
    --text-dim: #777777;
    --mono: 'Space Mono', monospace;
    --sans: 'Space Grotesk', sans-serif;
    --serif: 'Cormorant Garamond', serif;
}
*/

/* Colors sampled directly from the WS Consulting / GAIA brochure (GAIA_EN.pdf) */
:root {
    --bg: #f6f8fa;
    --surface: #eef2f1;
    --card: rgba(255, 255, 255, 0.75);
    --border: rgba(25, 180, 155, 0.18);
    --border-bright: rgba(25, 180, 155, 0.5);
    --teal: #19b49b;
    --teal-light: #3fd0b6;
    --teal-dim: #128572;
    --teal-glow: rgba(25, 180, 155, 0.15);
    --text: #2a2f2f;
    --text-muted: #4b5050;
    --text-dim: #7c8686;
    --mono: 'Space Mono', monospace;
    --sans: 'Space Grotesk', sans-serif;
    --serif: 'Cormorant Garamond', serif;
}


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

/* ----- PRELOADER ----- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s, visibility 0.8s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.preloader-text {
    margin-top: 1rem;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--teal);
    letter-spacing: 0.3em;
}

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

/* ----- CUSTOM CURSOR ----- */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-orb {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(14, 130, 82, 0.15), transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}
.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--teal-light);
}
.cursor-orb.hover {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(14, 130, 82, 0.25), transparent 70%);
}

/* ----- NAVIGATION ----- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 4rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo-container img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-logo span {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 400;
    -webkit-text-fill-color: var(--text-muted);
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-mark {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    font-style: italic;
    -webkit-text-fill-color: #FF4040;
    color: #FF4040;
}
.nav-logo small {
    font-size: 0.6rem;
    opacity: 0.7;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    background: var(--teal);
    border: none;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(14, 130, 82, 0.25);
}
.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(14, 130, 82, 0.35);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ----- HERO ----- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 4rem 5rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Same grid + blob background treatment as the hero, applied to content sections */
.section-hero-bg {
    overflow: hidden;
    background: var(--bg);
}
.section-hero-bg .hero-grid {
    animation: none;
    opacity: 0.8;
}
.section-hero-bg .blob {
    opacity: 0.1;
}

/*
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(14, 130, 82, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 130, 82, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
    animation: gridPulse 10s ease-in-out infinite alternate;
    z-index: -1;
}
*/

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(25, 180, 155, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 180, 155, 0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
    animation: gridPulse 10s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes gridPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    animation: floatBlob 20s ease-in-out infinite alternate;
}
.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--teal-light);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: #a8d5c0;
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}
@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 40px) scale(0.9);
    }
    100% {
        transform: translate(30px, -10px) scale(1.05);
    }
}
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--teal);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}
h1 {
    font-family: var(--sans);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-bottom: 1.5rem;
}
h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 3rem;
}
.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--teal);
    color: #fff;
    padding: 0.9rem 2.4rem;
    border-radius: 40px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 6px 20px rgba(14, 130, 82, 0.3);
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(14, 130, 82, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text);
    padding: 0.9rem 2.4rem;
    border-radius: 40px;
    border: 1px solid var(--border);
    font-family: var(--sans);
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.btn-secondary:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14, 130, 82, 0.1);
}
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.stat-num {
    font-family: var(--mono);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ----- MARQUEE ----- */
.marquee {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-track {
    display: inline-flex;
    gap: 2.5rem;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}
.marquee-track span:nth-child(even) {
    color: var(--teal);
    font-size: 0.5rem;
}
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ----- SECTIONS (common) ----- */
section {
    padding: 6rem 4rem;
    position: relative;
    z-index: 2;
}
.section-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--teal);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}
h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

/* Generic centered content wrapper — keeps heading/intro/table
   flush to the same left edge inside a section. Use this on any
   section body that isn't already given its own max-width class
   (e.g. .steps-full, .features-full, .about-paradigm, .contact-page). */
.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

/* ----- TEASER (Home) ----- */
.teaser {
    background: var(--surface);
}
.teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.teaser-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}
.teaser-blockquote {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-muted);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
}
.quote-mark {
    font-size: 4rem;
    font-family: var(--serif);
    color: var(--teal);
    opacity: 0.2;
    line-height: 0.5;
    display: block;
}
.quote-author {
    display: block;
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-style: normal;
    color: var(--text-dim);
}

/* ----- PREVIEW (Home) ----- */
.preview {
    max-width: 1100px;
    margin: 0 auto;
}
.preview-header {
    text-align: center;
}
.preview-header .section-intro {
    margin-left: auto;
    margin-right: auto;
}
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.preview-card,
.blog-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.preview-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(14, 130, 82, 0.06);
    border-color: var(--border-bright);
}
.preview-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: rgba(14, 130, 82, 0.04);
}
.preview-card h3,
.blog-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.preview-card p,
.blog-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.blog-tag {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(14, 130, 82, 0.08);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.blog-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s;
}
.blog-link:hover {
    transform: translateX(4px);
}

/* ----- CTA SECTION ----- */
.cta-section {
    background: var(--surface);
    text-align: center;
}
.cta-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}
.cta-wrap p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 1rem 0 2rem;
}

/* ----- PAGE HERO (inner pages) ----- */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-dim), var(--teal));
    opacity: 0.06;
    z-index: 0;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero-content h1 {
    max-width: 100%;
    margin: 0 auto;
    -webkit-text-fill-color: var(--text);
    background: none;
}
.page-hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ----- ABOUT PAGE ----- */
.about-philosophy {
    max-width: 1100px;
    margin: 0 auto;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.about-quote {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    border-left: 3px solid var(--teal);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-stat-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 130, 82, 0.06);
}
.about-stat-num {
    font-family: var(--mono);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--teal);
    display: block;
}
.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.about-paradigm {
    max-width: 1100px;
    margin: 0 auto;
}
.compare-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}
.compare-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}
.compare-header span:last-child {
    color: var(--teal);
}
.compare-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.compare-row:last-child {
    border-bottom: none;
}
.compare-row span:first-child {
    color: var(--text-dim);
}
.compare-row span:last-child {
    color: var(--text-muted);
    font-weight: 500;
}
.steps-full {
    max-width: 1100px;
    margin: 0 auto;
}

/* ----- STEPS ----- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
}
.step {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    transition: background 0.3s, transform 0.2s;
}
.step:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.01);
    z-index: 2;
}
.step-num {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--teal);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 700;
}
.step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----- FEATURES FULL ----- */
.features-full {
    max-width: 1100px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.feature {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}
.feature:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 130, 82, 0.08);
    border-color: var(--border-bright);
    z-index: 2;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(14, 130, 82, 0.04);
    transition: background 0.3s, transform 0.3s;
}
.feature:hover .feature-icon {
    background: rgba(14, 130, 82, 0.1);
    transform: scale(1.05) rotate(-2deg);
}
.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ----- COST LIST ----- */
.cost-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    max-width: 1100px;
    margin: 0 auto;
}
.cost-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.cost-item:hover {
    border-color: var(--border-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 130, 82, 0.06);
}
.cost-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    margin-top: 0.6rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(14, 130, 82, 0.3);
}
.cost-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ----- SPECS TABLE ----- */
.specs-table {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}
.specs-row {
    display: flex;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.specs-row:hover {
    background: rgba(255, 255, 255, 0.6);
}
.specs-row:last-child {
    border-bottom: none;
}
.specs-key {
    width: 280px;
    flex-shrink: 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--teal-dim);
    letter-spacing: 0.05em;
    border-right: 1px solid var(--border);
}
.specs-val {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ----- CONTACT PAGE ----- */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
}
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contact-info h2 {
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0;
    /* border-bottom: 1px solid var(--border); */
}
.contact-detail:last-of-type {
    border-bottom: none;
}
.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
    background: rgba(14, 130, 82, 0.04);
}
.contact-detail-label {
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}
.contact-detail a,
.contact-detail span {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}
.contact-detail a:hover {
    color: var(--teal);
}
.contact-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
}
.form-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.form-sub {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.45rem;
    font-weight: 600;
}
input,
textarea,
select {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
}
input:focus,
textarea:focus,
select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(14, 130, 82, 0.08);
}
textarea {
    resize: vertical;
    min-height: 110px;
}
.form-note {
    font-size: 0.775rem;
    color: var(--text-dim);
    margin-top: 1rem;
    line-height: 1.6;
}
.form-success {
    display: none;
    background: rgba(14, 130, 82, 0.06);
    border: 1px solid var(--border-bright);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--teal);
    margin-top: 1rem;
}

/* ----- BLOG LISTING ----- */
.blog-listing {
    max-width: 1100px;
    margin: 0 auto;
}
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.blog-card-full {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 130, 82, 0.06);
}
.blog-card-full h2 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-full h2 a:hover {
    color: var(--teal);
}
.blog-meta {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    margin: 0.75rem 0 1rem;
}

/* ----- ARTICLE BODY ----- */
.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem;
}
.article-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}
.article-container p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}
.article-highlight {
    background: rgba(14, 130, 82, 0.04);
    border-left: 4px solid var(--teal);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.highlight-icon {
    font-size: 1.5rem;
    color: var(--teal);
    line-height: 1.4;
}
.article-highlight p {
    margin: 0;
}
.blog-article-tag {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--teal);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    background: rgba(14, 130, 82, 0.08);
    padding: 0.2rem 1rem;
    border-radius: 20px;
}
.blog-article-meta {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 1rem;
}

/* ----- FOOTER ----- */
footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 600;
    font-style: italic;
    color: #FF4040;
    text-decoration: none;
    -webkit-text-fill-color: #FF4040;
    background: none;
}
.footer-left p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-left span {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-dim);
}
.footer-center {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-center a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-center a:hover {
    color: var(--teal);
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}
.footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}
.footer-right a:hover {
    color: var(--teal);
}
.footer-right span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .about-grid,
    .teaser-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .teaser-grid {
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1.5rem;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .hero,
    section {
        padding: 5rem 1.5rem 3rem;
    }
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .specs-key {
        width: 140px;
        font-size: 0.65rem;
        padding: 0.75rem 1rem;
    }
    .specs-val {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .footer-right {
        align-items: center;
    }
    .footer-center {
        justify-content: center;
    }
    .cursor-dot,
    .cursor-orb {
        display: none;
    }
    .page-hero {
        min-height: 30vh;
        padding: 7rem 1.5rem 3rem;
    }
    .marquee {
        padding: 0.5rem 0;
    }
    .marquee-track {
        animation-duration: 20s;
    }
}
@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .step:hover,
    .feature:hover,
    .preview-card:hover,
    .blog-card:hover {
        transform: none;
    }
}
