/* ═══════════════════════════════════════
   AUTOFLOW AI — Landing Page Styles
   21st.dev inspired design system
═══════════════════════════════════════ */

/* ── BASE ── */
.landing-body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-primary);
    font-family:
        "Inter",
        -apple-system,
        sans-serif;
    overflow-x: hidden;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
/* ── SECTION SHARED ── */
.section-badge {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
[data-theme="dark"] .section-badge {
    background: #252248;
    color: #c4bfff;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
}
.section-sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 0 48px;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.landing-nav.nav-scrolled {
    background: var(--card-bg);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-container {
 max-width: 1280px;
     margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-brand-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9b93ff, #6c63d4);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(127, 119, 221, 0.35);
}
.nav-brand-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 7px 14px;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s;
}
.nav-link:hover {
    background: var(--page-bg);
    color: var(--text-primary);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-theme-toggle {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid var(--card-border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.15s;
}
.nav-theme-toggle:hover {
    background: var(--page-bg);
}
.nav-login {
    padding: 7px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.15s;
}
.nav-login:hover {
    color: var(--text-primary);
    background: var(--page-bg);
}
.nav-cta {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--brand);
    border-radius: 9px;
    text-decoration: none;
    transition: background 0.2s;
}
.nav-cta:hover {
    background: var(--btn-primary-hover);
    color: #fff;
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.12;
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: #7f77dd;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: #5dcaa5;
    bottom: 0;
    right: -100px;
}
[data-theme="dark"] .hero-glow {
    opacity: 0.18;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-weight: 500;
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #639922;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* TITLE */
.hero-title {
    font-size: 64px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 20px;
}
.hero-title-gradient {
    background: linear-gradient(135deg, #9b93ff 0%, #7f77dd 50%, #5dcaa5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}

/* CTA */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    padding: 13px 26px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.15s;
    box-shadow: 0 4px 20px rgba(127, 119, 221, 0.35);
}
.hero-btn-primary:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-1px);
    color: #fff;
}
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 13px 26px;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--card-border);
    transition: all 0.2s;
}
.hero-btn-secondary:hover {
    background: var(--page-bg);
    color: var(--text-primary);
}

/* PROOF */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
}
.proof-avatars {
    display: flex;
}
.proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid var(--card-bg);
}
.proof-avatar:first-child {
    margin-left: 0;
}
.proof-stars {
    color: #ef9f27;
    font-size: 13px;
    margin-bottom: 2px;
}
.proof-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* PREVIEW */
.hero-preview {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-preview-bar {
    background: var(--page-bg);
    border-bottom: 1px solid var(--card-border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.preview-dots {
    display: flex;
    gap: 6px;
}
.pd {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.pd-red {
    background: #e24b4a;
}
.pd-yellow {
    background: #ef9f27;
}
.pd-green {
    background: #639922;
}
.preview-url {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 3px 12px;
    margin: 0 auto;
}
.hero-preview-body {
    display: flex;
}

/* MOCK SIDEBAR */
.mock-sidebar {
    width: 160px;
    background: #1e1b3a;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-shrink: 0;
}
.mock-sb-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
}
.mock-sb-icon {
    width: 20px;
    height: 20px;
    background: #7f77dd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mock-nav-item {
    padding: 7px 10px;
    font-size: 11px;
    color: #6b6890;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.active-mock {
    background: #252248;
    color: #c4bfff;
}
.mock-badge {
    background: #2e2a55;
    color: #9b93ff;
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 10px;
}
.mock-badge-green {
    background: #1a2e0a;
    color: #97c459;
}

/* MOCK CONTENT */
.mock-content {
    flex: 1;
    padding: 14px;
    background: #f8f7fd;
}
[data-theme="dark"] .mock-content {
    background: #110f27;
}
.mock-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.mock-stat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 10px;
}
.mock-stat-label {
    font-size: 9px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.mock-stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}
.mock-activity {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px;
}
.mock-activity-title {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.mock-activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--card-border);
}
.mock-activity-item:last-child {
    border-bottom: none;
}
.mock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mock-activity-text {
    flex: 1;
    font-size: 11px;
    color: var(--text-primary);
}
.mock-activity-badge {
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 500;
}
.mock-activity-badge.success {
    background: #eaf3de;
    color: #3b6d11;
}

/* ══════════════════════════════════════
   LOGOS SECTION
══════════════════════════════════════ */
.logos-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}
.logos-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.logo-item {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.5px;
    opacity: 0.5;
}

