/* ===== V2 LAYOUT =====
   Navbar, Footer, Containers, Grids, Sections
   ============================================ */

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(6, 7, 13, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-primary);
    font-size: 1rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

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

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links .btn {
    margin-left: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 2rem;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Backgrounds */
.how-it-works,
.scaling-section,
.comparison-section,
.freedom-section {
    background: var(--bg-secondary);
}

.why-ift-section,
.backing-section,
.cta-section,
.testimonials-section,
.pricing-section {
    background: var(--bg-primary);
}

.why-ift-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 2rem 100px;
}

.hero-sm {
    min-height: auto;
    padding: 180px 2rem 80px;
}

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

#candlestickCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

/* Ambient Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--cyan);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    bottom: -150px;
    left: -100px;
    animation-delay: -10s;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    top: 50%;
    left: 50%;
    animation-delay: -5s;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, transparent 0%, var(--bg-primary) 100%);
    z-index: 2;
}

.hero-grid {
    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 80% 50% at 50% 50%, black 0%, transparent 70%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .line {
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
}

.hero-metric {
    position: relative;
}

.hero-metric::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-metric:last-child::after {
    display: none;
}

.hero-metric-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-metric-value.cyan { color: var(--cyan); }
.hero-metric-value.purple { color: var(--purple); }
.hero-metric-value.green { color: var(--green); }

.hero-metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

/* ===== ORBITAL VISUAL (Hero Visual) ===== */
.orbital-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.orbital-center {
    position: relative;
    width: 340px;
    height: 340px;
    flex-shrink: 0;
}

.orbital-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.orbital-core-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbital-core-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

.orbital-ring {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbital-ring-1 {
    width: 160px;
    height: 160px;
    border-color: rgba(0, 240, 255, 0.3);
}

.orbital-ring-2 {
    width: 230px;
    height: 230px;
    border-color: rgba(168, 85, 247, 0.2);
    animation: orbitalPulse 3s infinite;
}

.orbital-ring-3 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 240, 255, 0.1);
    animation: orbitalPulse 3s infinite 0.5s;
}

@keyframes orbitalPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.7; }
}

.orbital-node {
    position: absolute;
    width: 80px;
    padding: 0.65rem 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.orbital-node:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.15);
    transform: translateX(-50%) translateY(-5px) !important;
}

.orbital-node-1 {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatNode 4s ease-in-out infinite;
}

.orbital-node-2 {
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    animation: floatNodeY 4s ease-in-out infinite 1s;
}

.orbital-node-3 {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatNode 4s ease-in-out infinite 2s;
}

.orbital-node-4 {
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
    animation: floatNodeY 4s ease-in-out infinite 3s;
}

@keyframes floatNode {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes floatNodeY {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-8px); }
}

.orbital-node-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cyan);
}

.orbital-node-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
}

/* Orbital mobile adjustments */
@media (max-width: 768px) {
    .orbital-visual {
        min-height: 320px;
    }

    .orbital-center {
        width: 280px;
        height: 280px;
    }

    .orbital-core-value {
        font-size: 2.25rem;
    }

    .orbital-core-label {
        font-size: 0.7rem;
    }

    .orbital-ring-1 { width: 130px; height: 130px; }
    .orbital-ring-2 { width: 190px; height: 190px; }
    .orbital-ring-3 { width: 250px; height: 250px; }

    .orbital-node {
        width: 65px;
        padding: 0.5rem 0.35rem;
    }

    .orbital-node-value {
        font-size: 0.9rem;
    }

    .orbital-node-label {
        font-size: 0.5rem;
    }

    .orbital-node-2 { right: -35px; }
    .orbital-node-4 { left: -35px; }
}

/* ===== GRIDS ===== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.freedom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

/* ===== SCALING SECTION ===== */
.tier-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tier-btn {
    padding: 0.875rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-btn:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
}

.tier-btn.active {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.tier-btn.featured {
    /* Only highlight when active, not by default */
}

.tier-btn.featured.active {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(168, 85, 247, 0.08);
    box-shadow: 0 0 20px var(--purple-glow);
}

.tier-btn .tier-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.tier-btn.active .tier-label {
    color: inherit;
    opacity: 0.7;
}

.scaling-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scaling-summary-item {
    text-align: center;
}

.scaling-summary-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.scaling-summary-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cyan);
}

.scaling-summary-value.purple {
    color: var(--purple);
}

.scaling-summary-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.scaling-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    transition: transform 0.2s ease;
}

