/* ===== FONTS ===== */
@import url('https://cdn.jsdelivr.net/npm/geist@1.2.0/dist/fonts/geist-sans/style.css');

/* ===== VARIABLES ===== */
:root {
    --bg-primary: #08080a;
    --bg-secondary: #0c0c0f;
    --bg-card: #121215;
    --bg-card-hover: #18181c;
    --bg-card-elevated: #1a1a1f;
    --accent: #818cf8;
    --accent-secondary: #6366f1;
    --accent-dim: rgba(129, 140, 248, 0.08);
    --accent-glow: rgba(129, 140, 248, 0.2);
    --accent-border: rgba(129, 140, 248, 0.15);
    --warm: #f5c16c;
    --warm-dim: rgba(245, 193, 108, 0.08);
    --red-muted: #ff4d4d;
    --red-dim: rgba(255, 77, 77, 0.08);
    --red-border: rgba(255, 77, 77, 0.12);
    --text-primary: #ececf0;
    --text-secondary: #8e8e9a;
    --text-muted: #55555f;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.09);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* ===== NOISE TEXTURE ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ===== TEXT SELECTION ===== */
::selection {
    background: #c8a2ff !important;
    color: #08080a !important;
}
::-moz-selection {
    background: #c8a2ff !important;
    color: #08080a !important;
}

/* ===== iOS EMOJI ===== */
.e {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Twemoji Mozilla', sans-serif;
    font-style: normal;
    line-height: 1;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 140px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    background: var(--accent-dim);
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid var(--accent-border);
}

h1, h2, h3, h4 {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--accent), var(--warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #0a0a0b;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 17px 34px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow), 0 2px 12px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 17px 34px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s ease;
    letter-spacing: -0.01em;
}

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

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.6s var(--ease);
}

nav.scrolled {
    background: rgba(8, 8, 10, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.logo {
    font-family: 'Geist', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    color: #0a0a0b;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

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

.nav-cta {
    background: var(--accent) !important;
    color: #0a0a0b !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    font-size: 0.84rem !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 24px var(--accent-glow) !important;
}

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

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.5s var(--ease);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.06;
    background: var(--accent);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.04;
    background: var(--warm);
    bottom: 0;
    left: -100px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: 100px;
    padding: 9px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease-out 0.08s both;
    letter-spacing: -0.035em;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 44px;
    animation: fadeInUp 0.7s ease-out 0.16s both;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease-out 0.24s both;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--accent), var(--warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

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

/* ===== PROBLEMS ===== */
.problems {
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 68px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.6s var(--ease);
    position: relative;
}

.problem-card:hover {
    border-color: var(--red-border);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.problem-emoji {
    font-size: 2rem;
    margin-bottom: 22px;
    display: block;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== SOLUTIONS ===== */
.solutions {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    transition: all 0.6s var(--ease);
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--accent-border), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover::after { opacity: 1; }

.solution-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.solution-emoji {
    font-size: 2.2rem;
    margin-bottom: 22px;
    display: block;
}

.solution-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 400;
}

.solution-tag {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    margin-top: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--accent-border);
}

/* ===== PROCESS ===== */
.process {
    background: var(--bg-primary);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    flex: 1;
    position: relative;
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-border), var(--accent) 50%, var(--accent-border));
    opacity: 0.4;
}

.process-step:hover .step-num {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.1);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-border);
    color: var(--accent);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    transition: all 0.6s var(--ease);
}

.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    font-weight: 400;
}

/* ===== CASE STUDY ===== */
.case-study {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
}

.cs-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cs-before, .cs-after {
    padding: 48px 40px;
}

.cs-before {
    border-right: 1px solid var(--border);
}

.cs-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 7px 16px;
    border-radius: 100px;
}

.cs-label.before {
    color: var(--red-muted);
    background: var(--red-dim);
    border: 1px solid var(--red-border);
}

.cs-label.after {
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
}

