/* ===================================
   Estative - Crypto Landing Page
   Main Stylesheet
   =================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --neon-green: #00d98a;
    --neon-cyan: #00c2e0;
    --neon-teal: #00b894;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --card-border: #222222;
    --text-gray: #888888;
    --text-light: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-green), var(--neon-cyan));
    border-radius: 4px;
}

/* ===================================
   Animations
   =================================== */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green), 0 0 60px var(--neon-green);
    }
    50% {
        text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), 0 0 60px var(--neon-cyan);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroSubReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 8px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: var(--neon-green);
        box-shadow: 0 0 20px rgba(0, 217, 138, 0.3);
    }
    50% {
        border-color: var(--neon-cyan);
        box-shadow: 0 0 20px rgba(0, 194, 224, 0.3);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes ambientBorderGlow {
    0%, 100% {
        border-color: var(--neon-green);
        box-shadow:
            0 0 10px rgba(0, 217, 138, 0.15),
            0 0 20px rgba(0, 217, 138, 0.08),
            0 0 30px rgba(0, 217, 138, 0.04);
    }
    50% {
        border-color: var(--neon-cyan);
        box-shadow:
            0 0 12px rgba(0, 194, 224, 0.18),
            0 0 24px rgba(0, 194, 224, 0.1),
            0 0 36px rgba(0, 194, 224, 0.05);
    }
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 115px;
    background: rgba(10, 10, 10, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

/* Hide mobile WhatsApp button on desktop */
.mobile-cta-item {
    display: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 15px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #0d95a3, #00b894);
    color: var(--primary-white);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 6px;
    background: linear-gradient(90deg,
        var(--neon-green),
        var(--neon-cyan),
        var(--neon-green));
    background-size: 200% 100%;
    animation: borderFlow 2s linear infinite;
    z-index: -1;
    opacity: 0.8;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    background: linear-gradient(135deg, #0d95a3, #00b894);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover::before {
    opacity: 1;
    filter: blur(3px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary-white);
    color: var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.btn-glow {
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--neon-green), var(--neon-cyan)) 1;
    color: var(--primary-white);
}

.btn-glow:hover {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    border: 2px solid transparent;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 217, 138, 0.4);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), url(../images/investor-web.jpg);
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.6);
}

.hero-grid {
    display: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    font-size: 40px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    color: var(--neon-green);
}

.floating-coin:nth-child(1) { top: 20%; left: 5%; animation-delay: 0s; }
.floating-coin:nth-child(2) { top: 60%; left: 3%; animation-delay: 1s; }
.floating-coin:nth-child(3) { top: 30%; right: 15%; animation-delay: 2s; }
.floating-coin:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; }
.floating-coin:nth-child(5) { top: 15%; right: 25%; animation-delay: 4s; }

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-image {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 217, 138, 0.1);
    border: 1px solid rgba(0, 217, 138, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neon-green);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    animation: heroTitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan), var(--neon-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

.hero p {
   font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 6px auto 20px;
    animation: heroSubReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 1.5s infinite;
}

/* ===================================
   Section Styling
   =================================== */
section {
    padding: 120px 60px;
    position: relative;
}

.container {
    max-width: 90%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 90%;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}

.why-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.why-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.why-point i {
    color: var(--neon-cyan);
    font-size: 20px;
}

.why-visual {
    position: relative;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 217, 138, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===================================
   What We Do Section
   =================================== */
.what-section {
    background: url(../images/Estative-Pattern-White-02.png) 0 0 / contain #121212b0;
}

.what-section .section-header {
    background: rgba(18, 18, 18, 0.85);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 90%;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 138, 0.1), rgba(0, 194, 224, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: 0 20px 60px rgba(0, 217, 138, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 217, 138, 0.2), rgba(0, 194, 224, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--neon-green);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    color: var(--primary-white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 15px;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

.aed-highlight {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 217, 138, 0.1), rgba(0, 194, 224, 0.1));
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

.aed-highlight p {
    font-size: 24px;
    font-weight: 600;
}

.aed-highlight span {
    color: var(--neon-cyan);
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
    background: var(--dark-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 90%;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
        background: url(../images/about-bg.png) 0 0 / contain #121212b0;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 217, 138, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 217, 138, 0.5);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-weight: 900;
    opacity: 0.05;
    line-height: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-white);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.benefit-card ul {
    list-style: none;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.benefit-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.benefit-card li i {
    color: var(--neon-cyan);
    font-size: 14px;
}

/* ===================================
   Own Buyers Section
   =================================== */
.own-buyers-section {
    background: url(../images/Estative-Pattern-White-01.png) 0 0 / contain #121212b0;
}

.own-buyers-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.own-buyers-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: visible;
    border: 2px solid var(--neon-green);
    animation: ambientBorderGlow 3s ease-in-out infinite;
}

.own-buyers-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 25px;
    background: linear-gradient(45deg,
        var(--neon-green),
        var(--neon-cyan),
        var(--neon-green),
        var(--neon-cyan));
    background-size: 300% 300%;
    animation: gradientRotate 4s ease infinite;
    z-index: -1;
    opacity: 0.25;
    filter: blur(8px);
}

.own-buyers-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 25px;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 217, 138, 0.15),
        transparent);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
}

