/* ===== 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::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 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;
}

/* ===== TRADING DASHBOARD (Hero Visual) ===== */
.trading-dashboard {
    position: relative;
    background: linear-gradient(170deg, #0d1117 0%, #090c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    overflow: visible;
}

.trading-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
}

.td-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.td-title {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.td-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1a3a4a 0%, #0d2030 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.td-title-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}

.td-title-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.td-balance {
    text-align: right;
}

.td-balance-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.td-balance-value {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--cyan);
}

.td-chart {
    height: 180px;
    margin-bottom: 1.25rem;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 12px;
    overflow: hidden;
}

#candleChart {
    width: 100%;
    height: 100%;
}

.td-stats {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.td-stage {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(0, 240, 255, 0.02) 100%);
    border: 1px solid rgba(0, 240, 255, 0.12);
    border-radius: 12px;
    flex-shrink: 0;
}

.td-stage-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.td-stage-text {
    font-size: 0.8rem;
}

.td-stage-text strong {
    display: block;
    font-weight: 600;
    color: #fff;
}

.td-stage-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.td-stat {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    text-align: center;
}

.td-stat-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 0.15rem;
}

.td-stat-value.white {
    color: #fff;
}

.td-stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.td-notification {
    position: absolute;
    top: -12px;
    right: -16px;
    background: linear-gradient(165deg, #141820 0%, #0c0f14 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: floatNotification 4s ease-in-out infinite;
    z-index: 10;
}

.td-notif-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.td-notif-text {
    font-size: 0.8rem;
}

.td-notif-text strong {
    display: block;
    font-weight: 600;
    color: var(--cyan);
}

.td-notif-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== 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 {
    border-color: var(--purple);
}

.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;
}

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

.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%);
}

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

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

.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: none;
    }

    .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: 280px;
    }

    .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;
    }
}
