/* ==========================================================================
   Above The Social — Elevated Minimalist Design
   Clean, modern, professional
   ========================================================================== */

:root {
    /* Colors - Refined palette */
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --accent: #c8ff00;
    --accent-dark: #a3d900;
    --accent-glow: rgba(200, 255, 0, 0.15);
    
    /* Typography - Tighter tracking for modern feel */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Animation - Buttery smooth */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.4s;
    --duration-slow: 0.6s;
    
    /* Spacing - Better rhythm */
    --section-pad: clamp(100px, 15vw, 180px);
    --container-pad: clamp(24px, 5vw, 80px);
    --gap-xs: 8px;
    --gap-sm: 16px;
    --gap-md: 24px;
    --gap-lg: 48px;
    --gap-xl: 80px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--gray-600); background: var(--white); overflow-x: hidden; letter-spacing: -0.01em; }
body.nav-open { overflow: hidden; }
::selection { background: var(--accent); color: var(--black); }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

/* ==========================================================================
   Utility Classes (Reusable)
   ========================================================================== */

/* Layout */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 var(--container-pad); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; }
.grid { display: grid; }

/* Spacing - Use for consistent padding */
.section { padding: var(--section-pad) 0; }
.section-intro { margin-bottom: 64px; }

/* Text */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-accent { color: var(--accent-dark); }
.text-muted { color: var(--gray-500); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

/* Typography */
h1, h2, h3, h4 { color: var(--black); font-weight: 600; line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-size: clamp(3rem, 10vw, 6.5rem); font-weight: 700; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.02em; }
h4 { font-size: 1.125rem; letter-spacing: -0.02em; }
p { color: var(--gray-500); line-height: 1.75; }
.highlight { color: var(--accent-dark); }

/* Backgrounds */
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--black); }

/* Animation base - applied once, animated via JS */
.animate-up { opacity: 0; transform: translateY(30px); }

/* ==========================================================================
   Components
   ========================================================================== */

/* Section Number - reused across sections */
.section-number {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.section-title { margin-bottom: 20px; }
.section-desc { font-size: 1.125rem; max-width: 520px; line-height: 1.75; }

/* ==========================================================================
   Buttons - Single base, modifiers stack
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn svg { width: 16px; height: 16px; transition: transform var(--duration) var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

/* Variants */
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { box-shadow: 0 24px 48px -12px var(--accent-glow); transform: translateY(-2px); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); }

/* Modifiers */
.btn-lg { padding: 20px 40px; font-size: 1rem; }
.btn-sm { padding: 12px 24px; font-size: 0.8125rem; } 
.btn-full { width: 100%; justify-content: center; }

/* ==========================================================================
   Cards - Reusable card pattern
   ========================================================================== */

.card {
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    transition: all var(--duration) var(--ease);
}

.card:hover { border-color: var(--accent); }
.card-dark { border-color: var(--gray-800); background: transparent; }
.card-dark:hover { background: var(--gray-900); }

/* ==========================================================================
   Tags - Reusable tag/pill pattern
   ========================================================================== */

.tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    padding: 8px 16px;
    background: var(--gray-50);
    border-radius: 20px;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }

/* ==========================================================================
   Custom Cursor
   ========================================================================== */

.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cursor { width: 6px; height: 6px; background: var(--accent); transform: translate(-50%, -50%); }
.cursor-follower { width: 36px; height: 36px; border: 1px solid var(--gray-300); transform: translate(-50%, -50%); transition: transform 0.25s var(--ease-smooth), border-color 0.3s, background 0.3s, width 0.3s, height 0.3s; }
body:hover .cursor, body:hover .cursor-follower { opacity: 1; }
.cursor.hover { transform: translate(-50%, -50%) scale(0); }
.cursor-follower.hover { transform: translate(-50%, -50%) scale(1.4); border-color: var(--accent); background: var(--accent-glow); }

@media (max-width: 1024px) { .cursor, .cursor-follower { display: none; } }

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.header-hidden { transform: translateY(-100%); }

.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { z-index: 1001; display: flex; align-items: center; transition: opacity 0.3s var(--ease); }
.logo-img { height: 120px; width: auto; object-fit: contain; transition: transform 0.3s var(--ease); }
@media (max-width: 768px) { .logo-img { height: 80px; } }

