/* ================================================================
   AquaSole Landing Page Styles
   Aqua (Water/Ocean) + Sole (Green/Algae) theme
   ================================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    --water-primary:   #00c88c;
    --water-secondary: #00a676;
    --water-deep:      #006b52;
    --algae-primary:   #4ADE80;
    --algae-mid:       #22c55e;
    --algae-dark:      #166534;
    --ocean-blue:      #38BDF8;
    --ocean-teal:      #0ea5e9;
    --bg-deep:         #020d06;
    --bg-surface:      #060f08;
    --glass-lp:        rgba(255,255,255,0.04);
    --glass-border-lp: rgba(255,255,255,0.08);
    --font-display:    'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---- Reset / Global ---- */
h1, h2, h3, h4, h5, h6, .lp-hero-title, .lp-section-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.landing-body {
    background:
        radial-gradient(ellipse at 50% 20%, rgba(0, 70, 40, 0.16) 0%, transparent 65%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 50, 30, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 70%, rgba(0, 50, 30, 0.1) 0%, transparent 60%),
        #030905;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height, 80px);
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    background: rgba(2, 13, 6, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 200, 140, 0.12);
    box-shadow: 0 4px 30px rgba(0, 200, 140, 0.05);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    z-index: 2;
}


/* Hero grid */
.lp-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

@media (max-width: 900px) {
    .lp-hero-content { grid-template-columns: 1fr; text-align: center; }
    .lp-hero-cta { justify-content: center; }
    .lp-stats-row { justify-content: center; }
    .lp-hero-visual { display: none; }
}

/* Hero badge */
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(0, 200, 140, 0.08);
    border: 1px solid rgba(0, 200, 140, 0.18);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--water-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--water-primary);
    animation: pulse 2s infinite;
}

/* Hero title */
.lp-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #00c88c 0%, #38BDF8 50%, #4ADE80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

.gradient-text-alt {
    background: linear-gradient(135deg, #4ADE80 0%, #00c88c 60%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.lp-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 2rem;
}

/* CTA row */
.lp-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.lp-btn-glow {
    position: relative;
    background: linear-gradient(180deg, #34d399 0%, #00c88c 100%);
    color: #020d06;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Softened glowing effect — subtle specular shadow instead of heavy neon */
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45), 0 4px 14px rgba(0, 200, 140, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.lp-btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.lp-btn-glow:hover::after {
    left: 140%;
}

.lp-btn-glow:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #4ade80 0%, #00c88c 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 6px 20px rgba(0, 200, 140, 0.22);
}

.lp-btn-ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
}

.lp-btn-ghost:hover {
    border-color: var(--water-primary);
    color: var(--water-primary);
}

/* Stats row */
.lp-stats-row {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.lp-stat { display: flex; flex-direction: column; gap: 2px; }

.lp-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
}

.lp-stat-suffix { font-size: 1.2rem; font-weight: 700; color: var(--water-primary); display: inline; }

.lp-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Hero visual */
.lp-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   TILTED CARD 3D EFFECT
   ============================================================ */
.tilted-card-figure {
    position: relative;
    width: 100%;
    max-width: 420px;
    perspective: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 200, 140, 0.04);
    border: 1px solid rgba(0, 200, 140, 0.14);
    border-radius: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tilted-card-figure:hover {
    border-color: rgba(0, 200, 140, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.tilted-card-inner {
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    will-change: transform;
    border-radius: 1.25rem;
    overflow: hidden;
}

.tilted-card-img {
    width: 100%;
    max-width: 340px;
    object-fit: contain;
    border-radius: 1.25rem;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    transform: translateZ(0);
}

.tilted-card-overlay {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 3;
    transform: translateZ(35px);
    pointer-events: none;
}

.tilted-card-badge {
    background: rgba(4, 15, 8, 0.85);
    border: 1px solid rgba(0, 200, 140, 0.3);
    backdrop-filter: blur(10px);
    color: var(--water-primary, #00c88c);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
    .lp-hero-visual { display: none; }
}


/* ============================================================
   MARQUEE STRIP — removed
   ============================================================ */


/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.lp-section {
    position: relative;
    z-index: 2;
    padding: 7rem 0;
}

.lp-section-dark {
    background: rgba(0, 8, 4, 0.6);
    backdrop-filter: blur(2px);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lp-section-header {
    margin-bottom: 4rem;
}

.lp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--water-primary);
    margin-bottom: 1rem;
    padding: 4px 12px;
    background: rgba(0, 200, 140, 0.08);
    border: 1px solid rgba(0, 200, 140, 0.15);
    border-radius: 999px;
}

.lp-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
}

/* ============================================================
   SCROLL ANIMATION STATES
   ============================================================ */
[data-scroll] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll="fade-up"]    { transform: translateY(50px); }
[data-scroll="fade-left"]  { transform: translateX(60px); }
[data-scroll="fade-right"] { transform: translateX(-60px); }

[data-scroll].scroll-visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 860px) {
    .lp-about-grid { grid-template-columns: 1fr; }
}


