/* ===================================================
   RinglyAI — Premium Landing Page Styles
   =================================================== */
:root {
    --bg-deep: #050510;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #f0f0f5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-pink: #a855f7;
    --gradient-primary: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-glow: linear-gradient(135deg, #7c3aed, #a855f7, #06b6d4);
    --success: #22c55e;
    --error: #ef4444;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-glow: 0 0 40px rgba(124, 58, 237, .3), 0 0 80px rgba(6, 182, 212, .15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative
}

/* Animated BG Orbs */
.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4;
    animation: float 20s ease-in-out infinite
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-duration: 25s
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    top: 50%;
    right: -15%;
    animation-duration: 30s;
    animation-delay: -5s
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: -10s
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    top: 30%;
    left: 50%;
    animation-duration: 28s;
    animation-delay: -15s;
    opacity: .25
}

@keyframes float {

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

    25% {
        transform: translate(80px, -60px) scale(1.1)
    }

    50% {
        transform: translate(-40px, 80px) scale(.95)
    }

    75% {
        transform: translate(60px, 40px) scale(1.05)
    }
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

section {
    padding: 100px 0;
    position: relative
}

.glass {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all .3s ease;
    background: transparent
}

.navbar.scrolled {
    background: rgba(5, 5, 16, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary)
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.5px
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 36px
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: .925rem;
    font-weight: 500;
    transition: color .3s ease
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform .3s ease, box-shadow .3s ease !important
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow)
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all .3s ease
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center
}

.hero-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, .12);
    border: 1px solid rgba(124, 58, 237, .25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--accent-pink);
    margin-bottom: 32px
}

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

@keyframes pulse-badge {

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

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 800px
}

.gradient-text {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s ease-in-out infinite
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center
    }

    50% {
        background-position: 100% center
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.8
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px
}

.hero-note {
    font-size: .8rem;
    color: var(--text-muted);
    letter-spacing: .5px
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow)
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-glow);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: glow-pulse 3s ease-in-out infinite
}

@keyframes glow-pulse {

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

    50% {
        opacity: .5;
        transform: scale(1.05)
    }
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem
}

.btn-full {
    width: 100%
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px)
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px)
}

/* Phone Mockup */
.hero-visual {
    width: 100%;
    max-width: 320px
}

.phone-mockup {
    background: linear-gradient(145deg, rgba(124, 58, 237, .15), rgba(6, 182, 212, .1));
    border: 1px solid var(--glass-border);
    border-radius: 36px;
    padding: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4), var(--shadow-glow)
}

.phone-screen {
    background: rgba(10, 10, 30, .9);
    border-radius: 26px;
    padding: 40px 24px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center
}

.call-ui {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.call-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem
}

.call-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: conic-gradient(from 0deg, #7c3aed, #06b6d4, #a855f7, #7c3aed) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin-ring 4s linear infinite
}

@keyframes spin-ring {
    to {
        transform: rotate(360deg)
    }
}

.call-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem
}

.call-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--success)
}

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

.call-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 32px;
    margin-top: 8px
}

.call-wave span {
    display: block;
    width: 3px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite
}

.call-wave span:nth-child(1) {
    animation-delay: 0s
}

.call-wave span:nth-child(2) {
    animation-delay: .1s
}

.call-wave span:nth-child(3) {
    animation-delay: .2s
}

.call-wave span:nth-child(4) {
    animation-delay: .3s
}

.call-wave span:nth-child(5) {
    animation-delay: .4s
}

.call-wave span:nth-child(6) {
    animation-delay: .5s
}

.call-wave span:nth-child(7) {
    animation-delay: .4s
}

.call-wave span:nth-child(8) {
    animation-delay: .3s
}

.call-wave span:nth-child(9) {
    animation-delay: .2s
}

.call-wave span:nth-child(10) {
    animation-delay: .1s
}

@keyframes wave {

    0%,
    100% {
        height: 8px;
        opacity: .5
    }

    50% {
        height: 28px;
        opacity: 1
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 16px
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.feature-card {
    padding: 36px 28px;
    text-align: left;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity .4s ease
}

.feature-card:hover::before {
    opacity: 1
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, .15), rgba(6, 182, 212, .1));
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--accent-cyan)
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px
}

.feature-card p {
    font-size: .925rem;
    color: var(--text-secondary);
    line-height: 1.7
}

/* Steps */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px
}

.step-card {
    flex: 1;
    max-width: 320px;
    padding: 40px 28px;
    text-align: center;
    border-radius: var(--radius-lg)
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    opacity: .7
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px
}

.step-card p {
    font-size: .925rem;
    color: var(--text-secondary);
    line-height: 1.7
}

.step-connector {
    flex-shrink: 0
}

/* CTA */
.cta-section {
    padding: 80px 0 120px
}

