/* =====================================================
   VENDTAP MODERN LANDING PAGE STYLES
   Primary: Blue (#4A9FE8)
   Secondary: Purple (#A855C7)
   Light Theme with Modern Animations
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Vendtap Blue - Primary (Vibrant) */
    --primary-50: #E8F4FD;
    --primary-100: #C5E3FA;
    --primary-200: #8EC8F5;
    --primary-300: #66B5F0;
    --primary-400: #4A9FE8;
    --primary-500: #2B8CE0;
    --primary-600: #1E75C8;
    --primary-700: #185EA0;
    --primary-800: #134878;
    --primary-900: #0E3250;

    /* Vendtap Purple - Secondary (Vibrant) */
    --secondary-50: #F8EEFB;
    --secondary-100: #EDDAF5;
    --secondary-200: #DCB5EB;
    --secondary-300: #CA8FE1;
    --secondary-400: #B86AD7;
    --secondary-500: #A855C7;
    --secondary-600: #8E3DAD;
    --secondary-700: #732E8D;
    --secondary-800: #58236D;
    --secondary-900: #3D184D;

    --accent-blue: #4A9FE8;
    --accent-purple: #A855C7;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow-blue: 0 0 40px rgba(74, 159, 232, 0.3);
    --shadow-glow-purple: 0 0 40px rgba(168, 85, 199, 0.3);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==================== BASE STYLES ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.landing-page {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Selection */
::selection {
    background: var(--primary-200);
    color: var(--primary-900);
}

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

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(74, 159, 232, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(168, 85, 199, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(74, 159, 232, 0.05) 0%, transparent 40%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, 2%) rotate(1deg);
    }

    66% {
        transform: translate(-1%, 1%) rotate(-1deg);
    }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-300), var(--secondary-500));
    top: 60%;
    right: 5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-200), var(--secondary-300));
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

/* ==================== NAVIGATION ==================== */
.nav-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-base);
    background: transparent;
}

.nav-modern.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-base);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

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

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

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

.btn-nav-login {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-base);
}

.btn-nav-login:hover {
    color: var(--primary-600);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    transition: var(--transition-base);
}

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

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 159, 232, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 159, 232, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

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

.btn-outline-gradient {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-outline-gradient:hover {
    background-image: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)), linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-700);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--white);
    color: var(--primary-800);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.1), rgba(168, 85, 199, 0.1));
    border: 1px solid rgba(74, 159, 232, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-700);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge-icon {
    width: 18px;
    height: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin: 0 0 2rem;
    max-width: 500px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 5;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.hero-login-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-2xl), var(--shadow-glow-blue);
    border: 1px solid var(--gray-100);
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-base);
}

.hero-login-card:hover {
    transform: rotateY(0) rotateX(0);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-purple);
}

.hero-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.login-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.login-card-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0 0 2rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: var(--transition-base);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 159, 232, 0.15);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-600);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
}

.login-btn {
    width: 100%;
    margin-top: 1.5rem;
}

/* Floating elements around login card */
.floating-element {
    position: absolute;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatElement 3s ease-in-out infinite;
    z-index: 20;
}

.floating-element-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-element-icon.blue {
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: var(--primary-600);
}

.floating-element-icon.purple {
    background: linear-gradient(135deg, var(--secondary-100), var(--secondary-200));
    color: var(--secondary-600);
}

.floating-element-icon.green {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: #059669;
}

.floating-element-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.floating-element-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-element-2 {
    bottom: 30%;
    left: -50px;
    animation-delay: -1s;
}

.floating-element-3 {
    bottom: -20px;
    right: 20%;
    animation-delay: -2s;
}

@keyframes floatElement {

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

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

/* OTP Card Styling */
.otp-card {
    text-align: center;
}

.otp-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.otp-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.otp-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0 0 1.5rem;
}

/* ==================== DASHBOARD PREVIEW ==================== */
.dashboard-preview-section {
    padding: 2rem 0 6rem;
    position: relative;
}

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

.dashboard-preview-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.dashboard-preview-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.03), rgba(168, 85, 199, 0.03));
    z-index: 1;
    pointer-events: none;
}

.dashboard-preview-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red {
    background: #FF5F57;
}

.browser-dot.yellow {
    background: #FEBC2E;
}

.browser-dot.green {
    background: #28C840;
}

.dashboard-preview-image {
    width: 100%;
    display: block;
}