/* About img card */
.lp-about-img-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2.25rem;
    background: rgba(0, 200, 140, 0.03);
    border: 1px solid rgba(0, 200, 140, 0.12);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.lp-about-img-card:hover {
    border-color: rgba(0, 200, 140, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.lp-about-img {
    width: 100%;
    max-width: 260px;
    border-radius: 1.25rem;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
}

.lp-about-img-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--water-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}



/* About text */
.lp-about-text {
    max-width: 520px;
}

.lp-about-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.lp-about-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.75rem;
}

.lp-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
}

.lp-badge:hover {
    border-color: var(--water-primary);
    background: rgba(0, 200, 140, 0.08);
}

/* ============================================================
   CLASSIC MINIMALIST FEATURES GRID
   ============================================================ */
.lp-classic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width: 900px) {
    .lp-classic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lp-classic-grid { grid-template-columns: 1fr; }
}

.lp-classic-card {
    position: relative;
    background: rgba(10, 26, 18, 0.4);
    border: 1px solid rgba(0, 200, 140, 0.12);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lp-classic-card:hover {
    border-color: rgba(0, 200, 140, 0.28);
    background: rgba(12, 30, 21, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.lp-classic-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.lp-classic-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--water-primary, #00c88c);
    letter-spacing: 0.1em;
    opacity: 0.85;
}

.lp-classic-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 200, 140, 0.08);
    border: 1px solid rgba(0, 200, 140, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--water-primary, #00c88c);
}

.lp-classic-icon i {
    width: 20px;
    height: 20px;
}

.lp-classic-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.lp-classic-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.lp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (max-width: 900px) {
    .lp-products-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

.lp-product-card {
    position: relative;
    border-radius: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-product-featured {
    border-color: rgba(0, 200, 140, 0.25);
    background: rgba(0, 200, 140, 0.04);
    transform: scale(1.03);
}

.lp-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 200, 140, 0.3);
}

.lp-product-featured:hover { transform: translateY(-8px) scale(1.05); }

.lp-product-glow-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    border-radius: inherit;
}
.lp-glow-cyan  { background: radial-gradient(circle at 50% 30%, rgba(56,189,248,0.15) 0%, transparent 65%); }
.lp-glow-green { background: radial-gradient(circle at 50% 30%, rgba(0,200,140,0.2) 0%, transparent 65%); }
.lp-glow-teal  { background: radial-gradient(circle at 50% 30%, rgba(20,184,166,0.15) 0%, transparent 65%); }

.lp-product-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    padding: 4px 12px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #38BDF8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
}
.lp-badge-premium {
    background: rgba(0, 200, 140, 0.15);
    border-color: rgba(0, 200, 140, 0.3);
    color: #00c88c;
}

.lp-product-img-wrap {
    position: relative;
    width: 100%;
    padding: 1.25rem 0;
    margin-bottom: 1rem;
    border-radius: 1.25rem;
    overflow: hidden;
    z-index: 2;
}

.lp-product-img-big {
    width: 100%;
    max-width: 200px;
    height: 180px;
    object-fit: contain;
    border-radius: 1.25rem;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
    transition: transform 0.5s ease;
}

.lp-product-card:hover .lp-product-img-big {
    transform: translateY(-12px) scale(1.06) rotate(3deg);
}

.lp-product-ripple {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(56,189,248,0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: ripplePulse 2s ease-in-out infinite;
}
.lp-ripple-green { background: radial-gradient(ellipse, rgba(0,200,140,0.3) 0%, transparent 70%); }
.lp-ripple-teal  { background: radial-gradient(ellipse, rgba(20,184,166,0.25) 0%, transparent 70%); }

@keyframes ripplePulse {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.6; }
    50%       { transform: translateX(-50%) scaleX(1.3); opacity: 1; }
}

.lp-product-info { z-index: 2; width: 100%; }

.lp-product-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-top: 0.5rem;
    margin-bottom: 0.35rem;
}