/* Hide header when nav is open, show only close button */
body.nav-open .header { background: transparent; }
body.nav-open .header.scrolled { background: transparent; backdrop-filter: none; }
body.nav-open .logo { opacity: 0; pointer-events: none; }
body.nav-open .menu-btn-text { display: none; }
body.nav-open .menu-btn { background: transparent; padding: 12px; }

/* Menu Button */
.menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--black);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s var(--ease);
}
.menu-btn-lines { display: flex; flex-direction: column; gap: 5px; width: 18px; }
.menu-btn-lines span { display: block; height: 1.5px; background: var(--white); transition: all var(--duration) var(--ease); transform-origin: center; }
.menu-btn-lines span:first-child { width: 100%; }
.menu-btn-lines span:last-child { width: 60%; }
.menu-btn.active .menu-btn-lines span:first-child { transform: rotate(45deg) translateY(3.25px); }
.menu-btn.active .menu-btn-lines span:last-child { width: 100%; transform: rotate(-45deg) translateY(-3.25px); }
.menu-btn-text { font-family: var(--font); font-size: 0.8125rem; font-weight: 500; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; }

/* ==========================================================================
   Full Page Navigation
   ========================================================================== */

.fullpage-nav { position: fixed; inset: 0; z-index: 999; pointer-events: none; }
.fullpage-nav.active { pointer-events: auto; }
.nav-bg { position: absolute; inset: 0; background: var(--black); transform: translateY(-100%); transition: transform 0.8s var(--ease); }
.fullpage-nav.active .nav-bg { transform: translateY(0); }

.nav-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 120px var(--container-pad) 48px; opacity: 0; transition: opacity 0.4s 0.4s; }
.fullpage-nav.active .nav-content { opacity: 1; }

.nav-links-main { display: flex; flex-direction: column; gap: 1px; }

.nav-link { display: flex; align-items: baseline; gap: 24px; padding: 16px 0; opacity: 0; transform: translateY(40px); transition: opacity 0.6s, transform 0.6s var(--ease); }
.fullpage-nav.active .nav-link { opacity: 1; transform: translateY(0); }
.fullpage-nav.active .nav-link:nth-child(1) { transition-delay: 0.3s; }
.fullpage-nav.active .nav-link:nth-child(2) { transition-delay: 0.35s; }
.fullpage-nav.active .nav-link:nth-child(3) { transition-delay: 0.4s; }
.fullpage-nav.active .nav-link:nth-child(4) { transition-delay: 0.45s; }
.fullpage-nav.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
.fullpage-nav.active .nav-link:nth-child(6) { transition-delay: 0.55s; }

.nav-link-number { font-size: 0.6875rem; font-weight: 600; color: var(--gray-600); letter-spacing: 0.1em; min-width: 32px; }
.nav-link-text { font-size: clamp(2.25rem, 8vw, 5.5rem); font-weight: 600; color: var(--white); letter-spacing: -0.04em; line-height: 1.05; transition: color 0.3s ease, transform 0.4s var(--ease); }
.nav-link:hover .nav-link-text { color: var(--accent); transform: translateX(12px); }

.nav-footer { display: flex; flex-direction: column; gap: 32px; margin-top: auto; padding-top: 48px; border-top: 1px solid var(--gray-800); opacity: 0; transform: translateY(20px); transition: opacity 0.6s 0.6s, transform 0.6s 0.6s var(--ease); }
.fullpage-nav.active .nav-footer { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) { .nav-footer { flex-direction: row; justify-content: space-between; align-items: flex-end; } }

.nav-info span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 8px; }
.nav-info a { font-size: 1.125rem; color: var(--white); transition: color 0.3s; }
.nav-info a:hover { color: var(--accent); }
.nav-social { display: flex; gap: 24px; }
.nav-social a { font-size: 0.875rem; color: var(--gray-400); transition: color 0.3s; }
.nav-social a:hover { color: var(--accent); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { min-height: 100vh; display: flex; align-items: center; padding: 160px 0 100px; position: relative; }
.hero-content { width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; opacity: 0; transform: translateY(20px); }
.eyebrow-line { width: 48px; height: 1px; background: var(--accent); }
.eyebrow-text { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray-400); }
.hero-title { margin-bottom: 56px; }
.title-line { display: block; overflow: hidden; }
.highlight-line { color: var(--accent-dark); }
.hero-bottom { display: flex; flex-direction: column; gap: 48px; max-width: 600px; }
.hero-desc { font-size: 1.125rem; max-width: 480px; opacity: 0; transform: translateY(30px); line-height: 1.8; }
.hero-cta { opacity: 0; transform: translateY(30px); }

