/* ===== DEVVELA - Modern Tech Light ===== */
/* Clean, light, technology-focused aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Light color palette */
    --color-bg: #FAFAFA;
    --color-bg-pure: #FFFFFF;
    --color-bg-subtle: #F5F5F5;
    --color-bg-card: #FFFFFF;
    --color-bg-card-hover: #FAFAFA;

    /* Text colors - improved readability */
    --color-text: #1A1A1A;
    --color-text-secondary: #3D3D3D;
    --color-text-muted: #666666;

    /* Borders */
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);

    /* Accent - warm coral */
    --color-accent: #E85D45;
    --color-accent-hover: #D4513B;
    --color-accent-soft: rgba(232, 93, 69, 0.1);
    --color-accent-glow: rgba(232, 93, 69, 0.25);

    /* Secondary - tech blue */
    --color-blue: #2563EB;
    --color-blue-soft: rgba(37, 99, 235, 0.1);

    /* Gradients */
    --gradient-accent: linear-gradient(135deg, #E85D45 0%, #FF7B5C 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 100%);

    /* Typography - Outfit for headings */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

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

    /* Layout */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Base & Reset ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle dot pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
    font-size: 1.375rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--color-text-secondary);
}

.mono {
    font-family: var(--font-mono);
    font-size: 0.875em;
    letter-spacing: -0.02em;
}

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

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    position: relative;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s var(--ease-out);
}

.btn-primary {
    background: var(--color-text);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--color-accent-glow);
}

.btn-primary:hover svg {
    transform: translateX(2px);
}

.btn-secondary {
    background: var(--color-bg-pure);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-subtle);
    border-color: var(--color-border-hover);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all 0.3s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--color-text);
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.7;
}

.logo svg {
    height: 26px;
    width: auto;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--color-text);
    color: white;
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease-out);
}

