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

:root {
    --maroon: #800000;
    --maroon-dark: #5c0000;
    --maroon-light: #a00000;
    --crimson: #dc143c;
    --crimson-dark: #b91c3c;
    --maroon-glow: rgba(128, 0, 0, 0.25);
    --light-1: #ffffff;
    --light-2: #f8f9fa;
    --light-3: #f1f3f5;
    --light-4: #e9ecef;
    --light-5: #dee2e6;
    --text-dark: #1a1a1a;
    --text-primary: #2d2d2d;
    --text-muted: #6c757d;
    --border-light: rgba(0,0,0,0.08);
    --border-medium: rgba(0,0,0,0.12);
    --glass: rgba(255,255,255,0.8);
    --glass-hover: rgba(255,255,255,0.95);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px var(--maroon-glow);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-1);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: blur(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo h2 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.nav-logo h2 span {
    color: var(--maroon);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--maroon);
}

.nav-link.nav-cta {
    background: var(--maroon);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-link.nav-cta:hover {
    background: var(--maroon-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-1) 0%, var(--light-2) 100%);
    padding: 100px 0 60px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--maroon);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 6s ease-in-out infinite;
}

@keyframes particle-float {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(128, 0, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(128, 0, 0, 0.1);
    border: 1px solid rgba(128, 0, 0, 0.2);
    color: var(--maroon);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

@keyframes badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--maroon-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--crimson) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 480px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: var(--glass);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 1.2rem 2rem;
    width: fit-content;
}

.stat-item {
    text-align: center;
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--maroon);
}

.stat-label {
    width: 100%;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

/* Hero Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-phone {
    width: 280px;
    height: 560px;
    background: var(--light-1);
    border-radius: 36px;
    border: 2px solid var(--light-4);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 40px rgba(128, 0, 0, 0.1);
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: var(--text-dark);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.phone-screen {
    padding: 12px 16px;
    height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
}

.sms-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.sms-header-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
}

.sms-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.sms-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    line-height: 1.4;
    animation: sms-slide-in 0.5s ease-out both;
}

.sms-bubble.sent {
    background: var(--maroon);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation-delay: 0.3s;
}

.sms-bubble.sent:nth-child(3) { animation-delay: 0.9s; }

.sms-bubble.received {
    background: var(--light-3);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    animation-delay: 0.6s;
}

.sms-bubble p { margin: 0; }

.sms-time {
    display: block;
    font-size: 0.6rem;
    opacity: 0.6;
    margin-top: 4px;
    text-align: right;
}

@keyframes sms-slide-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sms-typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: var(--light-3);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    width: 60px;
    animation: sms-slide-in 0.5s ease-out both;
    animation-delay: 1.2s;
}

.sms-typing span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing-dot 1.4s infinite;
}

.sms-typing span:nth-child(2) { animation-delay: 0.2s; }
.sms-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.phone-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(128,0,0,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--maroon), transparent);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--maroon-dark);
    border-color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(128, 0, 0, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-light);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    color: var(--text-white);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--maroon);
    color: white;
    border-color: var(--maroon);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
    background: var(--light-2);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--light-1);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    background: var(--light-1);
    border-color: var(--border-medium);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.about-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== FEATURES ========== */
.features {
    background: var(--light-1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--light-1);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--light-1);
    border-color: var(--border-medium);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.feature-card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-4);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-card-number {
    color: var(--maroon);
    opacity: 0.3;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== BENEFITS ========== */
.benefits {
    background: var(--light-2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--light-1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    background: var(--light-1);
    border-color: var(--border-medium);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--light-1);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--light-1);
    border: 1px solid var(--border-light);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    background: var(--light-1);
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-card .step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--maroon);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-line {
    display: none;
}

/* ========== PRICING ========== */
.pricing {
    background: var(--light-2);
}

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

.pricing-card {
    background: var(--light-1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    background: var(--light-1);
    border-color: var(--border-medium);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--maroon);
    background: rgba(128, 0, 0, 0.05);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

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

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--maroon);
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ========== ACTIVATION NOTICE ========== */
.activation-notice {
    max-width: 700px;
    margin: 3rem auto 0;
    background: rgba(128, 0, 0, 0.05);
    border: 1px solid rgba(128, 0, 0, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-content h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.notice-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.notice-content strong {
    color: var(--maroon);
    font-weight: 700;
}

/* ========== CTA ========== */
.cta {
    background: linear-gradient(135deg, var(--light-1) 0%, var(--light-2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128,0,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--light-2);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-1);
    border: 1px solid var(--border-light);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: var(--border-medium);
    background: var(--light-1);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-card strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--light-1);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--light-2);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--text-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-logo h3 span {
    color: var(--maroon);
}

.footer-logo p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--maroon);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-container { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: var(--light-1);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active { left: 0; }

    .nav-toggle { display: flex; }

    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-stats { justify-content: center; margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-phone { width: 240px; height: 480px; }
    .hero-scroll-indicator { display: none; }

    .about-grid,
    .features-grid { grid-template-columns: 1fr; }

    .benefits-grid,
    .steps-container { grid-template-columns: 1fr; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }

    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }

    .section-header h2 { font-size: 2rem; }
    section { padding: 70px 0; }
}

@media (max-width: 480px) {
    .hero { padding: 90px 0 40px; }
    .hero-content h1 { font-size: 2rem; letter-spacing: -1px; }
    .hero-stats { flex-direction: column; gap: 1rem; padding: 1rem; }
    .stat-divider { width: 40px; height: 1px; }
    .hero-phone { width: 200px; height: 400px; }

    .section-header h2 { font-size: 1.75rem; }
    .pricing-card { padding: 1.5rem; }
    .amount { font-size: 2.5rem; }
    .cta-content h2 { font-size: 1.75rem; }
    .contact-form { padding: 1.5rem; }
}
