/*
Theme Name: Daitalens
Theme URI: https://daitalens.com
Author: Zendaita Pty Ltd
Author URI: https://zendaita.com
Description: Premium theme for Daitalens BI Analytics Platform. Deep navy aesthetic with brand blue accents, GSAP scroll animations, and Lenis smooth scroll.
Version: 2.0.0
License: Proprietary
Text Domain: daitalens
*/

/* ============================================
   DESIGN TOKENS (CSS Custom Properties)
   ============================================ */

:root {
    /* Backgrounds - Deep navy blues */
    --bg-primary: #0B1929;
    --bg-secondary: #0F1F33;
    --bg-tertiary: #132640;
    --bg-card: #162B45;
    --bg-card-hover: #1A3350;
    --bg-white: #F0F4FA;
    --bg-off-white: #E4ECF5;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #A8BAD0;
    --text-muted: #6B8099;
    --text-dark: #0B1929;
    --text-dark-secondary: #3D5573;

    /* Accent - Zendaita Blue */
    --accent: #1071B9;
    --accent-hover: #2AAAE1;
    --accent-glow: rgba(16, 113, 185, 0.15);
    --accent-subtle: rgba(16, 113, 185, 0.08);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(16, 113, 185, 0.4);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Font sizes - fluid */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: clamp(1.75rem, 3vw, 2rem);
    --text-4xl: clamp(2rem, 4vw, 2.75rem);
    --text-5xl: clamp(2.5rem, 5vw, 3.5rem);
    --text-6xl: clamp(3rem, 6vw, 4.5rem);
    --text-hero: clamp(3rem, 7vw, 5.5rem);

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --container-narrow: 800px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --duration-fast: 0.2s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(12, 171, 168, 0.15);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* Lenis smooth scroll */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-out);
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h1 { font-size: var(--text-hero); letter-spacing: -0.02em; }
h2 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-xl); font-family: var(--font-body); font-weight: 600; }
h5 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 600; }

p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Eyebrow / label text */
.eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    display: block;
}

/* Large body text */
.text-lead {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--wide {
    max-width: var(--container-wide);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section--dark {
    background-color: var(--bg-secondary);
}

.section--darker {
    background-color: var(--bg-tertiary);
}

.section--white {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.section--white h1,
.section--white h2,
.section--white h3 {
    color: var(--accent);
}

.section--white p {
    color: var(--text-dark-secondary);
}

.section--white .eyebrow {
    color: var(--accent);
}

.section--white .stat {
    background: var(--bg-off-white);
    border-color: #CBD5E1;
}

.section--white .stat__number {
    color: var(--accent);
}

.section--white .stat__label {
    color: var(--text-dark-secondary);
}

.section--white .btn--ghost {
    color: var(--accent);
}

.section--white .btn--ghost:hover {
    color: var(--accent-hover);
}

/* Section divider line */
.section__divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-bottom: var(--space-xl);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(11, 25, 41, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img,
.custom-logo {
    max-height: 36px;
    width: auto;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.site-logo a,
.custom-logo-link {
    display: flex;
    align-items: center;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.main-navigation a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--duration-normal) var(--ease-out);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--text-primary);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--duration-normal) var(--ease-out);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

/* Contact CTA in nav */
.nav-cta a {
    background: var(--accent);
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.nav-cta a:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 6px 0;
    transition: all var(--duration-normal) var(--ease-out);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    overflow: hidden;
    padding-top: 80px;
}

/* Subtle grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Accent glow */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.hero__title {
    font-size: var(--text-hero);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.hero__title em {
    font-style: italic;
    color: var(--accent);
}

.hero__subtitle {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn--outline:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--accent);
    padding: 14px 0;
    border: none;
}

.btn--ghost:hover {
    color: var(--accent-hover);
}

.btn--ghost .btn-arrow {
    transition: transform var(--duration-normal) var(--ease-out);
}

.btn--ghost:hover .btn-arrow {
    transform: translateX(4px);
}

/* Button arrow SVG */
.btn-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.intro__text h2 {
    margin-bottom: var(--space-lg);
}

.intro__text p {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.intro__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat {
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PRODUCTS / SERVICES SHOWCASE
   ============================================ */

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.product-showcase--reverse {
    direction: rtl;
}

.product-showcase--reverse > * {
    direction: ltr;
}

.product__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
    background: var(--bg-secondary);
    overflow: hidden;
}

.product__visual img {
    max-width: 85%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
}

/* Decorative glow behind product images */
.product__visual::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.product__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
    background: var(--bg-primary);
}

.product__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--accent-subtle);
    color: var(--accent);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    width: fit-content;
    border: 1px solid var(--border-accent);
}

.product__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.product__description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.product__features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.product__features li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.product__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* ============================================
   PARTNER LOGO MARQUEE
   ============================================ */

.marquee-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--space-4xl);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
    display: flex;
    gap: var(--space-4xl);
    animation: marqueeScroll 30s linear infinite;
    flex-shrink: 0;
}

.marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 50px;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity var(--duration-normal) var(--ease-out);
    filter: grayscale(100%) brightness(2);
}

.marquee__item:hover {
    opacity: 0.8;
}

.marquee__item img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
}

/* Text-based partner logos */
.marquee__item span {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - var(--space-4xl))); }
}

/* ============================================
   VALUE PROPOSITION / FEATURES GRID
   ============================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.value-card {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--duration-slow) var(--ease-out);
}

.value-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-lg);
    color: var(--accent);
}

.value-card__title {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.value-card__text {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: var(--text-muted);
}

/* Value cards on white sections */
.section--white .value-card {
    background: var(--bg-white);
    border-color: #CBD5E1;
}

.section--white .value-card:hover {
    background: var(--bg-off-white);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.section--white .value-card__title {
    color: var(--text-dark);
}

.section--white .value-card__text {
    color: var(--text-dark-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    position: relative;
    margin-bottom: var(--space-md);
}

.cta-section p {
    position: relative;
    font-size: var(--text-lg);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.cta-section .btn {
    position: relative;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: var(--space-md);
}

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

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-section h4 {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: color var(--duration-normal) var(--ease-out);
}

.footer-section a:hover {
    color: var(--text-primary);
}

/* Social links */
.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-details {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-size: var(--text-sm);
    color: var(--text-dark-secondary);
    margin: 0;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form-card {
    background: var(--bg-white);
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.contact-form-card h3 {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-dark);
    background: var(--bg-off-white);
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-md);
    transition: border-color var(--duration-normal) var(--ease-out);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 113, 185, 0.1);
}

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

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ============================================
   SCROLL ANIMATIONS (GSAP targets)
   ============================================ */

/* GSAP handles initial/animated states via fromTo() - no CSS hiding needed */

/* ============================================
   HORIZONTAL RULE / DIVIDERS
   ============================================ */

.divider {
    border: none;
    height: 1px;
    background: var(--border-subtle);
    margin: 0;
}

/* ============================================
   WORDPRESS OVERRIDES
   ============================================ */

.wp-block-image {
    margin-bottom: var(--space-md);
}

.page-content {
    padding: var(--space-4xl) 0;
    padding-top: calc(var(--space-4xl) + 80px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .intro {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .product-showcase--reverse {
        direction: ltr;
    }

    .product__visual {
        min-height: 300px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 5rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 25, 41, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px var(--space-lg) var(--space-lg);
        z-index: 999;
    }

    .main-navigation.is-active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .main-navigation a {
        font-size: var(--text-2xl);
    }

    /* Hamburger to X animation */
    .menu-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }

    .product__info,
    .product__visual {
        padding: var(--space-xl);
    }

    .hero__scroll {
        display: none;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .lenis.lenis-smooth {
        scroll-behavior: auto;
    }

    /* Ensure elements are visible when animations are disabled */

    .marquee__track {
        animation: none;
    }
}