/* ==================== PARTNERS SLIDER SECTION ==================== */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(91, 99, 242, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(123, 95, 248, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.partners-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.partners-label {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.partners-label::before,
.partners-label::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.partners-label span {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: partnersScroll 45s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

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

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

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
    padding: 0;
    background: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-base);
    overflow: hidden;
}

.partner-logo:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.partner-placeholder {
    font-weight: 700;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.partner-placeholder span {
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Google Play Button Styling */
.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-play-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(66, 133, 244, 0.1) 0%,
            rgba(52, 168, 83, 0.1) 25%,
            rgba(251, 188, 5, 0.1) 50%,
            rgba(234, 67, 53, 0.1) 75%,
            rgba(66, 133, 244, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.google-play-btn:hover::before {
    opacity: 1;
}

.google-play-btn:hover {
    background: linear-gradient(135deg, #34A853, #4285F4) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.35);
    transform: translateY(-3px);
    color: var(--white) !important;
}

.google-play-btn svg {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-play-btn:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

.google-play-btn .btn-text {
    position: relative;
    z-index: 1;
}

.google-play-btn .btn-text small {
    transition: color 0.3s ease;
}

.google-play-btn:hover .btn-text small {
    color: rgba(255, 255, 255, 0.85);
}

.google-play-btn .btn-text span {
    transition: all 0.3s ease;
}

.google-play-btn:hover .btn-text span {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.1), rgba(168, 85, 199, 0.1));
    border: 1px solid rgba(74, 159, 232, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin: 0;
}

/* Feature Tabs Navigation */
.features-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 0.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-2xl);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-base);
}

.feature-tab:hover {
    color: var(--gray-800);
    background: var(--white);
}

.feature-tab.active {
    background: var(--white);
    color: var(--primary-600);
    box-shadow: var(--shadow-md);
}

.feature-tab-icon {
    width: 20px;
    height: 20px;
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 159, 232, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-200);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-600);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Feature Showcase (Carousel Alternative) */
.feature-showcase {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.feature-showcase-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1rem;
}

.feature-showcase-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

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

.feature-list-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--primary-600);
    stroke-width: 3;
}

.feature-showcase-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feature-showcase-image img {
    width: 100%;
    display: block;
}

/* ==================== INTERACTIVE FEATURE TABS ==================== */
.feature-tabs-wrapper {
    margin-bottom: 3rem;
}

.feature-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.feature-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
}

.feature-tab svg {
    width: 28px;
    height: 28px;
    stroke: var(--gray-500);
    transition: all 0.3s ease;
}

.feature-tab span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-tab:hover {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.feature-tab:hover svg {
    stroke: var(--primary-600);
}

.feature-tab:hover span {
    color: var(--primary-600);
}

.feature-tab.active {
    background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
    border-color: var(--primary-300);
    box-shadow: 0 4px 15px rgba(91, 99, 242, 0.2);
}

.feature-tab.active svg {
    stroke: var(--primary-600);
}

.feature-tab.active span {
    color: var(--primary-700);
}

/* Feature Panels */
.feature-panels {
    position: relative;
    min-height: 400px;
}

.feature-panel {
    display: none;
    animation: featureFadeIn 0.5s ease;
}

.feature-panel.active {
    display: block;
}

@keyframes featureFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.feature-panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.feature-panel-text {
    padding-right: 2rem;
}

.feature-panel-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 1rem;
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-panel-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-100);
    transition: all 0.3s ease;
}

.feature-highlights li:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
    border-color: var(--primary-200);
    box-shadow: 0 4px 15px rgba(91, 99, 242, 0.15);
}

.feature-highlights li svg {
    width: 24px;
    height: 24px;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-radius: 50%;
    stroke: var(--white);
    stroke-width: 3;
    flex-shrink: 0;
}

.feature-panel-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-panel-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 99, 242, 0.1), rgba(139, 92, 246, 0.1));
    z-index: 1;
    pointer-events: none;
}

.feature-panel-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-panel-image:hover img {
    transform: scale(1.05);
}

/* ==================== VIDEO DEMO SECTION ==================== */
.video-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(74, 159, 232, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(168, 85, 199, 0.15) 0%, transparent 50%);
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-header .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.video-header .section-title {
    color: var(--white);
}

.video-header .section-description {
    color: var(--gray-400);
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

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

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 2px solid var(--gray-200);
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-200);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-xl), var(--shadow-glow-blue);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

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

.pricing-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--primary-600);
    stroke-width: 3;
}

.pricing-cta {
    width: 100%;
}