.own-buyers-card:hover::after {
    opacity: 0.6;
}

.own-buyers-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.own-buyers-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.own-buyers-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.flow-step i {
    color: var(--neon-cyan);
}

.flow-arrow {
    color: var(--neon-green);
    font-size: 24px;
}

/* ===================================
   Business Model Section
   =================================== */
.business-section {
    background: var(--card-bg);
}

.business-content {
    max-width: 90%;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.pricing-card {
    background: var(--dark-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;background: url(../images/about-bg.png) 0 0 / contain #090606b0;
 
}

.pricing-card.featured {
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 217, 138, 0.15);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    color: var(--primary-white);
    padding: 8px 50px;
    font-size: 10px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
}

.pricing-amount span {
    font-size: 20px;
    color: var(--text-gray);
}

.pricing-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 15px;
}

.pricing-features li i {
    color: var(--neon-green);
    font-size: 16px;
}

/* ===================================
   Video Section
   =================================== */
.video-section {
    background: var(--dark-bg);
}

.video-container {
    max-width: 90%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url(../images/investor-web.jpg);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--neon-green);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 60px rgba(0, 217, 138, 0.4);
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 80px rgba(0, 217, 138, 0.6);
}

.video-title {
    font-size: 20px;
    font-weight: 600;
}

/* ===================================
   Projects Section
   =================================== */
.projects-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: var(--neon-green);
}

.project-image {
    height: 420px;
    background: linear-gradient(135deg, rgba(0, 217, 138, 0.3), rgba(0, 194, 224, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 217, 138, 0.15);
    color: var(--neon-green);
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.project-header h3 {
    margin-bottom: 0;
}

.project-developer {
    font-size: 12px;
    color: var(--neon-cyan);
    font-weight: 500;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--card-border);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.project-location i {
    color: var(--neon-cyan);
}

.project-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-green);
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    background: url(../images/Estative-Pattern-White-03.png) 0 0 / contain #121212b0;
}

.process-timeline {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--card-border);
    transform: translateX(-50%);
    z-index: 0;
}

.process-timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--neon-green), var(--neon-cyan));
    transform: translateX(-50%);
    animation: timelineGrow 2s ease-out forwards;
    animation-delay: 0.5s;
    z-index: -1;
}

@keyframes timelineGrow {
    to {
        height: 100%;
    }
}

.process-step {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step.visible {
    animation: stepReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.process-step[data-step="1"].visible { animation-delay: 0.2s; }
.process-step[data-step="2"].visible { animation-delay: 0.5s; }
.process-step[data-step="3"].visible { animation-delay: 0.8s; }
.process-step[data-step="4"].visible { animation-delay: 1.1s; }

@keyframes stepReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%) scale(0);
    width: 60px;
    height: 60px;
    background: #121212;
    border: 4px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--neon-green);
    z-index: 10;
    box-shadow: 0 0 0 10px #121212, 0 0 40px rgba(0, 217, 138, 0.5);
}

