/* =====================================================
   SusieFin Homepage - Premium CSS Styles
   Modern, Clean, Professional Design
   ===================================================== */

/* =====================================================
   1. CSS Variables & Root Styles
   ===================================================== */
:root {
    /* Primary Colors */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    
    /* Secondary Colors */
    --secondary: #06B6D4;
    --secondary-dark: #0891B2;
    
    /* Neutral Colors */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 15px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =====================================================
   2. Base & Reset Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   3. Utility Classes
   ===================================================== */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    color: var(--white);
}

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

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

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

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

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

/* =====================================================
   4. Navbar Styles
   ===================================================== */
.navbar {
    padding: 20px 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white) !important;
}

.brand-icon {
    font-size: 28px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.btn-nav {
    padding: 10px 24px;
    border-radius: var(--radius-full);
}

/* =====================================================
   5. Hero Section
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-bg-shapes .shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: #EC4899;
    bottom: -100px;
    left: -100px;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 540px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Phone Mockup */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ECE5DD;
    border-radius: 30px;
    overflow: hidden;
}

.chat-demo {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #075E54;
    color: var(--white);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-name {
    font-weight: 600;
    font-size: 16px;
}

.chat-status {
    font-size: 12px;
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    position: relative;
    line-height: 1.4;
}

.message.received {
    background: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message.sent {
    background: #DCF8C6;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message .time {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    text-align: right;
    margin-top: 4px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.floating-card .card-icon {
    font-size: 28px;
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .card-text strong {
    font-size: 14px;
    color: var(--dark);
}

.floating-card .card-text span {
    font-size: 12px;
    color: var(--gray-500);
}

.floating-card.card-1 {
    top: 60px;
    right: 0;
}

.floating-card.card-2 {
    bottom: 80px;
    left: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* =====================================================
   6. Features Section
   ===================================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.feature-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-description,
.feature-card.featured .feature-list li {
    color: var(--white);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-card.featured .feature-list i {
    color: var(--white);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 16px;
    background: var(--warning);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 14px;
}

.feature-list i {
    color: var(--success);
    font-size: 12px;
}

/* =====================================================
   7. How It Works Section
   ===================================================== */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 72px;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-description {
    color: var(--gray-500);
    font-size: 16px;
}

/* =====================================================
   8. Susie Section
   ===================================================== */
.susie-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.susie-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.susie-avatar {
    position: relative;
}

.avatar-circle {
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.avatar-emoji {
    font-size: 100px;
}

.avatar-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ring {
    position: absolute;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 3s infinite ease-out;
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation-delay: 0s;
}

.ring-2 {
    width: 360px;
    height: 360px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 440px;
    height: 440px;
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

.susie-traits {
    position: absolute;
}

.trait {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
}

.trait-icon {
    font-size: 20px;
}

.trait-1 {
    top: 20px;
    right: 20px;
}

.trait-2 {
    bottom: 100px;
    left: -20px;
}

.trait-3 {
    bottom: 20px;
    right: 40px;
}

.susie-content {
    padding-left: 40px;
}

.susie-description {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.susie-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.susie-feature {
    display: flex;
    gap: 16px;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0;
}

/* =====================================================
   9. Pricing Section
   ===================================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pricing-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-500);
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
}

.plan-price .period {
    font-size: 16px;
    color: var(--gray-500);
}

.plan-description {
    color: var(--gray-500);
    font-size: 14px;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
}

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

.plan-features li i {
    font-size: 12px;
}

.plan-features li .fa-check {
    color: var(--success);
}

.plan-features li .fa-times {
    color: var(--gray-400);
}

.plan-features li.disabled {
    color: var(--gray-400);
}

/* =====================================================
   10. Testimonials Section
   ===================================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 16px;
}

.testimonial-rating i {
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
}

.author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

/* =====================================================
   11. FAQ Section
   ===================================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.accordion-item {
    border: none;
    background: var(--white);
    border-radius: var(--radius-md) !important;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    padding: 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--white);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B5CF6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =====================================================
   12. CTA Section
   ===================================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.cta-card {
    position: relative;
    background: var(--primary-gradient);
    padding: 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

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

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-shapes .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* =====================================================
   13. Footer Section
   ===================================================== */
.footer-section {
    background: var(--dark);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    font-size: 28px;
    margin-right: 10px;
}

.footer-description {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* =====================================================
   14. Responsive Styles
   ===================================================== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 991.98px) {
    /* Mobile Menu Fix - Background sólido para legibilidade */
    .navbar {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
    }
    
    .navbar-collapse {
        background: var(--dark);
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-xl);
    }
    
    .navbar-collapse .navbar-nav {
        gap: 5px;
    }
    
    .navbar-collapse .nav-link {
        padding: 12px 16px !important;
        border-radius: var(--radius-sm);
        transition: var(--transition-fast);
    }
    
    .navbar-collapse .nav-link:hover {
        background: rgba(139, 92, 246, 0.1);
    }
    
    .navbar-collapse .btn-nav {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 60px;
    }
    
    .phone-mockup {
        width: 260px;
        height: 540px;
    }
    
    .floating-card.card-1 {
        top: 20px;
        right: 10px;
    }
    
    .floating-card.card-2 {
        bottom: 40px;
        left: 10px;
    }
    
    .susie-content {
        padding-left: 0;
        margin-top: 60px;
        text-align: center;
    }
    
    .susie-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .trait-1, .trait-2, .trait-3 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 10px;
    }
    
    .susie-traits {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 500px;
    }
    
    .floating-card {
        padding: 12px 16px;
    }
    
    .floating-card .card-icon {
        font-size: 22px;
    }
    
    .step-number {
        font-size: 56px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .avatar-circle {
        width: 150px;
        height: 150px;
    }
    
    .avatar-emoji {
        font-size: 70px;
    }
    
    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 280px; height: 280px; }
    .ring-3 { width: 340px; height: 340px; }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand .brand-text {
        font-size: 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .plan-price .amount {
        font-size: 40px;
    }
}