/* ==================== MOBILE APP SECTION ==================== */
.mobile-app-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 159, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.mobile-app-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 199, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.mobile-app-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.mobile-app-grid {
    display: grid;
    grid-template-columns: minmax(auto, 560px) 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-app-content {
    padding-left: 0;
    padding-right: 1rem;
}

.mobile-app-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.mobile-app-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.app-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-feature-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-600);
}

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

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--gray-900);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.app-store-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

.app-store-btn svg {
    width: 28px;
    height: 28px;
}

.app-store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-store-btn-text small {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.app-store-btn-text span {
    font-size: 1rem;
    font-weight: 600;
}

.mobile-app-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mobile-mockup-container {
    position: relative;
    width: 280px;
}

.mobile-mockup {
    position: relative;
    width: 100%;
    z-index: 10;
}

.mobile-mockup img {
    width: 100%;
    display: block;
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
}

.mobile-floating-card {
    position: absolute;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: floatElement 3s ease-in-out infinite;
    z-index: 20;
    white-space: nowrap;
}

.mobile-floating-card-1 {
    top: 15%;
    left: -80px;
    animation-delay: 0s;
}

.mobile-floating-card-2 {
    top: 40%;
    right: -80px;
    animation-delay: -1s;
}

.mobile-floating-card-3 {
    bottom: 20%;
    left: -60px;
    animation-delay: -2s;
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.floating-card-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ==================== MODERN PHONE SHOWCASE WITH TOGGLE ==================== */
.phone-showcase-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
}

.phone-toggle-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10;
    max-width: 160px;
}

.phone-toggle-buttons.left-buttons {
    align-items: flex-end;
}

.phone-toggle-buttons.right-buttons {
    align-items: flex-start;
}

.phone-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.phone-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(91, 99, 242, 0.4);
}

.toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.phone-toggle-btn.active .toggle-icon {
    background: rgba(255, 255, 255, 0.25);
}

.toggle-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
}

.toggle-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

/* Samsung Ultra Style Phone Frame */
.samsung-phone-frame {
    position: relative;
    width: 260px;
    height: 540px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.samsung-phone-frame::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.phone-top-bar {
    display: flex;
    justify-content: center;
    padding: 8px 0 6px;
}

.phone-camera {
    width: 12px;
    height: 12px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.phone-screen-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
}

.phone-screen-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.95);
}

.phone-screen-image.active {
    opacity: 1;
    transform: scale(1);
}

.phone-bottom-bar {
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-bottom-bar::after {
    content: '';
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* Phone Glow Effect */
.phone-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(91, 99, 242, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0 0 2rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-600);
}

.contact-info-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-info-text a,
.contact-info-text p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    margin: 0;
    transition: var(--transition-base);
}

.contact-info-text a:hover {
    color: var(--primary-600);
}

.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-group {
    margin-bottom: 1.25rem;
}

.contact-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--gray-800);
    transition: var(--transition-base);
    outline: none;
    font-family: inherit;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(74, 159, 232, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--gray-400);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 0.5rem;
    display: none;
}