.nav-cta:hover {
    background: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero background effects */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(232, 93, 69, 0.08) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 70% 50%, black 20%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow-1 {
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(232, 93, 69, 0.12);
}

.hero-glow-2 {
    bottom: 20%;
    right: 30%;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.06);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fade-up 0.8s var(--ease-out) 0.1s both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    animation: fade-up 0.8s var(--ease-out) 0s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.hero h1 {
    margin-bottom: var(--space-lg);
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero .highlight {
    color: var(--color-accent);
}

.hero .highlight-box {
    display: inline-block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero .highlight-box::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--gradient-accent);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    max-width: 540px;
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    animation: fade-up 0.8s var(--ease-out) 0.2s both;
}

.btn-large {
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fade-up 0.8s var(--ease-out) 0.3s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

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

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

/* Hero visual */
.hero-visual {
    position: relative;
    animation: fade-up 0.8s var(--ease-out) 0.2s both;
}

.hero-graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Device mockup */
.device-mockup {
    position: relative;
    width: 220px;
    height: 380px;
    background: var(--color-text);
    border-radius: 36px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.device-header {
    height: 24px;
    background: var(--color-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-header::before {
    content: '';
    width: 60px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.device-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.device-card {
    height: 60px;
    background: var(--color-bg-pure);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    background: var(--color-accent-soft);
    border-radius: 8px;
}

.device-card::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 16px;
    width: 80px;
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.device-card:nth-child(1)::before { background: var(--color-accent-soft); }
.device-card:nth-child(2)::before { background: var(--color-blue-soft); }
.device-card:nth-child(3)::before { background: rgba(0, 0, 0, 0.05); }

.device-nav {
    height: 56px;
    background: var(--color-bg-pure);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
}

.device-nav span {
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
}

.device-nav span:first-child {
    background: var(--color-accent);
}

/* Code cards */
.code-card {
    position: absolute;
    background: var(--color-text);
    border-radius: 12px;
    padding: 0;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 2;
}

.code-card-1 {
    top: 10%;
    left: -10%;
    transform: rotate(-2deg);
}

.code-card-2 {
    bottom: 15%;
    right: -5%;
    transform: rotate(2deg);
}

.code-card-header {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 6px;
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #FF5F56; }
.code-dot.yellow { background: #FFBD2E; }
.code-dot.green { background: #27CA40; }

.code-card-body {
    padding: 14px 18px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    line-height: 1.8;
}

.code-card-body code {
    display: block;
    color: #E1E1E6;
}

.code-keyword { color: #FF79C6; }
.code-func { color: #50FA7B; }
.code-string { color: #F1FA8C; }
.code-comment { color: #6272A4; }

/* Floating badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.floating-badge svg {
    color: var(--color-accent);
}

.floating-badge-1 {
    top: 25%;
    right: 5%;
}

.floating-badge-2 {
    bottom: 30%;
    left: 0%;
}

/* Orbit container */
.orbit-container {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    inset: 40px;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-accent-glow);
}

.orbit-dot-1 {
    top: 10%;
    left: 50%;
}

.orbit-dot-2 {
    top: 70%;
    right: 5%;
}

.orbit-dot-3 {
    bottom: 20%;
    left: 10%;
}

/* ===== Trust Strip ===== */
.trust-strip {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-pure);
    position: relative;
    z-index: 1;
}

.trust-strip p {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===== Sections ===== */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--color-bg-pure);
}

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

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* ===== Cards Grid ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.card {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s var(--ease-out);
}

.card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.1875rem;
}

.card-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card p {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text-secondary);
}

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

.section-cta-text {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ===== Clients Section ===== */
.clients-section {
    padding: var(--space-xl) 0;
    background: var(--color-bg-pure);
    border-bottom: 1px solid var(--color-border);
}

.clients-section .section-header {
    margin-bottom: var(--space-lg);
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.client-logo {
    opacity: 0.6;
    transition: all 0.3s var(--ease-out);
    filter: grayscale(100%);
}

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

.client-logo {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== Two Column Layout ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.column-content h2 {
    margin-bottom: var(--space-md);
}

.column-content .lead {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
}

/* Check List */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    padding: 0.75rem 1rem;
    background: var(--color-bg-subtle);
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.check-list li:hover {
    background: var(--color-bg-pure);
}

.check-list li::before {
    content: '✓';
    font-weight: 700;
    color: var(--color-accent);
}

.subtle-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
}

/* Visual Placeholder */
.visual-placeholder {
    aspect-ratio: 4/3;
    background: var(--color-bg-subtle);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-placeholder svg {
    width: 100%;
    height: 100%;
}

/* ===== Tech Stack Section ===== */
.tech-stack-section {
    padding: var(--space-lg) 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.tech-stack-section .section-header {
    margin-bottom: var(--space-md);
}

.tech-stack-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.tech-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.tech-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tech-logo img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.tech-logo span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
}

/* ===== Cases Section ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.case-card {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}

.case-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.case-image {
    aspect-ratio: 16/9;
    background: #E5E5E5;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.case-image img {
    width: 90%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
    border-radius: 8px 8px 0 0;
}

.case-content {
    padding: var(--space-lg);
}

.case-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.case-content p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text-secondary);
}

.case-result {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
    font-weight: 600;
    color: var(--color-accent) !important;
}

/* ===== Vibe Coding Section ===== */
.section-dark .centered-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.section-dark .centered-content .lead {
    font-size: 1.1875rem;
    line-height: 1.75;
    margin: var(--space-md) 0 var(--space-lg);
    color: var(--color-text-secondary);
}

.highlight-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ===== Benefits Grid ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.benefit-card {
    padding: var(--space-lg);
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.benefit-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-md);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.benefit-card h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-xs);
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* ===== 21-Day Plan Section ===== */
.deliverables {
    margin-bottom: var(--space-2xl);
}

.deliverables h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.deliverable-item:hover {
    border-color: var(--color-accent);
}

.check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--color-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Tracks */
.tracks {
    margin-bottom: var(--space-2xl);
}

.tracks h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.track-card {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s var(--ease-out);
}

.track-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.track-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-sm);
}

.track-icon svg {
    width: 100%;
    height: 100%;
}

.track-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    background: var(--color-accent);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.track-card h4 {
    margin-bottom: var(--space-xs);
}

.track-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* Timeline */
.timeline {
    margin-bottom: var(--space-2xl);
}

.timeline h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.timeline-item {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-week {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.timeline-item h4 {
    margin-bottom: var(--space-xs);
}

.timeline-item p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* Requirements */
.requirements {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.requirements h3 {
    margin-bottom: var(--space-md);
}

.requirements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.8125rem;
    transition: border-color 0.2s;
}

.requirements-list li:hover {
    border-color: var(--color-accent);
}

.requirements-list li::before {
    content: '•';
    color: var(--color-accent);
    font-weight: 700;
}

.section-cta {
    text-align: center;
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

/* ===== Process Steps ===== */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    padding: var(--space-sm);
    flex: 1;
    max-width: 160px;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--color-bg-pure);
    border: 2px solid var(--color-text);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    margin: 0 auto var(--space-sm) auto;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 auto var(--space-sm);
    transition: all 0.25s var(--ease-out);
}

.process-step:hover .step-number {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.process-step h3 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.process-connector {
    width: 32px;
    height: 2px;
    background: var(--color-border);
    margin-top: 38px;
    flex-shrink: 0;
}

.process-promise {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ===== Team Section ===== */
.team-visual {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.team-visual svg {
    max-width: 400px;
    height: auto;
}

.team-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.role-tag {
    padding: 0.5rem 1rem;
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s var(--ease-out);
}

.role-tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.team-tone {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ===== FAQ Section ===== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-pure);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

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

.faq-item.active {
    border-color: var(--color-accent);
}

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--color-bg-subtle);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.25s var(--ease-out);
}

.faq-item.active .faq-icon {
    background: var(--color-accent);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-text-muted);
    transition: all 0.25s var(--ease-out);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: white;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

/* ===== Final CTA Section ===== */
.section-cta-final {
    background: var(--color-text);
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(232, 93, 69, 0.15) 0%, transparent 60%);
}

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

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.section-cta-final .btn-primary {
    background: var(--color-accent);
}

.section-cta-final .btn-primary:hover {
    background: var(--color-accent-hover);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-pure);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.footer-brand .logo {
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

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

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .code-card-1 {
        left: 5%;
    }

    .code-card-2 {
        right: 5%;
    }

    .floating-badge-2 {
        left: 10%;
    }

    .hero-glow-1,
    .hero-glow-2 {
        display: none;
    }

    .cards-grid,
    .benefits-grid,
    .deliverables-grid,
    .tracks-grid,
    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-items::before {
        display: none;
    }

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

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

    .two-column.reverse {
        direction: ltr;
    }

    .column-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .device-mockup {
        width: 180px;
        height: 310px;
    }

    .code-card {
        display: none;
    }

    .floating-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .orbit-container {
        display: none;
    }

    .cards-grid,
    .benefits-grid,
    .deliverables-grid,
    .tracks-grid,
    .timeline-items {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

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

    .process-connector {
        width: 2px;
        height: 20px;
        margin: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer-links {
        flex-wrap: wrap;
        gap: var(--space-sm) var(--space-lg);
    }

    .cta-buttons,
    .hero-buttons,
    .section-cta {
        flex-direction: column;
        align-items: center;
    }

    .clients-logos,
    .tech-logos {
        gap: var(--space-sm);
    }
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s var(--ease-out);
}

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