/* ======================================
   BAKIPY — Design System
   Dark premium · Teal accents · Inter
   ====================================== */

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

:root {
    --bg: #0A0B0F;
    --bg-light: #111218;
    --bg-card: #15161D;
    --bg-card-hover: #1C1D26;
    --surface: #1E1F28;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --text: #F1F1F4;
    --text-secondary: #9B9CAA;
    --text-muted: #6B6C7A;

    --accent: #0D9488;
    --accent-light: #14B8A6;
    --accent-glow: rgba(13, 148, 136, 0.25);
    --accent-subtle: rgba(13, 148, 136, 0.08);

    --red: #EF4444;
    --orange: #F97316;
    --yellow: #EAB308;
    --gray-bar: #6B7280;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px var(--accent-glow);

    --container: 1100px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--surface);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Utility ---------- */
.text-accent {
    color: var(--accent-light);
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 11, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.navbar-logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    z-index: 1001;
    color: var(--text);
    transition: var(--transition);
}

.navbar-logo:hover {
    color: var(--accent-light);
}

.navbar-links {
    display: flex;
    gap: 32px;
}

.navbar-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.navbar-cta:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-glow);
}

/* Burger */
.navbar-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.navbar-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: var(--transition);
}

.navbar-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-burger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: rgba(10, 11, 15, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
}

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

.mobile-menu a {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--accent);
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-top: 8px;
}

/* ======================================
   HERO
   ====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-glow--1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-glow--2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: var(--accent-subtle);
    border: 1px solid rgba(13, 148, 136, 0.2);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--accent-light), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 28px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

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

.hero-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-hint a {
    color: var(--text-muted);
    animation: bounce 2s ease-in-out infinite;
    display: block;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ======================================
   BUTTONS
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.btn--ghost:hover {
    background: var(--bg-card);
    color: var(--text);
    border-color: var(--border-light);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ======================================
   SECTIONS
   ====================================== */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section--cta {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
    padding: 140px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--accent-subtle);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

/* ======================================
   DONUT CHART
   ====================================== */
.cost-chart-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 750px;
    margin: 0 auto;
}

.donut-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-segment {
    fill: none;
    stroke-width: 28;
    stroke-linecap: butt;
    stroke-dasharray: 0 502.65;
    transition: stroke-dasharray 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colors per segment */
.donut-seg--1 {
    stroke: #EF4444;
}

.donut-seg--2 {
    stroke: #F97316;
}

.donut-seg--3 {
    stroke: #EAB308;
}

.donut-seg--4 {
    stroke: #6B7280;
}

.donut-seg--5 {
    stroke: var(--accent-light);
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-center-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -0.02em;
}

.donut-center-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.3;
}

/* Legend */
.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-item--1 .legend-dot {
    background: #EF4444;
}

.legend-item--2 .legend-dot {
    background: #F97316;
}

.legend-item--3 .legend-dot {
    background: #EAB308;
}

.legend-item--4 .legend-dot {
    background: #6B7280;
}

.legend-item--highlight .legend-dot {
    background: var(--accent-light);
}

.legend-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    flex: 1;
}

.legend-pct {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    min-width: 36px;
    text-align: right;
}

/* Highlighted developer row */
.legend-item--highlight {
    padding: 10px 14px;
    background: var(--accent-subtle);
    border: 1px solid rgba(13, 148, 136, 0.15);
    border-radius: var(--radius);
    margin-top: 4px;
}

.legend-item--highlight .legend-label {
    color: var(--accent-light);
    font-weight: 600;
}

.legend-item--highlight .legend-pct {
    color: var(--accent-light);
    font-size: 1rem;
}

.cost-punchline {
    text-align: center;
    margin-top: 40px;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.7;
}

.cost-punchline strong {
    color: var(--red);
}

/* ======================================
   SOLUTION GRID
   ====================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.solution-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.solution-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--accent-subtle);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: var(--accent-light);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================================
   INCLUDED GRID
   ====================================== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.included-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.included-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.included-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--accent-subtle);
    color: var(--accent-light);
    margin-bottom: 16px;
}

.included-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.included-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ======================================
   PORTFOLIO — Horizontal scroll
   ====================================== */
.section-header--sub {
    margin-top: 72px;
}

/* Scroll container */
.marquee {
    position: relative;
    width: 100%;
    padding: 8px 0 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.marquee::-webkit-scrollbar {
    display: none;
}

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

/* Card */
.pf-card {
    position: relative;
    flex-shrink: 0;
    width: 380px;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pf-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.2);
}

/* Card image */
.pf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, var(--bg-card), var(--surface));
}

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

/* Bottom overlay */
.pf-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 14px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.pf-card-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    flex: 1;
    min-width: 120px;
}

/* Badge */
.pf-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pf-card-badge--live {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
}

.pf-card-badge--study {
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: #a5b4fc;
}

/* Tag */
.pf-card-tag {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}


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

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.pricing-card {
    position: relative;
    max-width: 440px;
    width: 100%;
    padding: 48px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

.pricing-card-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: var(--accent);
    opacity: 0.12;
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    position: relative;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 12px;
}

.pricing-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, var(--text) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-trial {
    font-size: 0.9rem;
    color: var(--accent-light);
    font-weight: 500;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--accent-light);
}

.pricing-cta {
    margin-bottom: 16px;
    padding: 18px 24px;
    font-size: 1rem;
}

.pricing-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- Comparaison ---------- */
.compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.compare-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 40px;
    border-radius: var(--radius-lg);
    min-width: 200px;
}

.compare-item--them {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.compare-item--us {
    background: var(--accent-subtle);
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.compare-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.compare-price {
    font-size: 2rem;
    font-weight: 800;
}

.compare-item--them .compare-price {
    color: var(--red);
}

.compare-item--us .compare-price {
    color: var(--accent-light);
}

.compare-detail {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.compare-vs {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ======================================
   CTA SECTION
   ====================================== */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

.cta-actions {
    margin-bottom: 20px;
}

.cta-email {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-email a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta-email a:hover {
    color: var(--accent);
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
}

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

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

.footer-logo {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    display: inline-block;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

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

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

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

/* ======================================
   RESPONSIVE
   ====================================== */

/* Tablet */
@media (max-width: 900px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .navbar-links,
    .navbar-cta {
        display: none;
    }

    .navbar-burger {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .section--cta {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .cost-chart-layout {
        flex-direction: column;
        gap: 40px;
    }

    .donut-wrapper {
        width: 220px;
        height: 220px;
    }

    .compare {
        flex-direction: column;
        gap: 16px;
    }

    .compare-item {
        width: 100%;
        min-width: auto;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .pf-card {
        width: 300px;
        height: 200px;
    }

    .section-header--sub {
        margin-top: 56px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-number {
        font-size: 4rem;
    }
}