.cta-card {
    text-align: center;
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, .12), transparent 70%);
    pointer-events: none
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 16px;
    position: relative
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    position: relative
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--text-secondary)
}

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

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 12px
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease
}

.toggle-btn:hover {
    border-color: var(--glass-border-hover);
    color: var(--text-primary)
}

.toggle-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white
}

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

.pricing-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    flex-direction: column
}

.pricing-card:hover {
    transform: translateY(-4px)
}

.pricing-popular {
    border-color: var(--accent-purple) !important;
    box-shadow: 0 0 30px rgba(124, 58, 237, .15), 0 0 60px rgba(6, 182, 212, .08)
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
    white-space: nowrap
}

.plan-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, .1);
    border: 1px solid rgba(6, 182, 212, .2);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content
}

.plan-badge-primary {
    color: var(--accent-pink);
    background: rgba(124, 58, 237, .1);
    border-color: rgba(124, 58, 237, .2)
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px
}

.plan-desc {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 44px
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 8px
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px
}

.price-period {
    font-size: .95rem;
    color: var(--text-muted);
    margin-left: 4px
}

.plan-billing {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 28px
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex: 1
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: .9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.plan-features li:last-child {
    border-bottom: none
}

.plan-features .check {
    color: var(--success);
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center
}

.plan-features .x {
    color: var(--text-muted);
    font-size: .85rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center
}

.plan-features .excluded {
    opacity: .5
}

.plan-overage {
    font-size: .75rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    position: relative;
    z-index: 1
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center
}

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

.footer-contact p {
    color: var(--text-secondary);
    font-size: .95rem
}

.footer-contact a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color .3s ease
}

.footer-contact a:hover {
    color: var(--accent-pink)
}

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

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    padding: 20px
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal {
    width: 100%;
    max-width: 460px;
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
    transform: translateY(30px) scale(.95);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    background: rgba(15, 15, 35, .95) !important;
    border: 1px solid var(--glass-border)
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1)
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all .3s ease
}

.modal-close:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--text-primary)
}

.modal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: .925rem;
    text-align: center;
    margin-bottom: 28px
}

/* Form */
.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all .3s ease;
    outline: none
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .15)
}

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

.phone-input-wrapper {
    display: flex;
    gap: 10px
}

.phone-input-wrapper select {
    width: 120px;
    flex-shrink: 0;
    cursor: pointer
}

.phone-input-wrapper input {
    flex: 1
}

.consent-group {
    margin-top: 4px
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative
}

.consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0
}

.consent-checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border-hover);
    border-radius: 4px;
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    margin-top: 2px
}

.consent-label input:checked~.consent-checkmark {
    background: var(--gradient-primary);
    border-color: var(--accent-purple)
}

.consent-label input:checked~.consent-checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: 700
}

.consent-label input:focus-visible~.consent-checkmark {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .3)
}

.consent-text {
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.6
}

.consent-text a {
    color: var(--accent-cyan);
    text-decoration: none
}

.consent-text a:hover {
    text-decoration: underline
}

.modal-disclaimer {
    text-align: center;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 16px
}

.modal-disclaimer a {
    color: var(--accent-cyan);
    text-decoration: none
}

.modal-disclaimer a:hover {
    text-decoration: underline
}

.footer-bottom a {
    color: var(--accent-cyan);
    text-decoration: none
}

.footer-bottom a:hover {
    text-decoration: underline
}

.modal-success,
.modal-error {
    text-align: center
}

.success-icon,
.error-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

.success-icon svg {
    animation: pop-in .5s cubic-bezier(.4, 0, .2, 1)
}

@keyframes pop-in {
    0% {
        transform: scale(0);
        opacity: 0
    }

    60% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.spinner {
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.4, 0, .2, 1)
}

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

/* Responsive */
@media(max-width:992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps-grid {
        flex-direction: column
    }

    .step-connector {
        transform: rotate(90deg)
    }

    .step-card {
        max-width: 100%
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 30, .98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        border-left: 1px solid var(--glass-border);
        transition: right .4s cubic-bezier(.4, 0, .2, 1)
    }

    .nav-links.active {
        right: 0
    }

    .mobile-toggle {
        display: flex;
        z-index: 101
    }

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

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0
    }

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

    .hero {
        padding-top: 120px;
        min-height: auto
    }

    .features-grid {
        grid-template-columns: 1fr
    }

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

    .pricing-toggle {
        flex-wrap: wrap
    }

    .cta-card {
        padding: 48px 24px
    }

    .cta-trust {
        flex-direction: column;
        gap: 12px
    }

    .modal {
        padding: 32px 24px
    }

    .phone-input-wrapper {
        flex-direction: column
    }

    .phone-input-wrapper select {
        width: 100%
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 2.2rem
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem
    }
}