/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(18, 18, 30, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #f0f0f5;
    --text-secondary: #8a8a9a;
    --text-muted: #5a5a6a;
    --accent-1: #7c3aed;
    --accent-2: #a855f7;
    --accent-3: #06b6d4;
    --accent-4: #8b5cf6;
    --gradient-primary: linear-gradient(135deg, #7c3aed, #a855f7, #06b6d4);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
    --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05));
    --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
}

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

/* ===== ANIMATED BACKGROUND ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    bottom: 10%;
    left: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
    bottom: 30%;
    left: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.08);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* Hero Logo */
.hero-logo-showcase {
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}

.hero-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.08);
    padding: 12px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(255,255,255,0.05);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.3s both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.typed-text {
    display: block;
    font-size: 0.6em;
    letter-spacing: -0.5px;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    margin-top: 4px;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 19px);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-subtitle strong {
    color: #22c55e;
    font-weight: 600;
}

.highlight {
    color: #fbbf24;
    font-weight: 700;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.btn-outline:hover {
    border-color: var(--accent-2);
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
    max-width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(124, 58, 237, 0.03);
    position: relative;
    z-index: 1;
}

.marquee-track {
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== WHY US ===== */
.why-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.feature-icon {
    font-size: 44px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.service-card.featured {
    border-color: rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(124, 58, 237, 0.05));
}

.service-card.featured:hover {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.15);
}

.service-card.featured::before {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
    opacity: 1;
}

.service-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.service-discount.discount-hot {
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.6); }
}

.service-icon {
    font-size: 44px;
    margin-bottom: 14px;
}

.service-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-glass);
}

.service-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-2);
    padding: 4px 10px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 100px;
}

.service-tag.tag-hot {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.service-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-3);
    text-decoration: none;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    padding: 4px 0;
}

.service-btn:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* ===== ESCROW ===== */
.escrow-section {
    padding: 40px 0;
}

.escrow-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(124, 58, 237, 0.06));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.escrow-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.escrow-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.escrow-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.escrow-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.escrow-shield {
    font-size: 48px;
    flex-shrink: 0;
    margin-left: auto;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item[open] {
    border-color: rgba(124, 58, 237, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-2);
}

.faq-answer {
    padding: 0 24px 18px;
    animation: faqSlideIn 0.3s ease;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--text-primary);
}

@keyframes faqSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.2);
}

.testimonial-stars {
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-section {
    padding: 60px 0 100px;
}

.cta-card {
    text-align: center;
    padding: 64px 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.cta-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.05);
    padding: 8px;
    border: 1px solid var(--border-glass);
}

.cta-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.cta-handle {
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.cta-handle a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-handle a:hover {
    color: var(--text-primary);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    padding-bottom: calc(12px + var(--safe-bottom));
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-cta.show {
    transform: translateY(0);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: all 0.2s ease;
}

.mobile-cta-btn:active {
    transform: scale(0.98);
}

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

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

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

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

/* ========================================
   RESPONSIVE — DEEPLY OPTIMIZED FOR MOBILE
   ======================================== */

/* Large tablets */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets & small laptops */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navbar mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
        gap: 20px;
        transition: 0.4s ease;
        border-left: 1px solid var(--border-glass);
        z-index: 1001;
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px 0;
    }

    .nav-cta {
        text-align: center;
        display: block;
        padding: 14px 24px;
    }
    
    /* Hero mobile */
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
        padding: 10px;
        border-radius: 20px;
    }

    .hero-logo-showcase {
        margin-bottom: 20px;
    }
    
    .hero-title {
        letter-spacing: -1px;
        font-size: clamp(28px, 8vw, 44px);
        padding: 0 4px;
    }

    .typed-text {
        font-size: 0.55em;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
        padding: 0 4px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 4px;
    }

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

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-plus {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }
    
    /* Grids mobile */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .feature-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 24px 20px;
    }

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

    .testimonial-card {
        padding: 24px 20px;
    }
    
    /* Escrow mobile */
    .escrow-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
    }
    
    .escrow-shield {
        margin-left: 0;
    }

    .escrow-icon, .escrow-shield {
        font-size: 40px;
    }

    .escrow-content h3 {
        font-size: 18px;
    }

    .escrow-content p {
        font-size: 13px;
    }

    /* FAQ mobile */
    .faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }
    
    /* CTA mobile */
    .cta-card {
        padding: 40px 20px;
    }

    .cta-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .cta-desc {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    /* Mobile sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }

    /* Section padding */
    .why-us,
    .services,
    .faq-section,
    .testimonials {
        padding: 60px 0;
    }

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

    .section-desc {
        font-size: 14px;
    }

    /* Marquee mobile */
    .marquee-content span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .marquee-content {
        gap: 32px;
    }

    /* Footer extra bottom padding for sticky CTA */
    .footer {
        padding-bottom: calc(80px + var(--safe-bottom));
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 16px 48px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        padding: 8px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: clamp(26px, 9vw, 36px);
        letter-spacing: -0.5px;
    }

    .typed-text {
        font-size: 0.5em;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-actions .btn {
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Features 2-col on small phones */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 20px 12px;
    }

    .feature-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 11px;
        line-height: 1.5;
    }

    /* Services single col */
    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-name {
        font-size: 16px;
    }

    .service-desc {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .service-footer {
        padding-top: 12px;
    }

    .service-tag {
        font-size: 9px;
        padding: 3px 8px;
    }

    .service-btn {
        font-size: 12px;
    }

    /* CTA mobile small */
    .cta-card {
        padding: 32px 16px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-handle {
        font-size: 13px;
    }

    /* FAQ small */
    .faq-question {
        padding: 14px 16px;
        font-size: 13px;
    }

    .faq-answer {
        padding: 0 16px 14px;
    }

    .faq-answer p {
        font-size: 12px;
    }

    /* Testimonials small */
    .testimonial-card {
        padding: 20px 16px;
    }

    .testimonial-card p {
        font-size: 13px;
    }

    .testimonial-stars {
        font-size: 14px;
    }

    /* Sections spacing */
    .why-us,
    .services,
    .faq-section,
    .testimonials {
        padding: 48px 0;
    }

    .cta-section {
        padding: 40px 0 80px;
    }

    .escrow-section {
        padding: 24px 0;
    }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }

    .typed-text {
        font-size: 0.5em;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        gap: 6px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-plus {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* ===== SCROLL REVEAL ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .orb {
        animation: none;
    }

    .hero-logo {
        animation: none;
    }

    .marquee-content {
        animation: none;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(124, 58, 237, 0.3);
    color: var(--text-primary);
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.5);
}

/* ===== PRINT ===== */
@media print {
    .bg-animation,
    .marquee-section,
    .mobile-sticky-cta,
    .hero-glow,
    .cta-glow {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