/* ══════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════ */
.features-section {
    padding: 100px 0;
    text-align: left;
}

.features-section .section-badge,
.features-section .section-title,
.features-section .section-sub {
    text-align: left;
    margin-left: 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    text-align: left;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition:
        border-color 0.2s,
        transform 0.2s;
}
.feature-card:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
}
.feature-card-large {
    grid-column: span 2;
}
.feature-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fi-purple {
    background: #eeedfe;
}
.fi-blue {
    background: #e6f1fb;
}
.fi-green {
    background: #eaf3de;
}
.fi-amber {
    background: #faeeda;
}
[data-theme="dark"] .fi-purple {
    background: #252248;
}
[data-theme="dark"] .fi-blue {
    background: #0a1e35;
}
[data-theme="dark"] .fi-green {
    background: #1a2e0a;
}
[data-theme="dark"] .fi-amber {
    background: #2e1f08;
}

.feature-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}
.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FEATURE VISUAL */
.feature-visual {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}
.fv-prompt,
.fv-output {
    flex: 1;
    background: var(--page-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px;
}
.fv-prompt-label,
.fv-output-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}
.fv-prompt-text,
.fv-output-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}
.fv-output {
    border-color: #c4c1f0;
}
[data-theme="dark"] .fv-output {
    border-color: #534ab7;
}
.fv-output .fv-output-label {
    color: var(--brand);
}
.fv-output .fv-output-text {
    color: var(--text-primary);
}

/* SECURITY BADGES */
.feature-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fsb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--page-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.hiw-section {
    padding: 100px 0;
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    text-align: left;
}

.hiw-section .section-badge,
.hiw-section .section-title,
.hiw-section .section-sub {
    text-align: left;
    margin-left: 0;
}
.hiw-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.hiw-step-card {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: var(--page-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
}
.hiw-step-num {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.hiw-step-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}
.hiw-step-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}
.hiw-step-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.hiw-connector {
    display: flex;
    align-items: center;
    padding-top: 50px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testimonial-card-featured {
    border: 2px solid var(--brand);
    background: var(--brand-light);
}
[data-theme="dark"] .testimonial-card-featured {
    background: #1a1736;
}
.testimonial-stars {
    color: #ef9f27;
    font-size: 14px;
}
.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}
.ta-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}
.ta-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ══════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════ */
.pricing-section {
    padding: 100px 0;
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    text-align: left;
}

.pricing-section .section-badge,
.pricing-section .section-title,
.pricing-section .section-sub {
    text-align: left;
    margin-left: 0;
}
.landing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}
.landing-plan-card {
    background: var(--page-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.landing-plan-featured {
    background: var(--card-bg);
    border: 2px solid var(--brand);
}
.lpc-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.lpc-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.lpc-price {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -1px;
}
.lpc-price span {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}
.lpc-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}
.lpc-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.lpc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.lpc-feature::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.lpc-yes {
    color: var(--text-primary);
}
.lpc-yes::before {
    background-color: #eaf3de;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%233B6D11' stroke-width='3'/%3E%3C/svg%3E");
}
.lpc-no {
    color: var(--text-muted);
    text-decoration: line-through;
}
.lpc-no::before {
    background-color: var(--card-border);
}
.lpc-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.lpc-btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 16px rgba(127, 119, 221, 0.3);
}
.lpc-btn-primary:hover {
    background: var(--btn-primary-hover);
    color: #fff;
    transform: translateY(-1px);
}
.lpc-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}
.lpc-btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

.lpc-header { text-align: left; }
.hiw-step-card { text-align: left; }
.hiw-step-num {
    left: 20px;
    transform: none;
}
.hiw-step-icon-wrap { margin-top: 8px; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
    padding: 100px 0;
    text-align: center;
}
.cta-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-glow {
    position: absolute;
    width: 500px;
    height: 300px;
    background: var(--brand);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.cta-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin: 0 0 14px;
}
.cta-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin: 0 0 32px;
}
.cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.landing-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 240px;
}
.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flg-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.flg-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s;
}
.flg-link:hover {
    color: var(--brand);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}
.footer-tech {
    font-size: 12px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }
    .section-title {
        font-size: 28px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-large {
        grid-column: span 1;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .landing-plans-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
    .hiw-timeline {
        flex-direction: column;
        align-items: center;
    }
    .hiw-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
    .hero-preview-body {
        flex-direction: column;
    }
    .mock-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 8px;
    }
    .mock-stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .cta-actions {
        flex-direction: column;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
