/* ============================================================
   KeksGas — Global Styles
   Premium coaching-platform design (Paperbell-inspired)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- Custom Properties ---------- */
:root {
    /* Brand palette */
    --primary: #6C3CE1;
    --primary-light: #8B5CF6;
    --primary-dark: #5521C6;
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    --accent-dark: #D97706;

    /* Surfaces */
    --bg: #0F0D1A;
    --bg-section: #141122;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    /* Text */
    --text: #F1EFFA;
    --text-muted: #A09BBE;
    --text-dim: #6B6590;

    /* Gradient presets */
    --grad-hero: linear-gradient(135deg, #6C3CE1 0%, #A855F7 50%, #F59E0B 100%);
    --grad-card: linear-gradient(135deg, rgba(108, 60, 225, .15), rgba(168, 85, 247, .08));
    --grad-accent: linear-gradient(135deg, #F59E0B, #F97316);

    /* Misc */
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, .35);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --max-w: 1180px;
}

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

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

.text-gradient {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    background: rgba(108, 60, 225, .18);
    color: var(--primary-light);
    border: 1px solid rgba(108, 60, 225, .25);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .3px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--grad-accent);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(245, 158, 11, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, .5);
    color: #1a1a1a;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    padding: 0;
    color: var(--accent);
    font-weight: 600;
}

.btn-link:hover {
    color: var(--accent-light);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 13, 26, .92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    color: #fff;
}

.navbar-logo .logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}

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

.navbar-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: .95rem;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.navbar-links a:hover {
    color: #fff;
}

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

.navbar-cta {
    margin-left: 8px;
}

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

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(108, 60, 225, .25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 520px;
    width: 100%;
    border-radius: var(--radius);
    filter: drop-shadow(0 20px 60px rgba(108, 60, 225, .3));
}

.hero-badge {
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stat {
    margin-top: 32px;
    font-size: .95rem;
    color: var(--text-dim);
}

.hero-stat strong {
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Logos / Social Proof ---------- */
.social-proof {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.social-proof p {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: .55;
}

.logo-row span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ---------- Feature Sections ---------- */
.section {
    padding: 100px 0;
}

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

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

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Feature rows (alternating image + text) */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse .feature-visual {
    order: 2;
}

.feature-row.reverse .feature-content {
    order: 1;
}

.feature-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--grad-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--transition);
}

.feature-visual:hover img {
    transform: scale(1.03);
}

.feature-content h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* ---------- Feature Cloud (like Paperbell's tag cloud) ---------- */
.feature-cloud {
    padding: 80px 0;
    text-align: center;
}

.cloud-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.cloud-tags span {
    padding: 10px 22px;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: default;
}

.cloud-tags span:hover {
    background: var(--bg-card-hover);
    color: var(--accent);
    border-color: rgba(245, 158, 11, .3);
    transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(108, 60, 225, .2);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
}

.testimonial-name {
    font-weight: 600;
    font-size: .9rem;
}

.testimonial-role {
    font-size: .8rem;
    color: var(--text-dim);
}

/* ---------- Pricing ---------- */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary-light);
    background: var(--grad-card);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-accent);
    color: #1a1a1a;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 100px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.pricing-period {
    color: var(--text-dim);
    font-size: .85rem;
    margin-bottom: 28px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: .92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.08rem;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

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

.faq-question .icon {
    font-size: 1.4rem;
    transition: transform var(--transition);
    color: var(--primary-light);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer-inner {
    padding: 0 0 22px;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, .12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.6rem;
    font-weight: 900;
    max-width: 680px;
    margin: 0 auto 16px;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.cta-guarantee {
    margin-top: 20px;
    font-size: .85rem;
    color: var(--text-dim);
}

/* ---------- Signup Form ---------- */
.signup-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.signup-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 36px;
    backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(108, 60, 225, .15);
    background: rgba(255, 255, 255, .06);
}

.form-group input::placeholder {
    color: var(--text-dim);
}

.form-group input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .15);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
    font-size: .85rem;
    color: var(--text-muted);
}

.form-check input[type='checkbox'] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-light);
    cursor: pointer;
    flex-shrink: 0;
}

.form-check.check-error {
    color: #ef4444;
}

.form-check a {
    color: var(--primary-light);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
}

/* ---------- Modal Popup ---------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn .3s ease;
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 25, 55, .98), rgba(20, 18, 38, .98));
    border: 1px solid rgba(108, 60, 225, .4);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(108, 60, 225, .25), 0 0 0 1px rgba(255, 255, 255, .05);
    animation: modalSlideUp .4s cubic-bezier(.22, .61, .36, 1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-icon {
    margin-bottom: 24px;
}

.modal-icon svg {
    animation: popIn .5s cubic-bezier(.22, .61, .36, 1) .2s both;
}

.modal-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #fff;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.modal-note {
    font-size: .85rem;
    color: var(--text-dim);
    margin-bottom: 28px !important;
}

.modal-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 14px 32px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------- Footer ---------- */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-top: 12px;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: .9rem;
    padding: 5px 0;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-dim);
    font-size: .82rem;
}

.footer-legal a {
    color: var(--text-dim);
    margin-left: 20px;
}

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

/* ---------- Legal Pages ---------- */
.legal-page {
    padding: 140px 0 80px;
}

.legal-page .container {
    max-width: 820px;
}

.legal-page h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--primary-light);
}

.legal-page h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 28px 0 12px;
}

.legal-page p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: .95rem;
}

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-page ol li {
    list-style: decimal;
}

.legal-page .contact-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-top: 40px;
}

.legal-page .contact-box h3 {
    margin-top: 0;
}

.legal-page .contact-box p {
    margin-bottom: 6px;
}

.legal-highlight {
    background: rgba(108, 60, 225, .1);
    border-left: 4px solid var(--primary-light);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

.legal-highlight p {
    margin-bottom: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.4, 0, .2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-flex {
        gap: 32px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .feature-row {
        gap: 40px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 380px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-row.reverse .feature-visual {
        order: 0;
    }

    .feature-row.reverse .feature-content {
        order: 0;
    }

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

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

    .cloud-tags span {
        font-size: .8rem;
        padding: 8px 16px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .footer-legal a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: .9rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(108, 60, 225, .4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 60, 225, .6);
}