@media (min-width: 1024px) {
    .hero-bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: 100%; }
}

/* Scroll Indicator */
.hero-scroll { position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%); opacity: 0; }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.scroll-indicator span { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gray-400); font-weight: 500; }
.scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 0.8; } 50% { transform: scaleY(0.4); opacity: 0.2; } }

/* ==========================================================================
   Marquee — Premium Visual Design
   ========================================================================== */

.marquee-wrapper {
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 3;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--black) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: fit-content;
    padding: 24px 0;
}

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: marquee-glide 35s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.marquee-item {
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.2em;
    white-space: nowrap;
    padding: 0 clamp(32px, 6vw, 56px);
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.marquee-separator {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.6;
    box-shadow: 0 0 12px var(--accent-glow);
}

@keyframes marquee-glide {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   Sections - Using shared patterns
   ========================================================================== */

/* Value Prop */
.value-prop { 
    padding: 120px 0; 
    background: var(--white);
    border: none;
    position: relative;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gray-200), transparent);
}

.value-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 768px) { .value-grid { grid-template-columns: repeat(3, 1fr); gap: 64px; } }
.value-item { text-align: center; }
.value-icon { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.125rem; 
    color: var(--accent-dark); 
    margin-bottom: 28px;
    background: var(--gray-50);
    border-radius: 12px;
}
.value-item h3 { 
    margin-bottom: 16px; 
    color: var(--black); 
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.value-item p { 
    font-size: 0.9375rem; 
    color: var(--gray-500); 
    line-height: 1.75;
    max-width: 300px;
    margin: 0 auto;
}

/* Statement */
.statement { padding: var(--section-pad) 0; background: var(--gray-50); }
.statement-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.statement-text { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 500; color: var(--black); line-height: 1.35; letter-spacing: -0.03em; }
.statement-text .word { display: inline-block; opacity: 0.15; transition: opacity 0.4s var(--ease-smooth); }
.statement-text .word.highlight { color: var(--accent-dark); }
.statement-text .word.active { opacity: 1; }

/* Services */
.services { padding: var(--section-pad) 0; }
.services-list { display: flex; flex-direction: column; }
.service-row { padding: 56px 0; border-bottom: 1px solid var(--gray-100); display: grid; grid-template-columns: 1fr; gap: 24px; transition: background 0.4s ease; }
.service-row:first-child { border-top: 1px solid var(--gray-100); }
@media (min-width: 1024px) { .service-row { grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 56px; padding: 64px 0; } }
.service-header { display: flex; align-items: baseline; gap: 16px; }
.service-num { font-size: 0.6875rem; font-weight: 700; color: var(--accent-dark); letter-spacing: 0.05em; }
.service-row h3 { font-size: 1.5rem; transition: color 0.3s ease; letter-spacing: -0.02em; }
.service-row:hover h3 { color: var(--accent-dark); }
.service-desc { font-size: 1rem; line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.service-tags li { font-size: 0.6875rem; font-weight: 600; color: var(--gray-500); padding: 10px 18px; background: var(--gray-50); border-radius: 100px; letter-spacing: 0.02em; transition: all 0.3s ease; }
.service-row:hover .service-tags li { background: var(--gray-100); }

/* Approach */
.approach { padding: var(--section-pad) 0; background: var(--black); }
.approach .section-number { color: var(--accent); }
.approach .section-title { color: var(--white); }
.approach .section-desc-light { color: var(--gray-400); }

/* Approach Layout */
.approach-layout { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 1024px) { .approach-layout { grid-template-columns: 1fr 1.5fr; gap: 120px; align-items: start; } }
.approach-header { position: relative; }
@media (min-width: 1024px) { .approach-header { position: sticky; top: 120px; } }

/* Process Timeline */
.approach-process { position: relative; padding-left: 0; }
@media (min-width: 768px) { .approach-process { padding-left: 80px; } }

.process-line { display: none; position: absolute; left: 23px; top: 24px; bottom: 24px; width: 1px; background: linear-gradient(to bottom, var(--accent), var(--gray-800) 50%, var(--accent)); opacity: 0.3; }
@media (min-width: 768px) { .process-line { display: block; } }

.process-step { position: relative; padding: 32px 0; border-bottom: 1px solid var(--gray-800); }
.process-step:last-child { border-bottom: none; }
@media (min-width: 768px) { .process-step { padding: 40px 0; } }

.step-marker { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
@media (min-width: 768px) { .step-marker { position: absolute; left: -80px; top: 40px; flex-direction: column; gap: 12px; margin-bottom: 0; } }

.step-num { font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; }

.step-dot { display: none; width: 12px; height: 12px; background: var(--black); border: 2px solid var(--accent); border-radius: 50%; transition: all 0.3s ease; }
@media (min-width: 768px) { .step-dot { display: block; } }
.process-step:hover .step-dot { background: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }

.step-content h3 { color: var(--white); font-size: 1.375rem; margin-bottom: 14px; transition: color 0.3s ease; letter-spacing: -0.02em; }
.process-step:hover .step-content h3 { color: var(--accent); }
.step-content p { font-size: 1rem; color: var(--gray-400); line-height: 1.8; max-width: 500px; }

/* Why Different */
/* Why Different - Minimalist Design */
.why-different { 
    padding: var(--section-pad) 0; 
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.why-header { 
    text-align: center; 
    margin-bottom: 80px;
    position: relative;
}

.why-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-dark);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 30px;
}

.why-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

.why-title .highlight {
    color: var(--accent-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.why-card {
    position: relative;
}

.why-card-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: 1px solid transparent;
}
 

.why-num {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 24px;
    font-family: var(--font);
    letter-spacing: 0.05em;
}

.why-card-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.why-card-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
 

/* About - Minimalist Design */
.about { 
    padding: var(--section-pad) 0; 
    background: var(--white);
    position: relative;
}

.about-header { 
    text-align: center; 
    margin-bottom: 80px;
}

.about-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-dark);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 30px;
}

.about-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

.about-title .highlight {
    color: var(--accent-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
        align-items: start;
    }
}
 
.about-lead {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 32px;
}

.about-content {
    margin-bottom: 40px;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

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

.about-highlight-box {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--accent-dark);
    flex-shrink: 0;
}

.about-highlight-box p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.about-highlight-box strong {
    color: var(--black);
}

 

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.value-block {
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    transition: padding-left 0.3s var(--ease);
}

.value-block:first-child {
    padding-top: 0;
}

.value-block:last-child {
    border-bottom: none;
}
 
.value-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.value-block h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.value-block p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}

