/* ============================================
   ABOUT US PAGE — GRROWX
   Design System: Matches Homepage, Pricing, Free Plan
   ============================================ */

:root {
    --primary-blue: #3BB4D9;
    --primary-sky: #4CC9E8;
    --primary-dark: #1B1B2F;
    --accent-red: #E84855;
    --accent-green: #10B981;
    --cream-bg: #F8FAFB;
    --light-blue: #E8F7FB;
    --text-dark: #1B1B2F;
    --text-gray: #5A6B7A;
    --white: #FFFFFF;
    --orange: #FF8C42;
    --yellow-highlight: #FFE066;
    --border-color: #E2E8F0;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.35s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    background: rgba(59, 180, 217, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(59, 180, 217, 0.15);
}

.section-eyebrow.light {
    color: var(--primary-sky);
    background: rgba(76, 201, 232, 0.1);
    border-color: rgba(76, 201, 232, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    position: relative;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 650px;
}

.text-red { color: var(--accent-red); }
.text-blue { color: var(--primary-sky); }
.text-white { color: #fff; }
.text-gray-light { color: #94A3B8; }

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
}

.title-underline path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.visible .title-underline path,
.section-title .title-underline path {
    animation: drawUnderline 1.5s ease forwards 0.5s;
}

@keyframes drawUnderline {
    to { stroke-dashoffset: 0; }
}

.handwritten-note {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.arrow-down { display: inline-block; animation: bounceArrow 1.5s infinite; }
@keyframes bounceArrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(180deg, #4CC9E8 0%, #6DD5ED 40%, #B8E6F2 70%, var(--cream-bg) 100%);
    position: relative;
    padding: 160px 2rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatShape 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.shape-1 { width: 500px; height: 500px; background: #ffffff; top: -15%; left: -5%; opacity: 0.25; }
.shape-2 { width: 400px; height: 400px; background: #8AD8EF; bottom: -5%; right: -5%; animation-delay: -5s; }
.shape-3 { width: 250px; height: 250px; background: #ffffff; top: 45%; right: 25%; opacity: 0.15; animation-delay: -10s; }

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.08); }
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    color: var(--text-dark);
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 8px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.dynamic-wrapper { display: inline-block; position: relative; }

.dynamic-text {
    background: linear-gradient(135deg, #E84855, #FF6B6B);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent-red);
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-subtitle strong { color: var(--text-dark); font-weight: 700; }

/* Hero Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.hero-stat { text-align: center; }

.hero-stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-dark), transparent);
    animation: scrollPulse 2s infinite;
}

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

.hero-scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.5;
}

/* ============================================
   OUR STORY SECTION (WHITE)
   ============================================ */
.story-section {
    padding: 7rem 2rem;
    background: var(--white);
    position: relative;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-left .section-title { margin-bottom: 2.5rem; }

.story-timeline-mini {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--border-color);
}

.mini-node {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1.25rem;
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.mini-dot {
    position: absolute;
    left: -9.5px;
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--border-color);
}

.dot-red { background: var(--accent-red); box-shadow: 0 0 0 2px var(--accent-red); }
.dot-blue { background: var(--primary-blue); box-shadow: 0 0 0 2px var(--primary-blue); }
.dot-green { background: var(--accent-green); box-shadow: 0 0 0 2px var(--accent-green); }

.story-card {
    background: var(--cream-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.story-text strong { color: var(--text-dark); }

.story-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.signature-line { display: flex; flex-direction: column; gap: 0.25rem; }
.sig-name { font-family: 'Caveat', cursive; font-size: 1.8rem; color: var(--text-dark); }
.sig-role { font-size: 0.85rem; color: var(--text-gray); font-weight: 600; }

/* ============================================
   MISSION SECTION (DARK)
   ============================================ */
.mission-section {
    padding: 7rem 2rem;
    background: #0B0B15;
    position: relative;
    overflow: hidden;
}

.mission-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 180, 217, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 180, 217, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.mission-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(76, 201, 232, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mission-section .container { position: relative; z-index: 2; }

.mission-header { text-align: center; margin-bottom: 4rem; }
.mission-header .section-title { margin-bottom: 0; }

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 201, 232, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mission-card.featured {
    border-color: var(--primary-sky);
    background: rgba(59, 180, 217, 0.05);
}

.mc-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 180, 217, 0.08), transparent 60%);
    animation: rotateGlow 25s linear infinite;
    z-index: 0;
}

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

.mc-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(59, 180, 217, 0.1);
    border: 1px solid rgba(59, 180, 217, 0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mc-icon-wrap svg { width: 26px; height: 26px; stroke: var(--primary-sky); }

.mc-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-sky);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.mission-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.mission-card p {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.mc-stat {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.mc-stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
}

.mc-stat-label {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   VALUES SECTION (WHITE)
   ============================================ */
.values-section {
    padding: 7rem 2rem;
    background: var(--cream-bg);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header .section-desc {
    margin: 0 auto;
}

.values-header .section-title {
    display: inline-block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.value-card:hover .vc-number { color: var(--primary-sky); }

.vc-number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: color 0.4s;
    pointer-events: none;
}

.vc-icon-box {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}

.vc-icon-box svg { width: 24px; height: 24px; }

.icon-red { background: rgba(232, 72, 85, 0.08); border: 1px solid rgba(232, 72, 85, 0.15); }
.icon-red svg { stroke: var(--accent-red); }
.icon-blue { background: rgba(59, 180, 217, 0.08); border: 1px solid rgba(59, 180, 217, 0.15); }
.icon-blue svg { stroke: var(--primary-blue); }
.icon-green { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.15); }
.icon-green svg { stroke: var(--accent-green); }

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.7;
}


/* ============================================
   PHASE SECTION — PINNED STACKING CARDS (WHITE)
   ============================================ */

/* Outer wrapper creates scroll height for pinning */
.phase-outer {
    position: relative;
}

/* The visible section pins to viewport */
.phase-section {
    position: sticky;
    top: 0;
    height: 100vh;
    background: var(--white);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    z-index: 1;
}

.phase-section .container {
    width: 100%;
    max-width: 1200px;
}

/* ---- HEADER ---- */
.phase-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.phase-header .section-title { display: inline-block; }
.phase-header .section-desc { margin: 0 auto; margin-bottom: 2rem; }

/* ---- PROGRESS BAR (below heading) ---- */
.phase-progress {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.pp-track {
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--border-color);
    transform: translateY(-50%);
    border-radius: 3px;
    overflow: hidden;
}

.pp-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-red), var(--accent-green));
    border-radius: 3px;
    transition: width .45s cubic-bezier(.16,1,.3,1);
}

.pp-dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pp-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s cubic-bezier(.16,1,.3,1);
}

.pp-dot span {
    font-size: .68rem;
    font-weight: 800;
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all .4s ease;
}

.pp-dot.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(59,180,217,.15), 0 4px 15px rgba(59,180,217,.2);
    transform: scale(1.1);
}

.pp-dot.active span { color: #fff; }

.pp-dot.done {
    border-color: var(--primary-blue);
    background: rgba(59,180,217,.08);
}

.pp-dot.done span { color: var(--primary-blue); }

/* ---- CARD DECK ---- */
.phase-deck {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    height: 320px; /* fixed visible height for stacking */
}

/* ---- INDIVIDUAL CARD ---- */
.phase-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cream-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    transform: translateY(110%);
    transition: transform .65s cubic-bezier(.16,1,.3,1),
                box-shadow .4s ease,
                opacity .4s ease;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

/* Card is current (visible, at top) */
.phase-card.pc-active {
    transform: translateY(0);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border-color: rgba(59,180,217,.15);
}

/* Card has been passed (pushed down slightly, scaled, dimmed) */
.phase-card.pc-passed {
    transform: translateY(0) scale(0.96);
    z-index: 5;
    opacity: .5;
    filter: blur(1px);
}

/* Card waiting (below, not yet visible) */
.phase-card.pc-waiting {
    transform: translateY(110%);
    z-index: 1;
}

/* ---- BADGE ---- */
.pc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
}

.pc-badge-time {
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--text-gray);
    padding: .25rem .65rem;
    background: rgba(59,180,217,.06);
    border: 1px solid rgba(59,180,217,.1);
    border-radius: 6px;
    font-size: .65rem;
}

.pc-badge-green { color: var(--accent-green); }
.pc-badge-green .pc-badge-time {
    background: rgba(16,185,129,.06);
    border-color: rgba(16,185,129,.1);
}

/* ---- BODY LAYOUT ---- */
.pc-body {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
}

.pc-num {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(59,180,217,.18);
    letter-spacing: -3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all .5s ease;
    text-align: center;
    padding-top: .25rem;
}

.pc-active .pc-num {
    -webkit-text-stroke-color: rgba(59,180,217,.45);
}

.pc-num-green { -webkit-text-stroke-color: rgba(16,185,129,.18) !important; }
.pc-active .pc-num-green { -webkit-text-stroke-color: rgba(16,185,129,.45) !important; }

.pc-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: .5rem;
    letter-spacing: -.3px;
}

.pc-content p {
    font-size: .92rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* ---- STATS ROW ---- */
.pc-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.pc-stat { display: flex; flex-direction: column; gap: .15rem; }

.pc-stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -.3px;
}

.pc-stat-lbl {
    font-size: .7rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ---- FINAL CARD ---- */
.pc-final {
    border-color: rgba(16,185,129,.15);
    background: linear-gradient(135deg, #F0FDF9, var(--cream-bg));
}

.pc-final.pc-active {
    border-color: rgba(16,185,129,.25);
    box-shadow: 0 20px 60px rgba(16,185,129,.08);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .phase-section {
        padding-top: 80px;
    }

    .phase-header { margin-bottom: 1.5rem; }
    .phase-header .section-desc { font-size: .95rem; margin-bottom: 1.5rem; }
    .phase-progress { max-width: 320px; }
    .pp-dot { width: 30px; height: 30px; }
    .pp-dot span { font-size: .6rem; }

    .phase-deck { height: 360px; }

    .phase-card { padding: 1.5rem; border-radius: 16px; }

    .pc-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pc-num {
        font-size: 2.8rem;
        text-align: left;
    }

    .pc-content h3 { font-size: 1.1rem; }
    .pc-content p { font-size: .85rem; }
    .pc-stats { flex-direction: column; gap: .75rem; }
}

@media (max-width: 480px) {
    .phase-section { padding-top: 70px; }
    .phase-deck { height: 400px; }
    .phase-card { padding: 1.25rem; }
    .pc-num { font-size: 2.2rem; }
}

/* ============================================
   TECH SECTION (DARK)
   ============================================ */
.tech-section {
    padding: 7rem 2rem;
    background: #0B0B15;
    position: relative;
    overflow: hidden;
}

.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 180, 217, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 180, 217, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.tech-section .container { position: relative; z-index: 2; }

.tech-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-header .section-desc { margin: 0 auto; }

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: rgba(76, 201, 232, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-cat-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #CBD5E1;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.tech-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, var(--cream-bg) 0%, #E8F7FB 50%, var(--cream-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 180, 217, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-glow-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59, 180, 217, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.brand-highlight-text {
    position: relative;
    display: inline;
    color: var(--accent-red);
    font-weight: 800;
}

.cta-underline {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 12px;
    z-index: 1;
    pointer-events: none;
}

.cta-underline path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawUnderline 1.5s ease forwards 0.5s;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-btn-secondary {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.cta-btn-secondary:hover {
    color: var(--accent-red);
}

.cta-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* ============================================
   FOOTER - DARK
   ============================================ */
/* ============================================
   ULTRA DARK PREMIUM FOOTER
   ============================================ */
.footer-ultra-dark {
    background-color: #000000;
    position: relative;
    padding: 6rem 2rem 2rem;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Background Grid Pattern */
.footer-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-ultra-dark .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* MAIN LAYOUT: 2 Columns */
.footer-main-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Brand narrower, Form wider */
    gap: 6rem;
    margin-bottom: 5rem;
    align-items: start;
}

/* LEFT COL: Brand Info */
.f-brand-header { margin-bottom: 3rem; }

.f-logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

/* Footer logo image */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 160px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.dot-accent { color: #E84855; } /* Red Accent */

.f-tagline {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    max-width: 300px;
}

.f-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-block { display: flex; flex-direction: column; gap: 5px; }

.c-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    letter-spacing: 1px;
}

.c-value {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s;
}

.c-value:hover { color: #3BB4D9; }

.f-social-row { display: flex; gap: 10px; }

.social-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

/* RIGHT COL: Form Card */
.form-card-glass {
    background: #0A0A0C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    /* Subtle inner glow */
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

/* Top Glow Line on Form */
.form-card-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3BB4D9, transparent);
    opacity: 0.5;
}

.form-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-header-row h3 { font-size: 1.5rem; font-weight: 700; }

.live-indicator {
    font-size: 0.8rem;
    color: #27C93F;
    background: rgba(39, 201, 63, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.blink-dot {
    width: 6px; height: 6px; background: #27C93F; border-radius: 50%;
    box-shadow: 0 0 8px #27C93F;
    animation: blinkLive 2s infinite;
}

@keyframes blinkLive { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Form Fields */
.smart-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.input-wrap { position: relative; }

/* Floating Labels Styling */
.input-wrap input,
.input-wrap textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.input-wrap textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 180px;
    line-height: 1.6;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    outline: none;
    border-color: #3BB4D9;
}

.input-wrap label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Float label when focused or has content */
.input-wrap input:focus ~ label,
.input-wrap input:not(:placeholder-shown) ~ label,
.input-wrap textarea:focus ~ label,
.input-wrap textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: #3BB4D9;
}

/* Phone Group */
.phone-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s;
}

.phone-group:focus-within {
    border-color: #3BB4D9;
}

.country-select-wrapper {
    position: relative;
    width: 90px;
    flex-shrink: 0;
}

.country-select {
    width: 100%;
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    padding: 12px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 3l3 3 3-3' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 16px;
}

.country-select option { background: #111; color: white; }

.country-select:focus { outline: none; }

.phone-field {
    border-bottom: none !important;
    padding-left: 15px !important;
    flex: 1;
}

/* Select Box */
.minimal-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: #888;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
}

.minimal-select:focus {
    outline: none;
    border-color: #3BB4D9;
    color: white;
}

.minimal-select option { background: #111; color: white; padding: 8px; }

/* Submit Button */
.f-submit-btn {
    margin-top: 1rem;
    background: white;
    color: black;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.f-submit-btn:hover {
    background: #3BB4D9;
    color: white;
}

.f-submit-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.f-submit-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.f-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.f-submit-btn.sending {
    background: #333;
    color: #aaa;
}

/* Form Status Messages */
.form-status {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.form-status.error {
    background: rgba(232, 72, 85, 0.12);
    color: #E84855;
    border: 1px solid rgba(232, 72, 85, 0.25);
}

/* BOTTOM BAR */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.f-links-group a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 2rem;
    transition: color 0.3s;
}

.f-links-group a:hover { color: white; }

.copyright { color: #555; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
    .footer-main-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
    .f-links-group a { margin: 0 10px; }
}
@media (max-width: 600px) {
    .form-row-2 { grid-template-columns: 1fr; }
    .form-card-glass { padding: 1.5rem; }
    .footer-ultra-dark { padding: 4rem 1.5rem 2rem; }
    .dynamic-headline { 
        font-size: 1.3rem; 
        white-space: normal;
        height: auto;
    }
    .form-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ============================================
   FINAL FOOTER STYLES (Typewriter & Nav Grid)
   ============================================ */

/* Typewriter Container */
.dynamic-headline {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 40px; /* Force height so it doesn't collapse */
}

/* The Typing Text - Bright Blue */
.typewriter-text {
    color: #3BB4D9 !important; /* Force Blue Color */
    font-weight: 800;
    margin: 0;
    padding: 0;
    min-width: 10px;
}

/* The Cursor - Bright Red */
.cursor {
    display: inline-block;
    width: 3px;
    height: 28px;
    background-color: #E84855;
    margin-left: 5px;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor { 
    0%, 100% { opacity: 1; } 
    50% { opacity: 0; } 
}

/* --- New Navigation Grid --- */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
}

.nav-col h5 {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-col a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.nav-col a:hover {
    color: #3BB4D9;
    transform: translateX(5px);
}

/* --- Mobile Responsiveness for Nav --- */
@media (max-width: 768px) {
    .footer-nav-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-stats { padding: 1.5rem; }
    .hero-stat-value { font-size: 1.8rem; }
    
}

/* ============================================
   RESPONSIVE (MOBILE FIXES)
   ============================================ */
@media (max-width: 768px) {
    
    /* --- HEADER FIX --- */
    header { 
        padding: 0.8rem 1.25rem; 
    }
    
    .logo { 
        font-size: 1.25rem; 
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Fix the Free Plan Button */
    .cta-btn {
        padding: 0.6rem 1rem;    /* Smaller padding */
        font-size: 0.75rem;      /* Smaller text */
        box-shadow: 3px 3px 0 #E84855; /* Smaller shadow */
    }
    
    .cta-btn:hover {
        transform: translate(-1px, -1px);
        box-shadow: 4px 4px 0 #E84855;
    }

    /* --- HERO FIX --- */
    .hero-section { 
        padding: 110px 1.5rem 4rem; 
    }
    
    .hero-title { 
        font-size: 2rem; 
    }
    
    /* --- STATS SECTION UPGRADE (2x2 Grid + Glass Effect) --- */
    .hero-stats {
        /* Layout: 2 Columns side-by-side */
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 1.5rem 1rem;
        padding: 1.5rem;
        
        /* Visuals: Glassmorphism instead of plain white */
        background: rgba(255, 255, 255, 0.65); /* Semi-transparent */
        backdrop-filter: blur(12px);           /* Blur effect behind */
        -webkit-backdrop-filter: blur(12px);   /* Safari support */
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 10px 30px rgba(59, 180, 217, 0.15); /* Soft Blue Glow */
        border-radius: 16px;
        margin-top: 2rem;
    }
    
    /* Hide the vertical divider lines on mobile */
    .hero-stat-divider { 
        display: none; 
    }
    
    .hero-stat {
        text-align: center;
        /* Add subtle border to separate items in grid */
        position: relative;
    }
    
    .hero-stat-value {
        font-size: 1.75rem;
        /* Gradient Text for "Pop" effect */
        background: linear-gradient(135deg, var(--text-dark), var(--primary-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.2rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
        opacity: 0.8;
    }

    /* --- OTHER MOBILE ADJUSTMENTS --- */
    .story-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .mission-cards { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .tech-categories { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    
    
    
    
    
    .cta-actions { flex-direction: column; }
    .cta-trust-row { flex-direction: column; gap: 0.75rem; }
    
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }

    .hero-scroll-indicator { display: none; }
    .section-title { font-size: 2rem; }
}

.cta-btn { 
    display: inline-block; 
    text-decoration: none; 
    padding: 0.85rem 1.75rem; 
    background: #1B1B2F; 
    color: white; 
    font-weight: 800; 
    font-size: 0.85rem; 
    border-radius: 0; 
    box-shadow: 5px 5px 0 #E84855;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    position: relative;
}

.cta-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #E84855;
}

.mobile-cta:hover {
    transform: translateX(-50%) !important;
    box-shadow: 5px 5px 0 #E84855;
}

.mobile-cta { display: none; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s ease; }