.cs-metric {
    margin-bottom: 22px;
}

.cs-metric:last-child { margin-bottom: 0; }

.cs-metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.cs-metric-value {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.cs-metric-value.bad { color: var(--red-muted); }
.cs-metric-value.good { color: var(--accent); }

.cs-bottom {
    border-top: 1px solid var(--border);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cs-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 580px;
}

.cs-quote strong {
    color: var(--text-primary);
    font-style: normal;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    transition: all 0.6s var(--ease);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Featured / ICP card */
.pricing-card.featured {
    background: var(--bg-card-elevated);
    border-color: var(--accent-border);
    padding: 52px 36px;
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 0 60px var(--accent-dim), 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary), var(--warm));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 0 80px var(--accent-glow), 0 24px 72px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--warm));
    color: #0a0a0b;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.pricing-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pricing-card.featured .pricing-amount {
    background: linear-gradient(135deg, var(--accent), var(--warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* ===== COMPARISON ===== */
.comparison {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
    align-items: start;
}

.comp-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-title {
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.comp-title.old {
    background: var(--red-dim);
    color: var(--red-muted);
    border: 1px solid var(--red-border);
}

.comp-title.new {
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid var(--accent-border);
}

.comp-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: all 0.5s var(--ease);
}

.comp-item:hover {
    background: var(--bg-card-hover);
}

.comp-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.comp-item p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.6;
}

.comp-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
}

.comp-vs-line {
    width: 1px;
    flex: 1;
    background: var(--border);
}

.comp-vs-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 12px 0;
    letter-spacing: 0.05em;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.5s var(--ease);
    color: var(--text-muted);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: #0a0a0b;
    border-color: var(--accent);
    font-weight: 400;
}

/* FAQ answer styles handled in scroll animations section below */

/* ===== DECISION ===== */
.decision {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.decision-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0 0 36px;
    transition: all 0.6s var(--ease);
    overflow: hidden;
    position: relative;
}

.decision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.decision-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    margin-bottom: 28px;
}

.decision-header-bar.bad {
    background: var(--red-dim);
    border-bottom: 1px solid var(--red-border);
}

.decision-header-bar.mid {
    background: rgba(245, 193, 108, 0.06);
    border-bottom: 1px solid rgba(245, 193, 108, 0.1);
}

.decision-header-bar.good {
    background: var(--accent-dim);
    border-bottom: 1px solid var(--accent-border);
}

.decision-emoji {
    font-size: 1.3rem;
}

.decision-path {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.decision-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 28px;
    letter-spacing: -0.02em;
}

.decision-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 28px;
    margin-bottom: 24px;
}

.decision-list {
    list-style: none;
    padding: 0 28px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.decision-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.decision-x {
    color: var(--red-muted);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 1px;
}

.decision-check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 1px;
}

.decision-result {
    margin: 0 28px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.decision-result.bad {
    background: var(--red-dim);
    color: var(--red-muted);
    border: 1px solid var(--red-border);
}

.decision-result.mid {
    background: rgba(245, 193, 108, 0.06);
    color: var(--warm);
    border: 1px solid rgba(245, 193, 108, 0.1);
}

.decision-result.good {
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid var(--accent-border);
}

/* The "good" card stands out */
.decision-good {
    border-color: var(--accent-border);
    box-shadow: 0 0 40px var(--accent-dim);
}

.decision-good::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-border), transparent 40%, transparent 60%, var(--accent-border));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.decision-good:hover {
    box-shadow: 0 0 60px var(--accent-glow), 0 24px 72px rgba(0, 0, 0, 0.4);
}

.decision-cta {
    margin: 24px 28px 0;
    width: calc(100% - 56px);
    justify-content: center;
}

/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.final-cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.06;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.final-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    padding: 44px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

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

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.port-project {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}
.port-project:last-child { margin-bottom: 0; }
.port-project.port-reverse { direction: rtl; }
.port-project.port-reverse > * { direction: ltr; }

