/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GROWMAP DIGITAL - KYON-INSPIRED PREMIUM DESIGN
   Massive Typography • Generous Spacing • Sophisticated
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
    /* Colors */
    --bg: #0A0E1A;
    --bg-elevated: #0F1420;
    --bg-section: #050810;
    --bg-glass: rgba(15, 20, 32, 0.7);
    --accent: #00B4FF;
    --accent-dark: #0055CC;
    --text: #FFFFFF;
    --text-secondary: #A1A9B8;
    --text-muted: #6B7280;
    --border: rgba(161, 169, 184, 0.06);
    --border-strong: rgba(161, 169, 184, 0.12);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00B4FF 0%, #0055CC 100%);
    --gradient-mesh: radial-gradient(at 20% 30%, hsla(215, 100%, 60%, 0.12) 0px, transparent 50%),
                     radial-gradient(at 80% 70%, hsla(215, 100%, 40%, 0.08) 0px, transparent 50%),
                     radial-gradient(at 50% 50%, hsla(215, 100%, 50%, 0.05) 0px, transparent 50%);
    
    /* Spacing - MASSIVE like Kyon */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    --space-5xl: 12rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    
    /* Effects */
    --blur: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 80px rgba(0, 180, 255, 0.25);
    
    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.container-small {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hide-mobile {
    display: inline;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.logo-text {
    display: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
}

.logo-grow {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-map {
    color: var(--text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 180, 255, 0.25);
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 255, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1.125rem 2.25rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    white-space: normal;
    text-align: center;
    max-width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 180, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 180, 255, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO - MASSIVE LIKE KYON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(100px + var(--space-3xl)) var(--space-2xl) var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.25rem;
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-5xl);
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    animation: fadeInUp 1.4s ease-out 0.8s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: var(--accent);
    top: -250px;
    right: -150px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-dark);
    bottom: -200px;
    left: -150px;
    animation-delay: 8s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -60px) scale(1.1); }
    66% { transform: translate(-40px, 40px) scale(0.9); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CLIENTS CAROUSEL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.clients-carousel {
    padding: var(--space-4xl) 0;
    overflow: hidden;
    position: relative;
    background: var(--bg);
}

.carousel-label {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: var(--space-2xl);
}

.carousel-track {
    overflow: hidden;
    position: relative;
    width: 100%;
}

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

.carousel-track::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.carousel-track::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.carousel-content {
    display: flex;
    gap: var(--space-3xl);
    animation: carousel-marquee 30s linear infinite;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    min-width: 220px;
    height: 100px;
    transition: all 0.3s;
}

.client-logo img {
    max-width: 180px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2) opacity(0.7);
    transition: filter 0.3s;
}

.client-logo:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1) opacity(1);
}

@keyframes carousel-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTIONS - GENEROUS SPACING
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

section {
    padding: var(--space-5xl) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROOF - ALTERNATING BACKGROUND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.proof {
    padding: var(--space-4xl) 0;
    background: var(--bg-section);
}

.proof-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.proof-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
}

.proof-image {
    width: 100%;
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.proof-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.proof-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.proof-card:hover .proof-image img {
    transform: scale(1.03);
}

.proof-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3xl);
    align-items: start;
    margin-bottom: var(--space-xl);
}

.proof-metric {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(0, 180, 255, 0.05);
    border-radius: var(--radius-lg);
}

.proof-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.proof-period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.proof-category {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.proof-text p {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.proof-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.proof-tags span {
    padding: 0.625rem 1.125rem;
    background: rgba(161, 169, 184, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BENTO GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

.bento-item {
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
    position: relative;
}

.bento-item:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.bento-large {
    grid-column: span 2;
}

.bento-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: var(--space-xl);
}

.bento-item h3 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.bento-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
}

.bento-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 1rem;
}

.bento-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    font-size: 1.125rem;
}

.bento-badge-popular {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.process {
    background: var(--bg-section);
}

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

.process-step {
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-xl);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEAM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.team {
    position: relative;
}

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

.team-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.1) 0%, rgba(0, 85, 204, 0.1) 100%);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 0.375rem 0.75rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.team-content {
    padding: var(--space-3xl);
}