/* ==================== FOOTER ==================== */
.footer-modern {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-contact-item:hover {
    color: var(--white);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--white);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* ==================== STEP ANIMATIONS (How It Works Section) ==================== */
.step-item.step-animate {
    opacity: 0;
    transform: translateX(-60px) scale(0.9);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-item.step-animate.step-animated {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.step-item.step-animate.step-delay-1 {
    transition-delay: 0.3s;
}

.step-item.step-animate.step-delay-2 {
    transition-delay: 0.6s;
}

.step-item.step-animate.step-delay-3 {
    transition-delay: 0.9s;
}

/* Step number pulse animation */
@keyframes stepPulse {
    0% {
        box-shadow: 0 10px 40px rgba(91, 99, 242, 0.3);
    }

    50% {
        box-shadow: 0 10px 50px rgba(91, 99, 242, 0.5), 0 0 30px rgba(91, 99, 242, 0.2);
    }

    100% {
        box-shadow: 0 10px 40px rgba(91, 99, 242, 0.3);
    }
}

.step-item.step-animated .step-number {
    animation: stepPulse 2s ease-in-out infinite;
    animation-delay: inherit;
}

/* Step icon float animation */
@keyframes stepIconFloat {

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

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

.step-item.step-animated .step-icon {
    animation: stepIconFloat 3s ease-in-out infinite;
}

.step-item.step-animate.step-delay-1 .step-icon {
    animation-delay: 0.5s;
}

.step-item.step-animate.step-delay-2 .step-icon {
    animation-delay: 1s;
}

.step-item.step-animate.step-delay-3 .step-icon {
    animation-delay: 1.5s;
}

/* Timeline line animation */
@keyframes timelineGrow {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.steps-timeline.timeline-animate::before {
    transform-origin: left;
    transform: scaleX(0);
    opacity: 0;
}

.steps-timeline.timeline-animated::before {
    animation: timelineGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Step hover effects */
.step-item.step-animated {
    cursor: default;
}

.step-item.step-animated:hover .step-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.step-item.step-animated:hover .step-content h3 {
    color: var(--primary-600);
    transition: color 0.3s ease;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

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

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

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

    .hero-login-card {
        max-width: 450px;
        margin: 0 auto;
        transform: none;
    }

    .floating-element {
        display: none;
    }

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

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .mobile-app-content p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .app-features-list {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .app-store-buttons {
        justify-content: center;
    }

    /* Phone showcase responsive - tablet */
    .phone-showcase-modern {
        flex-direction: column;
        gap: 2rem;
    }

    .phone-toggle-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .phone-toggle-buttons.left-buttons,
    .phone-toggle-buttons.right-buttons {
        align-items: center;
    }

    .phone-toggle-btn {
        padding: 0.75rem 1rem;
    }

    .toggle-text {
        font-size: 0.8rem;
    }

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

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

    .nav-actions .btn-nav-login {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

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

    .feature-tabs {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .feature-tab {
        min-width: auto;
        padding: 0.75rem 0.5rem;
        flex: 1 1 calc(33.33% - 0.5rem);
    }

    .feature-tab svg {
        width: 22px;
        height: 22px;
    }

    .feature-tab span {
        font-size: 0.65rem;
    }

    .feature-panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .feature-panel-text {
        padding-right: 0;
        order: 2;
    }

    .feature-panel-image {
        order: 1;
    }

    .feature-panel-title {
        font-size: 1.5rem;
    }

    .feature-panel-description {
        font-size: 1rem;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-list {
        flex-direction: column;
        gap: 1rem;
    }

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

    .mobile-floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

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

    .hero-login-card {
        padding: 1.5rem;
    }

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

    .app-store-buttons {
        flex-direction: column;
    }

    .app-store-btn {
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* Phone showcase responsive - mobile */
    .phone-showcase-modern {
        padding: 1rem 0;
    }

    .samsung-phone-frame {
        width: 220px;
        height: 460px;
        border-radius: 35px;
        padding: 10px;
    }

    .phone-screen-container {
        height: 400px;
        border-radius: 25px;
    }

    .phone-toggle-btn {
        padding: 0.6rem 0.8rem;
    }

    .toggle-icon {
        width: 28px;
        height: 28px;
    }

    .toggle-icon svg {
        width: 14px;
        height: 14px;
    }

    .toggle-text {
        font-size: 0.7rem;
    }

    .phone-glow-effect {
        width: 250px;
        height: 450px;
    }
}

/* ==================== DARK SECTION VARIANT ==================== */
.section-dark {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(74, 159, 232, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(168, 85, 199, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.section-dark .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-description {
    color: var(--gray-400);
}

/* ==================== LIGHT GRADIENT SECTION ==================== */
.section-light-gradient {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
}

/* ==================== TRUSTED BY / LOGO CLOUD SECTION ==================== */
.trusted-section {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.trusted-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.trusted-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trusted-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.trusted-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Logo Marquee Animation */
.logo-marquee {
    overflow: hidden;
    position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

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

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

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

/* ==================== STATS/METRICS SECTION ==================== */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(74, 159, 232, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(168, 85, 199, 0.2) 0%, transparent 50%);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.75rem;
}

.stats-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin: 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.2), rgba(168, 85, 199, 0.2));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-400);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-400), var(--secondary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Counter Animation */
.counter-animate {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--white);
}

.how-it-works-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(74, 159, 232, 0.3);
    position: relative;
}

.step-content {
    padding: 0 0.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-600);
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

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

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-100);
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: #FBBF24;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-400), var(--secondary-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

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

.testimonial-card.featured {
    border-color: var(--primary-200);
    background: linear-gradient(to bottom right, var(--white), var(--primary-50));
}

/* ==================== INTEGRATIONS SECTION ==================== */
.integrations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(74, 159, 232, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 199, 0.15) 0%, transparent 40%);
}

.integrations-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

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

.integrations-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem;
}

.integrations-text p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin: 0 0 2rem;
    line-height: 1.7;
}

.integration-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.integration-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.integration-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.integration-tag svg {
    width: 18px;
    height: 18px;
}

.integrations-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-hub {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 60px rgba(74, 159, 232, 0.5);
}

.integration-hub img {
    width: 60px;
    height: auto;
}

.integration-orbit {
    position: absolute;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
}

.orbit-1 {
    width: 250px;
    height: 250px;
    animation-duration: 30s;
}

.orbit-2 {
    width: 350px;
    height: 350px;
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: counterRotate 30s linear infinite;
}

.orbit-1 .orbit-icon {
    animation-duration: 30s;
}

.orbit-2 .orbit-icon {
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.orbit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

/* ==================== MOBILE APP SECTION (REDESIGNED) ==================== */
.mobile-app-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(74, 159, 232, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(168, 85, 199, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-app-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

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

.mobile-app-content {
    order: 2;
}

.section-dark .mobile-app-content h2 {
    color: var(--white);
}

.section-dark .mobile-app-content>p {
    color: var(--gray-400);
}

.mobile-app-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.mobile-app-content>p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0 0 2rem;
    line-height: 1.7;
}

/* App Feature List - Checkmark Style */
.app-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

.app-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

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

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    background: var(--gray-900);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    border: 2px solid var(--gray-900);
}

.app-store-btn:hover {
    background: var(--gray-800);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.app-store-btn svg {
    width: 28px;
    height: 28px;
}

.app-store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-store-btn-text small {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.app-store-btn-text span {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Phone Showcase */
.phone-showcase {
    position: relative;
    width: 280px;
    margin: 0 auto;
    order: 1;
}

.phone-frame {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, #2d2d44, #1a1a2e);
    border-radius: 40px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-screen {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: var(--gray-900);
}

.phone-screen img {
    width: 100%;
    display: block;
}

/* Phone Floating Elements */
.phone-notification {
    position: absolute;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: notificationFloat 4s ease-in-out infinite;
    z-index: 30;
    white-space: nowrap;
}

.notification-1 {
    top: 10%;
    right: -50%;
    animation-delay: 0s;
}

.notification-2 {
    top: 45%;
    left: -55%;
    animation-delay: -1.5s;
}

.notification-3 {
    bottom: 15%;
    right: -40%;
    animation-delay: -3s;
}

@keyframes notificationFloat {

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

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

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-800);
}

.notification-text {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* Glow effect behind phone */
.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74, 159, 232, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.faq-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-base);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-question:hover span {
    color: var(--primary-600);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-500);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--primary-600);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(74, 159, 232, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(168, 85, 199, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem;
}

.cta-content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-700);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-base);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ==================== ENHANCED ANIMATIONS ==================== */
/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--accent-purple);
    white-space: nowrap;
    animation: typing 3s steps(30) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Parallax Floating */
.parallax-float {
    animation: parallaxFloat 6s ease-in-out infinite;
}

@keyframes parallaxFloat {

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

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    75% {
        transform: translateY(10px) rotate(-1deg);
    }
}

/* Stagger Children Animation */
.stagger-children>* {
    opacity: 0;
    animation: staggerFadeIn 0.5s ease forwards;
}

.stagger-children>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-children>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-children>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-children>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-children>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-children>*:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Magnetic Hover Effect */
.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gradient Border Animation */
.gradient-border-animated {
    position: relative;
    background: var(--white);
    z-index: 1;
}

.gradient-border-animated::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-blue));
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Bounce In */
.bounce-in {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Slide In From Sides */
.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

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

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

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

/* ==================== UTILITIES ==================== */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-light {
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.05), rgba(168, 85, 199, 0.05));
}

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

/* Loading Animation */
.loading-skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==================== ADDITIONAL RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .steps-timeline::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .integrations-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .integrations-visual {
        display: none;
    }

    .mobile-app-grid {
        grid-template-columns: 1fr;
    }

    .mobile-app-content {
        order: 1;
        text-align: center;
    }

    .mobile-app-visual {
        order: 2;
    }

    .app-feature-list {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .app-store-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon svg {
        width: 22px;
        height: 22px;
    }

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

    .steps-timeline::before {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mobile-app-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mobile-app-content {
        order: 1;
        text-align: center;
    }

    .phone-showcase {
        order: 2;
    }

    .app-feature-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .phone-notification {
        display: none;
    }

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .trusted-logos {
        gap: 2rem;
    }
}