/* Browser Frame */
.port-browser {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    transition: transform 0.4s, box-shadow 0.4s;
}
.port-browser:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 100px rgba(0,0,0,0.5), 0 0 40px var(--accent-dim);
}
.port-browser-bar {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px;
    background: var(--bg-card-elevated);
    border-bottom: 1px solid var(--border);
}
.port-dots { display: flex; gap: 6px; }
.port-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); }
.port-dots span:first-child { background: rgba(232,115,90,0.6); }
.port-dots span:nth-child(2) { background: rgba(245,193,108,0.6); }
.port-dots span:last-child { background: rgba(110,231,160,0.5); }
.port-url {
    flex: 1; text-align: center;
    font-size: 0.72rem; color: var(--text-muted);
    background: var(--bg-card); padding: 5px 16px;
    border-radius: 6px; border: 1px solid var(--border);
}
.port-screen { overflow: hidden; }

/* ===== MINI-SITE 1: Burger Bold ===== */
.port-screen-1 { background: #1a1a1a; }
.port-hero-1 { padding: 28px; min-height: 420px; position: relative; }
.port-nav-1 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.port-logo-1 { font-weight: 900; font-size: 0.85rem; color: #ff4d2e; letter-spacing: 0.08em; text-transform: uppercase; }
.port-nav-links-1 { display: flex; gap: 16px; align-items: center; font-size: 0.68rem; color: #999; }
.port-cta-1 { background: #ff4d2e; color: #fff; padding: 6px 14px; border-radius: 100px; font-weight: 700; }
.port-hero-content-1 { margin-bottom: 32px; }
.port-tag-1 { font-size: 0.68rem; letter-spacing: 0.12em; color: #ff4d2e; margin-bottom: 14px; font-weight: 700; }
.port-hero-1 h2 { font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 10px; }
.port-hero-1 h2 em { font-style: italic; color: #ff4d2e; }
.port-hero-1 p { font-size: 0.78rem; color: #888; line-height: 1.6; max-width: 380px; margin-bottom: 18px; }
.port-btns-1 { display: flex; gap: 10px; }
.port-btn-fill-1 { background: #ff4d2e; color: #fff; padding: 10px 20px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.port-btn-out-1 { border: 1px solid #444; color: #ccc; padding: 10px 20px; border-radius: 100px; font-size: 0.75rem; font-weight: 500; }
.port-food-grid-1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.port-food-item { background: #222; border: 1px solid #333; border-radius: 10px; padding: 16px; }
.port-food-name { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.port-food-desc { font-size: 0.68rem; color: #777; line-height: 1.4; margin-bottom: 8px; }
.port-food-price { font-size: 0.78rem; font-weight: 800; color: #ff4d2e; }

/* ===== MINI-SITE 2: Fine Dining Elegant ===== */
.port-screen-2 { background: #0a0a08; }
.port-hero-2 { padding: 28px; min-height: 420px; position: relative; background: linear-gradient(135deg, #0a0a08, #171612); }
.port-nav-2 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.port-logo-2 { font-family: Georgia, 'Playfair Display', serif; font-size: 1rem; color: #c9a96e; font-weight: 400; font-style: italic; letter-spacing: 0.02em; }
.port-nav-links-2 { display: flex; gap: 16px; align-items: center; font-size: 0.68rem; color: #6b6558; letter-spacing: 0.05em; }
.port-cta-2 { border: 1px solid rgba(201,169,110,0.3); color: #c9a96e; padding: 6px 14px; border-radius: 100px; font-weight: 600; }
.port-hero-content-2 { max-width: 400px; }
.port-tag-2 { font-size: 0.65rem; letter-spacing: 0.18em; color: #c9a96e; margin-bottom: 14px; font-weight: 500; }
.port-hero-2 h2 { font-family: Georgia, 'Playfair Display', serif; font-size: 1.7rem; font-weight: 400; color: #f2efe8; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 12px; }
.port-hero-2 h2 em { font-style: italic; color: #c9a96e; }
.port-hero-2 p { font-size: 0.78rem; color: #6b6558; line-height: 1.7; margin-bottom: 24px; }
.port-btns-2 { display: flex; gap: 10px; }
.port-btn-fill-2 { background: #c9a96e; color: #0a0a08; padding: 10px 22px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.port-btn-out-2 { border: 1px solid rgba(255,255,255,0.1); color: #a09a8c; padding: 10px 22px; border-radius: 100px; font-size: 0.75rem; }

/* ===== MINI-SITE 3: Café Light ===== */
.port-screen-3 { background: #faf7f2; }
.port-hero-3 { padding: 28px; min-height: 420px; }
.port-nav-3 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.port-logo-3 { font-family: Georgia, serif; font-size: 0.95rem; color: #3d3425; font-weight: 400; font-style: italic; }
.port-nav-links-3 { display: flex; gap: 14px; align-items: center; font-size: 0.68rem; color: #8a7e6d; }
.port-cta-3 { background: #3d3425; color: #faf7f2; padding: 6px 14px; border-radius: 100px; font-weight: 600; font-size: 0.68rem; }
.port-hero-content-3 {}
.port-tag-3 { font-size: 0.62rem; letter-spacing: 0.18em; color: #8a7e6d; margin-bottom: 14px; font-weight: 600; text-transform: uppercase; }
.port-hero-3 h2 { font-family: Georgia, serif; font-size: 1.7rem; font-weight: 400; color: #3d3425; line-height: 1.15; margin-bottom: 10px; }
.port-hero-3 h2 em { font-style: italic; color: #a0785a; }
.port-hero-3 p { font-size: 0.78rem; color: #8a7e6d; line-height: 1.7; max-width: 380px; margin-bottom: 22px; }
.port-menu-preview { display: flex; flex-direction: column; gap: 0; border-top: 1px solid #e5dfd6; max-width: 320px; }
.port-menu-item-3 { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #e5dfd6; font-size: 0.8rem; color: #3d3425; }
.port-menu-item-3 span:last-child { font-weight: 600; color: #a0785a; }

/* ===== PORTFOLIO INFO ===== */
.port-info { display: flex; flex-direction: column; gap: 16px; }
.port-info-header {}
.port-type { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; display: block; }
.port-info h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.port-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.port-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.port-tag {
    padding: 5px 14px; border-radius: 100px;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    font-size: 0.72rem; font-weight: 600; color: var(--accent);
    letter-spacing: 0.05em;
}
.port-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }
.port-result {
    padding: 16px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    text-align: center;
}
.port-result-val { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 2px; }
.port-result-label { font-size: 0.68rem; color: var(--text-muted); }

/* ===== SCROLL ANIMATIONS — 3 types ===== */

/* r-up: simple slide up */
.r-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.r-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* r-stagger: children appear sequentially (set delays via JS) */
.r-stagger {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.r-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* r-scale: scale + slide for case study card */
.r-scale {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.r-scale.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== PREMIUM HOVER STATES ===== */

/* Cards lift 6px with shadow */
.problem-card:hover,
.solution-card:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-color: var(--border-light);
}

/* Icons scale subtly on card hover — no rotate */
.problem-card:hover .problem-emoji,
.solution-card:hover .solution-emoji {
    transform: scale(1.06);
    transition: transform 0.5s var(--ease);
}
.problem-emoji, .solution-emoji {
    transition: transform 0.5s var(--ease);
}

/* Pain point items shift right 4px on hover */
.problem-card:hover h3 {
    transform: translateX(4px);
    transition: transform 0.5s var(--ease);
}
.problem-card h3 {
    transition: transform 0.5s var(--ease);
}

/* ===== CASE STUDY DEMO SPACING ===== */
.cs-demo { margin-top: 64px; }
.cs-demo-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-align: center;
}
.cs-demo-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}

/* ===== FAQ — grid-template-rows smooth ===== */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s var(--ease);
    overflow: hidden;
}
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}
.faq-answer-inner {
    overflow: hidden;
    padding: 0 0 0;
    transition: padding 0.5s var(--ease);
}
.faq-item.active .faq-answer-inner {
    padding: 0 0 24px;
}

/* Twemoji handled via @font-face */
.emoji-svg {
    height: 1.15em;
    width: 1.15em;
    vertical-align: -0.15em;
    display: inline-block;
    flex-shrink: 0;
}
/* Larger emoji for card icons */
.problem-emoji .emoji-svg,
.solution-emoji .emoji-svg {
    height: 1em;
    width: 1em;
    vertical-align: baseline;
}

/* ===== NOBLESSE PREVIEW — Mohonk Inspired ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

.vf-preview { background: #0c0b09; overflow: hidden; }

.vf-hero-sec { padding: 28px 28px 48px; position: relative; min-height: 400px; display: flex; flex-direction: column; background: linear-gradient(170deg, #1a1610 0%, #0c0b09 100%); }
.vf-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; animation: vfGlowFloat 12s ease-in-out infinite; }
@keyframes vfGlowFloat { 0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; } 50% { transform: translate(-20px,15px) scale(1.08); opacity: 1; } }
.vf-inner { position: relative; z-index: 2; }
.vf-nav-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.vf-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; color: #d4a853; font-style: italic; }
.vf-nav-items { display: flex; gap: 16px; align-items: center; font-size: 0.66rem; color: #7a6e5a; letter-spacing: 0.05em; }
.vf-nav-btn { border: 1px solid rgba(212,168,83,0.3); color: #d4a853; padding: 6px 14px; border-radius: 100px; font-weight: 600; transition: all 0.5s var(--ease); }
.vf-hero-body { max-width: 420px; }
.vf-hero-tag { font-size: 0.6rem; letter-spacing: 0.18em; color: #d4a853; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.vf-hero-tag::before { content: ''; width: 28px; height: 1px; background: #d4a853; }
.vf-hero-h { font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; font-weight: 400; color: #f4efe6; line-height: 1.15; margin-bottom: 12px; }
.vf-hero-h em { font-style: italic; color: #d4a853; }
.vf-hero-p { font-size: 0.76rem; color: #8a8172; line-height: 1.75; margin-bottom: 22px; }
.vf-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.vf-btn-g { background: #d4a853; color: #0c0b09; padding: 10px 22px; border-radius: 100px; font-size: 0.73rem; font-weight: 600; transition: all 0.5s var(--ease); cursor: pointer; }
.vf-btn-g:hover { box-shadow: 0 6px 24px rgba(212,168,83,0.2); transform: translateY(-1px); }
.vf-btn-o { border: 1px solid rgba(244,239,230,0.12); color: #c4baa8; padding: 10px 22px; border-radius: 100px; font-size: 0.73rem; transition: all 0.5s var(--ease); cursor: pointer; }
.vf-btn-o:hover { border-color: rgba(212,168,83,0.3); color: #f4efe6; }

.vf-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: #0f0e0b; }
.vf-st { text-align: center; padding: 22px 12px; border-right: 1px solid rgba(255,255,255,0.04); }
.vf-st:last-child { border-right: none; }
.vf-st-n { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 600; color: #d4a853; margin-bottom: 2px; }
.vf-st-l { font-size: 0.62rem; color: #7a6e5a; letter-spacing: 0.04em; }

.vf-sec { padding: 44px 0; }
.vf-sec-dark { background: #0f0e0b; }
.vf-sec-inner { padding: 0 28px; }
.vf-lab { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #d4a853; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.vf-lab::before { content: ''; width: 20px; height: 1px; background: #d4a853; }
.vf-sec-h { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 400; color: #f4efe6; line-height: 1.25; margin-bottom: 12px; }
.vf-sec-h em { font-style: italic; color: #d4a853; }
.vf-sec-p { font-size: 0.76rem; color: #8a8172; line-height: 1.75; max-width: 440px; }

.vf-menu-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.vf-menu-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 18px; transition: all 0.5s var(--ease); }
.vf-menu-box:hover { border-color: rgba(212,168,83,0.15); transform: translateY(-2px); }
.vf-menu-cat { font-family: 'Playfair Display', Georgia, serif; font-size: 0.82rem; color: #d4a853; font-style: italic; margin-bottom: 10px; }
.vf-mi { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.72rem; }
.vf-mi:last-child { border-bottom: none; }
.vf-mi span:first-child { color: #c4baa8; }
.vf-mi span:last-child { color: #d4a853; font-weight: 600; }

.vf-ev-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.vf-ev { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 20px 16px; text-align: center; transition: all 0.5s var(--ease); }
.vf-ev:hover { border-color: rgba(212,168,83,0.2); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.vf-ev-ico { font-size: 1.4rem; margin-bottom: 8px; }
.vf-ev-name { font-family: 'Playfair Display', Georgia, serif; font-size: 0.88rem; font-style: italic; color: #f4efe6; margin-bottom: 6px; }
.vf-ev-desc { font-size: 0.64rem; color: #7a6e5a; line-height: 1.5; }

.vf-quote-sec { padding: 52px 0; background: linear-gradient(170deg, #141210 0%, #0c0b09 100%); border-top: 1px solid rgba(212,168,83,0.08); border-bottom: 1px solid rgba(212,168,83,0.08); text-align: center; }
.vf-big-quote { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-style: italic; color: #c4baa8; line-height: 1.6; max-width: 440px; margin: 0 auto 14px; }
.vf-big-quote em { color: #d4a853; }
.vf-quote-auth { font-size: 0.68rem; color: #d4a853; font-weight: 600; letter-spacing: 0.06em; }

.vf-cta-sec { padding: 44px 0; text-align: center; }
.vf-cta-addr { font-size: 0.66rem; color: #7a6e5a; margin-top: 14px; }

.vf-foot { padding: 16px 28px; border-top: 1px solid rgba(255,255,255,0.04); font-size: 0.62rem; color: #5c564a; text-align: center; }
.vf-foot strong { color: #d4a853; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .problems-grid, .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    .process-step {
        flex: 0 0 calc(50% - 10px);
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .port-project { grid-template-columns: 1fr; gap: 32px; }
    .port-project.port-reverse { direction: ltr; }
    .port-food-grid-1 { grid-template-columns: 1fr; }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
    .decision-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .decision-good {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section { padding: 100px 0; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 8, 10, 0.97);
        backdrop-filter: blur(24px);
        padding: 20px 28px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }

    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.05rem; }

    .problems-grid,
    .solution-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .decision-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .decision-good {
        max-width: 100%;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .process-step {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    .process-step:not(:last-child)::after {
        display: none;
    }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }

    .port-project { grid-template-columns: 1fr; gap: 24px; }
    .port-project.port-reverse { direction: ltr; }
    .port-hero-1, .port-hero-2, .port-hero-3 { min-height: 360px; }
    .port-hero-1 h2, .port-hero-2 h2, .port-hero-3 h2 { font-size: 1.4rem; }
    .port-nav-links-1, .port-nav-links-2, .port-nav-links-3 { display: none; }
    .port-food-grid-1 { grid-template-columns: 1fr; }
    .port-results { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    .cs-top { grid-template-columns: 1fr; }
    .cs-before { border-right: none; border-bottom: 1px solid var(--border); }
    .cs-bottom { flex-direction: column; text-align: center; }

    .comp-grid { grid-template-columns: 1fr; gap: 20px; }
    .comp-vs { display: none; }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
}