.lp-product-material {
    font-size: 0.78rem;
    color: var(--water-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.lp-product-bio {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.lp-product-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.lp-product-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

/* Price Ladder */
.lp-price-ladder {
    text-align: center;
    padding: 3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2rem;
}

.lp-price-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--water-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
}

.lp-price-track {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
}

.lp-price-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lp-price-bubble {
    padding: 8px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}
.lp-bubble-mid { background: rgba(0,200,140,0.08); border-color: rgba(0,200,140,0.2); color: #00c88c; }
.lp-bubble-top { background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.25); color: #4ADE80; }

.lp-price-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: #020d06;
}
.lp-dot-mid { border-color: #00c88c; box-shadow: 0 0 10px rgba(0,200,140,0.4); }
.lp-dot-top { border-color: #4ADE80; box-shadow: 0 0 15px rgba(74,222,128,0.5); }

.lp-price-line {
    width: 80px;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0, rgba(255,255,255,0.15) 8px, transparent 8px, transparent 16px);
    align-self: flex-end;
    margin-bottom: 28px;
}

.lp-price-name {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.lp-price-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   PROCESS HORIZONTAL GRID
   ============================================================ */
.lp-process-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-process-card {
    flex: 1;
    background: rgba(10, 26, 18, 0.5);
    border: 1px solid rgba(0, 200, 140, 0.15);
    border-radius: 1.25rem;
    padding: 2.25rem 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-process-card:hover {
    border-color: rgba(0, 200, 140, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 200, 140, 0.05);
    background: rgba(12, 30, 21, 0.65);
}

.lp-process-step-num {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--water-primary, #00c88c);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.lp-process-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 200, 140, 0.1);
    border: 1px solid rgba(0, 200, 140, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lp-process-icon {
    width: 26px;
    height: 26px;
    color: var(--water-primary, #00c88c);
}

.lp-process-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.lp-process-card p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.lp-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 200, 140, 0.35);
    flex-shrink: 0;
}

.lp-arrow-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .lp-process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .lp-process-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .lp-process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.lp-impact-section {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 100, 60, 0.12) 0%, rgba(0, 50, 80, 0.1) 100%);
    border-top: 1px solid rgba(0, 200, 140, 0.1);
    border-bottom: 1px solid rgba(0, 200, 140, 0.1);
    overflow: hidden;
}

.lp-impact-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.lp-impact-waves svg {
    width: 100%;
    height: 100px;
    display: block;
}

.lp-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .lp-impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .lp-impact-grid { grid-template-columns: 1fr; }
}

.lp-impact-card {
    text-align: center;
    padding: 1.75rem 1.25rem 1.5rem;
    background: rgba(10, 26, 18, 0.45);
    border: 1px solid rgba(0, 200, 140, 0.14);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-impact-card:hover {
    border-color: rgba(0, 200, 140, 0.22);
    background: rgba(12, 28, 20, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lp-impact-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 200, 140, 0.08);
    border: 1px solid rgba(0, 200, 140, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.lp-impact-icon {
    width: 22px;
    height: 22px;
    color: var(--water-primary, #00c88c);
}

.lp-impact-num-group {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.lp-impact-num {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-display);
    line-height: 1;
}

.lp-impact-unit {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--water-primary, #00c88c);
}

.lp-impact-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.lp-founder-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 2rem;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s;
}

.lp-founder-card:hover {
    border-color: rgba(0, 200, 140, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
    .lp-founder-card { flex-direction: column; text-align: center; gap: 2rem; }
}

.lp-founder-img-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.lp-founder-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 200, 140, 0.3);
    animation: ringPulse 4s ease-in-out infinite;
}

.lp-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(0,200,140,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.lp-founder-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.lp-founder-role {
    font-size: 0.85rem;
    color: var(--water-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.lp-founder-bio {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.lp-founder-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.lp-founder-email:hover { color: var(--water-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
    position: relative;
    z-index: 2;
    background: var(--bg-deep);
    border-top: 1px solid rgba(0, 200, 140, 0.08);
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.lp-footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.lp-footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
    .lp-footer-grid { grid-template-columns: 1fr; }
}

.lp-footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    max-width: 260px;
}

.lp-footer-socials {
    display: flex;
    gap: 0.75rem;
}

.lp-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.lp-social-btn:hover {
    background: rgba(0, 200, 140, 0.1);
    border-color: rgba(0, 200, 140, 0.3);
    color: var(--water-primary);
}

.lp-footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.lp-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.lp-footer-col a:hover { color: var(--water-primary); }

.lp-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.3);
}