.scaling-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.scaling-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.scaling-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scaling-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.scaling-highlight:hover {
    border-color: var(--border-accent);
}

.scaling-highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.scaling-highlight-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.scaling-highlight-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.scaling-visual {
    position: relative;
    overflow: visible;
}

.scaling-stages {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 460px;
    padding: 50px 1rem 0;
    overflow: visible;
}

.scaling-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 80px;
}

.scaling-bar {
    width: 100%;
    max-width: 50px;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.scaling-stage:nth-child(1) .scaling-bar {
    height: 60px;
    background: linear-gradient(180deg, var(--cyan) 0%, rgba(0, 240, 255, 0.3) 100%);
}
.scaling-stage:nth-child(2) .scaling-bar {
    height: 100px;
    background: linear-gradient(180deg, var(--cyan) 0%, rgba(0, 240, 255, 0.3) 100%);
}
.scaling-stage:nth-child(3) .scaling-bar {
    height: 160px;
    background: linear-gradient(180deg, #8b5cf6 0%, rgba(139, 92, 246, 0.3) 100%);
}
.scaling-stage:nth-child(4) .scaling-bar {
    height: 230px;
    background: linear-gradient(180deg, var(--purple) 0%, rgba(168, 85, 247, 0.3) 100%);
}
.scaling-stage:nth-child(5) .scaling-bar {
    height: 320px;
    background: linear-gradient(180deg, var(--green) 0%, rgba(34, 197, 94, 0.3) 100%);
}

/* Stage 6 - Institutional Trader - Special Highlight */
.scaling-stage:nth-child(6) .scaling-bar {
    height: 380px;
    background: linear-gradient(180deg, #ffd700 0%, rgba(255, 215, 0, 0.4) 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
    animation: stage6Pulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

@keyframes stage6Pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4), 0 0 80px rgba(255, 215, 0, 0.2);
    }
}

.scaling-stage:nth-child(6) .scaling-info-split {
    color: #ffd700;
    font-weight: 700;
}

.scaling-stage:nth-child(6) .scaling-info-label {
    color: #ffd700;
    font-weight: 600;
}

.scaling-stage:nth-child(6) .scaling-amount {
    color: #ffd700;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.6);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 1 !important;
}

.stage-6-special .scaling-info-split {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scaling-stage:hover .scaling-bar {
    filter: brightness(1.2);
    transform: scaleY(1.05);
}

.scaling-amount {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--text-primary);
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.scaling-info {
    margin-top: 1rem;
    text-align: center;
}

.scaling-info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.scaling-info-split {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 50%);
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 2rem 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

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

.footer-disclaimer {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-disclaimer-section {
    margin-bottom: 1.5rem;
}

.footer-disclaimer-section:last-child {
    margin-bottom: 0;
}

.footer-disclaimer h5 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-disclaimer h5 svg {
    color: var(--cyan);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-disclaimer a {
    color: var(--cyan);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-disclaimer a:hover {
    opacity: 0.8;
}

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-partner svg {
    color: var(--cyan);
}

/* Minimal Footer for Onboarding */
.footer-minimal {
    padding: 2rem;
    background: transparent;
    border-top: 1px solid var(--border);
}

.footer-minimal .footer-container {
    text-align: center;
}

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

/* ===== WHY IFT HEADER ===== */
.why-ift-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-ift-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(0, 240, 255, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.why-ift-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.why-ift-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

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

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

    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        min-height: 350px;
    }

    .orbital-center {
        width: 300px;
        height: 300px;
    }

    .orbital-ring-1 { width: 140px; height: 140px; }
    .orbital-ring-2 { width: 200px; height: 200px; }
    .orbital-ring-3 { width: 260px; height: 260px; }

    .orbital-core-value {
        font-size: 2.5rem;
    }

    .orbital-node {
        width: 70px;
        padding: 0.5rem 0.4rem;
    }

    .orbital-node-value {
        font-size: 0.95rem;
    }

    .orbital-node-label {
        font-size: 0.55rem;
    }

    .orbital-node-2 { right: -40px; }
    .orbital-node-4 { left: -40px; }

    .steps-container,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scaling-wrapper {
        grid-template-columns: 1fr;
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .freedom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 120px 1rem 80px;
    }

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

    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-metric::after {
        display: none;
    }

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

    .trust-bar-container {
        justify-content: center;
    }

    section {
        padding: 80px 1rem;
    }

    .steps-container,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .freedom-grid {
        grid-template-columns: 1fr;
    }

    .scaling-stages {
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 1rem;
        font-size: 0.85rem;
    }

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