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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ======================
   Utility Classes
   ====================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #38bdf8 0%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: #0ea5e9;
}

.text-accent {
    color: #d946ef;
}

/* ======================
   Animations
   ====================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ======================
   Buttons
   ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #374151;
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-text {
    background: transparent;
    color: #374151;
}

.btn-text:hover {
    color: #0ea5e9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-white {
    background: white;
    color: #0ea5e9;
}

.btn-white:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-accent {
    background: linear-gradient(135deg, #d946ef 0%, #ec4899 100%);
    color: white;
}

.btn-accent:hover {
    box-shadow: 0 10px 20px rgba(217, 70, 239, 0.3);
    transform: translateY(-2px);
}

/* ======================
   Navigation
   ====================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        width: 3rem;
        height: 3rem;
    }
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0ea5e9;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #0ea5e9;
}

/* Mobile dropdown styles */
@media (max-width: 767px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 0;
    }
}

.nav-actions {
    display: none;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
}

.profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-icon:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.profile-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ======================
   Hero Section
   ====================== */
.hero {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 50%, #faf5ff 100%);
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 3.5rem;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-slow 3s ease-in-out infinite;
}

.blob-1 {
    top: 25%;
    left: 25%;
    background: rgba(14, 165, 233, 0.2);
}

.blob-2 {
    bottom: 25%;
    right: 25%;
    background: rgba(217, 70, 239, 0.2);
    animation-delay: 1.5s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2rem;
}

.badge svg {
    width: 1rem;
    height: 1rem;
    color: #0ea5e9;
}

.badge-white {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.badge-white svg {
    color: white;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    font-weight: 500;
}

.pill svg {
    width: 1.25rem;
    height: 1.25rem;
}

.pill:nth-child(1) svg {
    color: #eab308;
}

.pill:nth-child(2) svg {
    color: #3b82f6;
}

.pill:nth-child(3) svg {
    color: #a855f7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-trust {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ======================
   Stats Section
   ====================== */
.stats {
    padding: 2.5rem 0;
    background: white;
}

@media (min-width: 768px) {
    .stats {
        padding: 3rem 0;
    }
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 3rem;
    }
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ======================
   Section Header
   ====================== */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* ======================
   Features Section
   ====================== */
.features {
    padding: 2.5rem 0;
    background: #f9fafb;
}

@media (min-width: 768px) {
    .features {
        padding: 3rem 0;
    }
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.gradient-yellow {
    background: linear-gradient(135deg, #eab308 0%, #f97316 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.gradient-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #ef4444 100%);
}

.gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.938rem;
    line-height: 1.6;
}

/* ======================
   Performance Section
   ====================== */
.performance {
    padding: 2.5rem 0;
    background: white;
}

@media (min-width: 768px) {
    .performance {
        padding: 3rem 0;
    }
}

.performance-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .performance-grid {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 768px) {
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.performance-card {
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
}

.performance-icon {
    flex-shrink: 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    padding: 0.75rem;
    border-radius: 0.75rem;
    height: fit-content;
}

.performance-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.performance-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.performance-content > p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.performance-content ul {
    list-style: none;
}

.performance-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.performance-content li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: #0ea5e9;
    border-radius: 50%;
}

.tech-stack {
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.tech-stack h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-stack > p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

/* ======================
   Solutions Section
   ====================== */
.solutions {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 50%, #faf5ff 100%);
}

@media (min-width: 768px) {
    .solutions {
        padding: 3rem 0;
    }
}

.solutions-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.solution-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.gradient-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #d946ef 0%, #ec4899 100%);
}

.solution-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.solution-description {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.solution-features {
    margin-bottom: 2rem;
}

.solution-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-feature-icon {
    flex-shrink: 0;
    background: rgba(14, 165, 233, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    height: fit-content;
}

.solution-card:last-child .solution-feature-icon {
    background: rgba(217, 70, 239, 0.1);
}

.solution-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #0ea5e9;
}

.solution-card:last-child .solution-feature-icon svg {
    color: #d946ef;
}

.solution-feature h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.solution-feature p {
    color: #6b7280;
    font-size: 0.938rem;
}

/* ======================
   Developers Section
   ====================== */
.developers {
    padding: 2.5rem 0;
    background: #111827;
    color: white;
}

@media (min-width: 768px) {
    .developers {
        padding: 3rem 0;
    }
}

.developers .section-header {
    color: white;
}

.developers .section-header p {
    color: #9ca3af;
}

.developers-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .developers-content {
        grid-template-columns: 1fr 1fr;
    }
}

.code-example {
    background: #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: #374151;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.code-dots span:nth-child(1) {
    background: #ef4444;
}

.code-dots span:nth-child(2) {
    background: #eab308;
}

.code-dots span:nth-child(3) {
    background: #10b981;
}

.code-title {
    color: #9ca3af;
    font-size: 0.875rem;
}

.code-example pre {
    padding: 1.5rem;
    overflow-x: auto;
}

.code-example code {
    color: #d1d5db;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
}

.dev-features {
    display: grid;
    gap: 1.5rem;
}

.dev-feature {
    display: flex;
    gap: 1rem;
}

.dev-feature-icon {
    flex-shrink: 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    padding: 0.75rem;
    border-radius: 0.75rem;
    height: fit-content;
}

.dev-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.dev-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dev-feature p {
    color: #9ca3af;
    font-size: 0.938rem;
}

.api-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .api-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
}

@media (min-width: 768px) {
    .api-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.api-stat {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #374151;
    text-align: center;
}

.api-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #38bdf8 0%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.api-stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ======================
   CTA Section
   ====================== */
.cta {
    position: relative;
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 50%, #ec4899 100%);
    color: white;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta {
        padding: 3rem 0;
    }
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: white;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse-slow 3s ease-in-out infinite;
}

.cta-blob-1 {
    top: 0;
    left: 25%;
}

.cta-blob-2 {
    bottom: 0;
    right: 25%;
    animation-delay: 1.5s;
}

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

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

.cta-content > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-content > p {
        font-size: 1.125rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-trust {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-trust-text {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-bottom: 1rem;
}

.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0.75;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.trust-badge svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ======================
   Footer
   ====================== */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 4fr;
    }
}

.footer-brand p {
    margin: 1rem 0 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: #1f2937;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #374151;
    transform: translateY(-2px);
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

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

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-legal a {
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}