.team-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--accent);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: var(--space-xl);
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.team-expertise span {
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}

.team-footer {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.team-footer p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.portfolio {
    background: var(--bg-section);
}

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

.portfolio-card {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s;
}

.portfolio-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-elevated);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    padding: 0.875rem 1.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.portfolio-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 180, 255, 0.4);
}

.portfolio-content {
    padding: var(--space-2xl);
}

.portfolio-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 255, 0.1);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.portfolio-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-2xl);
}

.why-card {
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: var(--space-xl);
    display: block;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.faq {
    background: var(--bg-section);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--border-strong);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--accent);
}

.faq-q svg {
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: var(--space-lg);
}

.faq-item.active .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-a {
    max-height: 600px;
}

.faq-a p {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta {
    padding: var(--space-5xl) 0;
}

.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-4xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.cta-card p {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.testimonials {
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-2xl);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    line-height: 1;
}

.testimonial-text {
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.2) 0%, rgba(0, 85, 204, 0.2) 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.testimonial-business {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOR WHO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.for-who {
    position: relative;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
}

.for-who-card {
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.for-who-yes {
    border-color: rgba(34, 197, 94, 0.3);
}

.for-who-yes:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.15);
    transform: translateY(-4px);
}

.for-who-no {
    border-color: rgba(239, 68, 68, 0.3);
}

.for-who-no:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.15);
    transform: translateY(-4px);
}

.for-who-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    line-height: 1;
}

.for-who-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
}

.for-who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.for-who-list li {
    padding-left: var(--space-xl);
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.for-who-yes .for-who-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(34, 197, 94);
    font-weight: 700;
    font-size: 1.25rem;
}

.for-who-no .for-who-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: rgb(239, 68, 68);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GUARANTEES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.guarantees {
    background: var(--bg-section);
}

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

.guarantee-card {
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.guarantee-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.guarantee-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-xl);
}

.guarantee-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MORE CASES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.more-cases {
    position: relative;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-2xl);
}

.case-card {
    padding: var(--space-2xl);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.case-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.case-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
}

.case-result {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(0, 180, 255, 0.05);
    border-radius: var(--radius-md);
}

.case-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

.case-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

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

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(161, 169, 184, 0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHATSAPP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.whatsapp {
    position: fixed;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    width: 68px;
    height: 68px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 12px 32px rgba(0, 180, 255, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 16px 40px rgba(0, 180, 255, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 12px 32px rgba(0, 180, 255, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 180, 255, 0.6);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1200px) {
    .bento-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --space-5xl: 6rem;
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .container,
    .container-small {
        padding: 0 var(--space-lg);
    }
    
    .nav-menu {
        position: fixed;
        top: 89px;
        left: 0;
        right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(var(--blur));
        flex-direction: column;
        padding: var(--space-2xl);
        gap: var(--space-xl);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        border-top: 1px solid var(--border);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero {
        padding: calc(100px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        padding: var(--space-xl);
    }
    
    .stat-value {
        font-size: 2.75rem;
    }
    
    .proof-image {
        margin-bottom: var(--space-xl);
    }
    
    .proof-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .proof-value {
        font-size: 3rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        padding: var(--space-xl);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .for-who-grid {
        grid-template-columns: 1fr;
    }
    
    .for-who-card {
        padding: var(--space-xl);
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-track::before,
    .carousel-track::after {
        width: 80px;
    }
    
    .client-logo {
        min-width: 140px;
        font-size: 1rem;
        padding: var(--space-md) var(--space-lg);
    }
    
    .whatsapp {
        bottom: var(--space-xl);
        right: var(--space-xl);
        width: 60px;
        height: 60px;
    }
    
    .whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .proof-card,
    .cta-card {
        padding: var(--space-lg);
    }
    
    .btn-large {
        font-size: 0.9375rem;
        padding: 1rem 1.75rem;
    }
    
    .stat-value {
        font-size: 2.25rem;
    }
    
    .proof-value {
        font-size: 2.5rem;
    }
}