.founder-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 16px; 
    padding: 16px 24px 16px 16px; 
    background: var(--gray-50); 
    border-radius: 60px; 
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
 

.founder-avatar { 
    width: 48px; 
    height: 48px; 
    background: var(--accent); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1rem; 
    font-weight: 700; 
    color: var(--black); 
}

.founder-info { 
    display: flex; 
    flex-direction: column; 
}

.founder-name { 
    font-size: 0.9375rem; 
    font-weight: 600; 
    color: var(--black); 
}

.founder-role { 
    font-size: 0.8125rem; 
    color: var(--gray-500); 
}

/* CTA Section */
.cta { 
    padding: var(--section-pad) 0; 
    background: var(--gray-50);
}

.cta-content { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 56px; 
}

@media (min-width: 1024px) { 
    .cta-content { 
        flex-direction: row; 
        align-items: center; 
        justify-content: space-between; 
    } 
}

.cta-text h2 { 
    margin-bottom: 20px; 
    color: var(--black);
    letter-spacing: -0.04em;
}

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

.cta-text p { 
    font-size: 1.125rem; 
    max-width: 420px; 
    color: var(--gray-500);
    line-height: 1.75;
}

.cta .btn-primary {
    background: var(--accent);
    color: var(--black);
    padding: 20px 40px;
    font-size: 0.9375rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(200, 255, 0, 0.25);
}

.cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -8px rgba(200, 255, 0, 0.4);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { padding: 100px 0 48px; background: var(--black); }
.footer-main { display: grid; grid-template-columns: 1fr; gap: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--gray-800); }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 1fr 2fr; } }
.footer-brand .logo { font-size: 1.5rem; color: var(--white); display: inline-block; margin-bottom: 20px; font-weight: 700; letter-spacing: -0.03em; }
.footer-brand p { color: var(--gray-500); font-size: 0.9375rem; max-width: 300px; line-height: 1.7; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 { font-size: 0.6875rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 24px; }
.footer-col a { display: block; font-size: 0.9375rem; color: var(--gray-400); padding: 8px 0; transition: color 0.2s ease, transform 0.2s ease; }
.footer-col a:hover { color: var(--white); transform: translateX(4px); }
.footer-bottom { padding-top: 48px; display: flex; flex-direction: column; gap: 16px; align-items: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.8125rem; color: var(--gray-600); }

/* ==========================================================================
   Industries Showcase - Pin Scroll
   ========================================================================== */

.industries-showcase { padding: 120px 0 0; position: relative; }
.industries-intro { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.industries-intro .section-desc { max-width: 100%; }

.industries-pinned { position: relative; min-height: 400vh; }
.industries-scroll-container { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: 1400px; margin: 0 auto; padding: 0 var(--container-pad); }
@media (min-width: 1024px) { .industries-scroll-container { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* Sticky Visual */
.industry-visual-wrapper { display: none; }
@media (min-width: 1024px) {
    .industry-visual-wrapper { display: block; position: relative; }
    .industry-visual-sticky { position: sticky; top: 120px; height: calc(100vh - 240px); display: flex; flex-direction: column; gap: 24px; }
}

.industry-visual-frame { position: relative; width: 100%; flex: 1; border-radius: 24px; overflow: hidden; background: var(--gray-50); }
.industry-visual { position: absolute; inset: 0; opacity: 0; transform: scale(0.96); transition: all 0.6s var(--ease); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px; text-align: center; }
.industry-visual.active { opacity: 1; transform: scale(1); }
.visual-gradient { position: absolute; inset: 0; z-index: 0; opacity: 0.08; }

.industry-icon-large { position: relative; z-index: 1; width: 120px; height: 120px; margin-bottom: 32px; }
.industry-icon-large svg { width: 100%; height: 100%; color: var(--black); stroke-width: 1; }
.industry-visual-content { position: relative; z-index: 1; }
.industry-visual-label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-500); margin-bottom: 16px; }
.industry-visual-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-big { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 700; color: var(--black); line-height: 1; letter-spacing: -0.04em; }
.stat-context { font-size: 0.9375rem; color: var(--gray-500); max-width: 240px; line-height: 1.5; }

/* Progress */
.industry-progress { display: flex; align-items: center; gap: 16px; }
.progress-dots { display: flex; gap: 8px; }
.progress-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); transition: all 0.3s ease; cursor: pointer; }
.progress-dot.active { background: var(--accent); transform: scale(1.25); }
.progress-dot:hover { background: var(--gray-400); }
.progress-line { flex: 1; height: 2px; background: var(--gray-100); border-radius: 1px; overflow: hidden; }
.progress-line-fill { height: 100%; width: 25%; background: var(--accent); border-radius: 1px; transition: width 0.4s ease; }

/* Industry Content */
.industry-content-wrapper { display: flex; flex-direction: column; }
.industry-content { padding: 40px 0; border-bottom: 1px solid var(--gray-100); opacity: 0.4; transition: opacity 0.4s ease; }
.industry-content:last-child { border-bottom: none; }
.industry-content.active { opacity: 1; }
@media (min-width: 1024px) { .industry-content { min-height: 100vh; padding: 80px 0; display: flex; flex-direction: column; justify-content: center; border-bottom: none; } }

.industry-number { font-size: 0.75rem; font-weight: 700; color: var(--accent-dark); margin-bottom: 16px; letter-spacing: 0.05em; }
.industry-title { font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; color: var(--black); margin-bottom: 8px; letter-spacing: -0.03em; }
.industry-tagline { font-size: 1rem; color: var(--gray-500); margin-bottom: 24px; }
.industry-desc { font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }

/* Stats Grid */
.industry-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
@media (max-width: 600px) { .industry-stats-grid { gap: 8px; } }
.stat-card { background: var(--gray-50); border-radius: 12px; padding: 20px 16px; text-align: center; transition: all 0.3s ease; }
.stat-card:hover { background: var(--gray-100); }
.stat-value { display: block; font-size: 1.375rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.stat-desc { font-size: 0.6875rem; color: var(--gray-500); line-height: 1.4; text-transform: uppercase; letter-spacing: 0.03em; }

.industry-link { display: inline-block; font-size: 0.9375rem; font-weight: 600; color: var(--black); transition: all 0.3s ease; padding: 12px 0; border-bottom: 2px solid var(--accent); }
.industry-link:hover { color: var(--accent-dark); }

/* Mobile Visual Bars */
@media (max-width: 1023px) {
    .industry-content::before { content: ''; display: block; width: 100%; height: 3px; border-radius: 2px; margin-bottom: 24px; }
    .industry-content-1::before { background: linear-gradient(90deg, #FF6B35, #F7931E); }
    .industry-content-2::before { background: linear-gradient(90deg, #667eea, #764ba2); }
    .industry-content-3::before { background: linear-gradient(90deg, #11998e, #38ef7d); }
    .industry-content-4::before { background: linear-gradient(90deg, #4facfe, #00f2fe); }
}

/* Industries Bottom CTA */
.industries-bottom-cta { background: var(--black); padding: 80px 0; margin-top: 80px; }
.bottom-cta-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .industries-bottom-cta { padding: 100px 0; } .bottom-cta-inner { grid-template-columns: 1fr 1fr; gap: 60px; } }
.bottom-cta-content { max-width: 480px; }
.cta-headline { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; color: var(--white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-subtext { font-size: 0.9375rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 32px; }
.cta-visual { display: flex; justify-content: center; align-items: center; }
.cta-geometric { width: 100%; max-width: 360px; height: auto; }
@media (max-width: 899px) { .cta-visual { order: -1; } .cta-geometric { max-width: 280px; opacity: 0.7; } .bottom-cta-content { text-align: center; margin: 0 auto; } }

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-hero { padding: var(--section-pad) 0 80px; background: var(--gray-50); }
.contact-hero-content { max-width: 600px; }
.contact-hero h1 { margin: 16px 0 24px; font-size: clamp(2.5rem, 6vw, 4rem); }
.contact-hero p { font-size: 1.125rem; }

.contact-section { padding: 80px 0 var(--section-pad); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 120px; } }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--black); margin-bottom: 10px; }
.form-group .optional { color: var(--gray-400); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--black);
    background: var(--gray-50);
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; background: var(--white); border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; }
.form-group textarea { min-height: 160px; resize: vertical; }

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 48px; }
.info-block h3 { font-size: 0.75rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.info-block a:not(.btn) { font-size: 1.25rem; color: var(--black); transition: color 0.2s; }
.info-block a:not(.btn):hover { color: var(--accent-dark); }
.info-block p { font-size: 0.9375rem; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-links a { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--gray-50); border-radius: 12px; transition: all 0.3s var(--ease); }
.social-links svg { width: 20px; height: 20px; color: var(--gray-600); }
.social-links a:hover { background: var(--black); }
.social-links a:hover svg { color: var(--white); }

.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: #25D366; color: var(--white); border-radius: 60px; font-weight: 500; transition: all 0.3s var(--ease); }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3); }
.btn-whatsapp svg { width: 20px; height: 20px; }

.form-note { text-align: center; font-size: 0.875rem; color: var(--gray-400); margin-top: 8px; }

/* Form Loading & Status States */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}
.btn-loading .btn-text,
.btn-loading .btn-icon {
    visibility: hidden;
}
.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-status {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    display: none;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}
.form-status.show { display: flex; }
.form-status.success {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.15);
}
.form-status.error {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Honeypot (spam prevention) */
.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Form Enhancements */
.form-meta {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}
.char-count {
    font-size: 0.75rem;
    color: var(--text-muted, #6b7280);
    transition: color 0.2s ease;
}
.char-count.warning {
    color: #f59e0b;
}
.required {
    color: #dc2626;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
