/* ========================================
   JATRAPATH WORLD-CLASS DESIGN
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #14b8a6;
    --accent: #f59e0b;
    --success: #10b981;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === CLEAN HERO SECTION === */
.hero-premium {
    position: relative;
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--dark);
    letter-spacing: -0.03em;
}

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

.hero-description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    max-width: 90%;
}

.hero-description strong {
    color: var(--gray-700);
    font-weight: 700;
}

/* Hero Benefits */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.benefit-item i {
    color: var(--success);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary-premium {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.btn-secondary-premium {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-secondary-premium:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats-inline {
    display: flex;
    gap: 2rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--gray-100);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Hero Visual */
.hero-visual-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.fc-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.fc-content p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--gray-500);
}

.card-1 {
    top: 10%;
    left: -8%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -8%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

/* === PARTNERS === */
.partners-section {
    background: white;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 3rem 0;
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.partners-marquee {
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-300);
    white-space: nowrap;
    transition: color 0.3s;
}

.partner-logo:hover {
    color: var(--primary);
}

/* === SERVICES === */
.services-premium {
    padding: 6rem 0;
    background: #fafbfc;
}

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

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary);
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-premium {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card-premium:hover::before {
    transform: scaleX(1);
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-icon-premium {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.icon-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary);
}

.icon-purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #9333ea;
}

.icon-green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: var(--secondary);
}

.icon-orange {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: var(--accent);
}

.icon-red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #ef4444;
}

.icon-teal {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0ea5e9;
}

.service-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card-premium p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-benefits i {
    color: var(--success);
    font-size: 0.875rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.service-card-premium:hover .service-cta {
    gap: 0.75rem;
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.featured-service {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

/* === HOW IT WORKS - MODERN === */
.how-it-works-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

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

.step-card-modern {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
}

.step-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.step-highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.step-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.step-icon-modern {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.step-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-card-modern p {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    text-align: left;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.step-features i {
    color: var(--success);
    font-size: 0.875rem;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-subtext {
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.step-connector i {
    font-size: 1.5rem;
}

/* === FEATURES === */
.features-premium-section {
    padding: 6rem 0;
    background: #fafbfc;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.feature-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon-premium {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.icon-gradient-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary);
}

.icon-gradient-purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #9333ea;
}

.icon-gradient-green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: var(--secondary);
}

.icon-gradient-orange {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: var(--accent);
}

.icon-gradient-red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #ef4444;
}

.icon-gradient-teal {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0ea5e9;
}

.feature-card-premium h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card-premium p {
    color: var(--gray-500);
    line-height: 1.7;
}

/* === STATS - MODERN & ATTRACTIVE === */
.stats-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.stats-header p {
    font-size: 1.25rem;
    color: var(--gray-500);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}

.stat-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25);
    transition: all 0.3s;
}

.stat-card-modern:hover .stat-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.35);
}

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

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label-modern {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === TESTIMONIALS === */
.testimonials-premium-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card-premium {
    background: #fafbfc;
    border: 1px solid var(--gray-100);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-rating {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-premium img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.author-name-premium {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-role-premium {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.verified-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
}

/* === APP DOWNLOAD === */
.app-download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.app-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.app-features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.app-features-list i {
    color: var(--success);
    font-size: 1.125rem;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-store-btn:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.app-store-btn i {
    font-size: 2rem;
}

.app-store-btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-store-btn strong {
    display: block;
    font-size: 1.125rem;
}

.app-mockup {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

/* === CTA === */
.cta-premium-section {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-premium-bg {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

.btn-white-premium {
    background: white;
    color: var(--dark);
}

.btn-white-premium:hover {
    background: var(--gray-100);
}

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

.btn-outline-white-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* === ANIMATIONS === */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.delay-4 {
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-premium {
        padding: 4rem 0 3rem;
    }

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

    .hero-heading {
        font-size: 3rem;
    }

    .hero-description,
    .hero-stats-inline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual-right {
        margin-top: 2rem;
    }

    .hero-main-image {
        max-width: 500px;
    }

    .steps-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    /* Hero Section */
    .hero-premium {
        padding: 3rem 0 2rem;
    }

    .hero-heading {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    /* Section Headers */
    .section-title-large {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Services */
    .services-grid-premium {
        grid-template-columns: 1fr;
    }

    /* How It Works */
    .steps-grid-modern {
        grid-template-columns: 1fr;
    }

    /* Features */
    .features-grid-premium {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }

    .stats-header h2 {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
    }

    /* App Download */
    .app-download-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-download-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .app-download-buttons {
        justify-content: center;
        flex-direction: column;
    }

    /* CTA */
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-buttons-premium {
        flex-direction: column;
        width: 100%;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    /* Hide decorative elements */
    .floating-card {
        display: none;
    }

    .hero-main-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero-premium {
        padding: 2rem 0 1.5rem;
    }

    .hero-heading {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .btn-premium {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Sections */
    .section-label {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .section-title-large {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Services */
    .service-card-premium {
        padding: 2rem 1.5rem;
    }

    .service-icon-premium {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    /* Stats */
    .stat-card-modern {
        padding: 2rem 1.5rem;
    }

    .stat-icon-circle {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .stat-number-modern {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .footer-col h4 {
        font-size: 0.9rem;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.875rem;
    }
}