.process-step.visible .step-number {
    animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.process-step[data-step="1"].visible .step-number { animation-delay: 0.3s; }
.process-step[data-step="2"].visible .step-number { animation-delay: 0.6s; }
.process-step[data-step="3"].visible .step-number { animation-delay: 0.9s; }
.process-step[data-step="4"].visible .step-number { animation-delay: 1.2s; }

@keyframes numberPop {
    0% {
        transform: translateX(-50%) scale(0);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}

.step-content {
    flex: 1;
    padding: 30px 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    max-width: calc(50% - 70px);
}

.step-content:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-step:nth-child(even) .step-content h3 {
    justify-content: flex-end;
}

.step-title-icon {
    font-size: 24px;
    color: var(--neon-green);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.process-step.visible .step-title-icon {
    animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.process-step[data-step="1"].visible .step-title-icon { animation-delay: 0.5s; }
.process-step[data-step="2"].visible .step-title-icon { animation-delay: 0.8s; }
.process-step[data-step="3"].visible .step-title-icon { animation-delay: 1.1s; }
.process-step[data-step="4"].visible .step-title-icon { animation-delay: 1.4s; }

@keyframes iconBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-20deg);
    }
    50% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.step-content:hover .step-title-icon {
    color: var(--neon-cyan);
    transform: scale(1.2);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Form Section
   =================================== */
.form-section {
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 217, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-container {
    max-width: min(800px, 90%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
background: url(../images/Estative-Pattern-White-02.png) 0 0 / contain #0b0b0bd9;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    background: var(--dark-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--primary-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 217, 138, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: var(--dark-bg);
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 217, 138, 0.2);
}

.country-code-select {
    background: rgba(0, 217, 138, 0.1);
    border: none;
    border-right: 1px solid var(--card-border);
    padding: 16px 12px;
    font-size: 14px;
    color: var(--primary-white);
    font-family: inherit;
    cursor: pointer;
    min-width: 110px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d98a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.country-code-select:focus {
    outline: none;
    background-color: rgba(0, 217, 138, 0.15);
}

.country-code-select option {
    background: var(--dark-bg);
    color: var(--primary-white);
    padding: 10px;
}

.phone-input-wrapper input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.phone-input-wrapper input:focus {
    box-shadow: none !important;
}

.form-group.error .phone-input-wrapper {
    border-color: #ff4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
}

.form-group.success .phone-input-wrapper {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 217, 138, 0.15);
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
    border-color: #ff4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
}

.form-group.success input,
.form-group.success textarea {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 217, 138, 0.15);
}

.error-message {
    display: block;
    font-size: 12px;
    color: #ff4757;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    min-height: 18px;
}

.form-group.error .error-message {
    opacity: 1;
    transform: translateY(0);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group.error input:focus,
.form-group.error textarea:focus {
    border-color: #ff4757;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.2);
}

/* Validation icons */
.form-group {
    position: relative;
}

.validation-icon {
    position: absolute;
    right: 15px;
    top: 45px;
    font-size: 16px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group.error .validation-icon {
    opacity: 1;
    transform: scale(1);
    color: #ff4757;
}

.form-group.success .validation-icon {
    opacity: 1;
    transform: scale(1);
    color: var(--neon-green);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===================================
   Final Section
   =================================== */
.final-section {
    background: var(--dark-bg);
    text-align: center;
    padding: 150px 60px;
    position: relative;
    overflow: hidden;
}

.final-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 138, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-content {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.final-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.final-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--primary-black);
    padding: 60px;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-white);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--card-border);
    font-size: 14px;
    color: var(--text-gray);
}

/* ===================================
   Mobile Menu
   =================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    position: relative;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Tablets and Small Laptops */
@media (max-width: 1200px) {
    .navbar {
        padding: 15px 60px;
    }

    .navbar.scrolled {
        padding: 12px 60px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    section {
        padding: 80px 20px;
    }

    .navbar {
        padding: 15px 20px;
    }

    .navbar.scrolled {
        padding: 12px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 100px 30px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        border-left: 1px solid var(--card-border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.35s; }

    .nav-links a {
        font-size: 18px;
        font-weight: 600;
        display: block;
        padding: 18px 0;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--neon-green);
        padding-left: 10px;
    }

    .nav-cta {
        display: none;
    }

    /* Mobile WhatsApp button in menu */
    .mobile-cta-item {
        display: block !important;
        margin-top: 30px;
        padding-top: 20px;
        border-bottom: none !important;
    }

    .mobile-cta-item a.mobile-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 24px !important;
        font-size: 16px !important;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero h2 {
        font-size: 16px;
    }

    .hero-bg::before {
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 100%);
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-text h3 {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-card {
        padding: 35px 25px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Process Section Mobile */
    .process-timeline::before {
        left: 25px;
        transform: none;
    }

    .process-timeline::after {
        left: 25px;
        transform: none;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        padding-left: 70px;
        gap: 0;
    }

    .process-step:nth-child(even) .step-content {
        text-align: left;
    }

    .process-step:nth-child(even) .step-content h3 {
        justify-content: flex-start;
    }

    .step-number {
        left: 25px;
        transform: translateX(-50%) scale(0);
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: 15px;
    }

    .step-content {
        max-width: 100%;
        padding: 25px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .final-section {
        padding: 80px 20px;
    }

    .final-content h2 {
        font-size: clamp(26px, 6vw, 36px);
    }

    .final-content p {
        font-size: 16px;
    }

    footer {
        padding: 40px 20px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: 1fr;    gap: 5px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .country-code-select {
        min-width: 95px;
        padding: 14px 8px;
        font-size: 13px;
        padding-right: 24px;
    }

    .phone-input-wrapper input {
        padding: 14px 12px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .own-buyers-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .own-buyers-card {
        padding: 40px 25px;
    }

    .project-image {
        height: 280px;
    }

    .scroll-indicator {
        display: none;
    }

    .floating-elements {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .what-section .section-header {
        padding: 25px;
    }

    .final-cta {
        flex-direction: column;
        align-items: center;
    }

    .final-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    section {
        padding: 60px 15px;
    }

    .hero {
        padding: 100px 15px 60px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .hero h2 {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-label {
        font-size: 11px;
    }

    .why-text h3 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline::before,
    .process-timeline::after {
        left: 20px;
    }

    .process-step,
    .process-step:nth-child(even) {
        padding-left: 55px;
    }

    .step-number {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-width: 3px;
        box-shadow: 0 0 0 8px #121212, 0 0 30px rgba(0, 217, 138, 0.5);
    }

    .step-content {
        padding: 20px;
    }

    .step-content h3 {
        font-size: 16px;
        flex-wrap: wrap;
    }

    .step-title-icon {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .nav-links a {
        font-size: 20px;
    }

    .footer-logo img {
        height: 28px;
    }

    .copyright {
        font-size: 12px;
        padding-top: 25px;
        margin-top: 25px;
    }
}

/* ===================================
   Mobile Sticky CTA Button
   =================================== */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        padding: 12px 15px;
        background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 20%);
        padding-top: 25px;
    }

    .mobile-sticky-cta .btn {
              width: 100%;
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
        justify-content: center;
        gap: 10px;
        border-radius: 12px;
        box-shadow: 0 -5px 30px rgba(0, 217, 138, 0.3);
        animation: pulseGlow 2s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            box-shadow: 0 -5px 30px rgba(0, 217, 138, 0.3);
        }
        50% {
            box-shadow: 0 -5px 40px rgba(0, 217, 138, 0.5);
        }
    }

    /* Add padding to footer to prevent content hiding behind sticky CTA */
    footer {
        padding-bottom: 100px;
    }

    /* Hide sticky CTA when mobile menu is open */
    body.menu-open .mobile-sticky-cta {
        display: none;
    }
}
