/* ===================================
   Hepsisalon Landing - Premium Enterprise v3
   =================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Palette */
    --primary-50: #EEF2FF;
    --primary-100: #E0E7FF;
    --primary-200: #C7D2FE;
    --primary-300: #A5B4FC;
    --primary-400: #818CF8;
    --primary-500: #6366F1;
    --primary-600: #4F46E5;
    --primary-700: #4338CA;
    --primary: #6366F1;
    --primary-glow: rgba(99, 102, 241, 0.4);

    /* Secondary */
    --secondary: #10B981;
    --secondary-light: #34D399;

    /* Accent */
    --accent: #F59E0B;
    --accent-light: #FBBF24;

    /* Neutrals */
    --white: #FFFFFF;
    --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;
    --gray-950: #030712;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
    --gradient-hero: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 25%, #FDF4FF 50%, #FEF3C7 100%);
    --gradient-dark: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    --gradient-card: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);

    /* Fonts */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --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: 0 0 60px rgba(99, 102, 241, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Accessibility - Skip Link ===== */
.skip-link:focus {
    position: fixed !important;
    left: 1rem !important;
    top: 1rem !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: 10000;
    box-shadow: var(--shadow-lg);
}

/* ===== Screen Reader Only (Hidden visually, accessible for SEO) ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Global Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

ul,
ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Text Utilities ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

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

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

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

.btn-xl {
    padding: 1.125rem 2.25rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-xl);
}

.btn-block {
    width: 100%;
}

/* ===== Badges ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-primary {
    background: var(--primary-100);
    color: var(--primary-700);
}

.badge-primary i {
    color: var(--accent);
}

.badge-outline {
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
}

.logo img {
    height: 42px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.nav-phone i {
    color: var(--primary);
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero-blob-1 {
    top: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.2);
}

.hero-blob-2 {
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.15);
    animation-delay: -7s;
}

.hero-blob-3 {
    top: 40%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.12);
    animation-delay: -14s;
}

@keyframes float {

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

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

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

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-desc strong {
    color: var(--gray-800);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 1.125rem;
    box-shadow: var(--shadow-sm);
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.highlight-text span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

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

.trust-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-logos span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
}

.trust-logos span i {
    font-size: 1.25rem;
}

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

.visual-wrapper {
    position: relative;
}

.visual-main {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.visual-main img {
    width: 100%;
    display: block;
}

.visual-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.5;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: floatCard 6s ease-in-out infinite;
}

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

.floating-card .card-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.floating-card .card-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

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

.card-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.card-stats {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.card-appointment {
    top: 55%;
    right: -40px;
    animation-delay: -2s;
}

.card-notification {
    bottom: 5%;
    left: 10%;
    animation-delay: -4s;
}

@keyframes floatCard {

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

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== Social Proof ===== */
.social-proof {
    padding: 4rem 0;
    background: var(--white);
}

.proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

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

/* ===== Section Styles ===== */
section {
    padding: 7rem 0;
}

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

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

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

/* ===== Your Brand Section ===== */
.your-brand {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.your-brand .section-header {
    color: var(--white);
}

.your-brand .section-header h2 {
    color: var(--white);
}

.your-brand .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.your-brand .section-badge {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-300);
}

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

.brand-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}

.brand-card.main-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

.brand-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

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

.store-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--gray-900);
}

.store-badge i {
    font-size: 1.5rem;
}

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

.store-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
}

.store-name {
    font-size: 0.875rem;
    font-weight: 700;
}

.your-app-name {
    text-align: center;
}

.app-placeholder {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.app-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.brand-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.brand-card h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.brand-card h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.brand-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.brand-card p strong {
    color: var(--white);
}

.brand-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.brand-features li i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.brand-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.brand-cta p strong {
    color: var(--white);
}

/* ===== Platforms Section ===== */
.platforms {
    background: var(--gray-50);
}

.platforms-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.platform-block.reverse {
    direction: rtl;
}

.platform-block.reverse>* {
    direction: ltr;
}

.platform-visual {
    position: relative;
}

.device-frame {
    position: relative;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    padding: 0.5rem;
    box-shadow: var(--shadow-2xl);
}

.device-screen {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

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

.device-mobile {
    max-width: 280px;
    margin: 0 auto;
    padding: 0.75rem;
    border-radius: var(--radius-2xl);
}

.device-mobile .device-screen {
    border-radius: var(--radius-xl);
}

/* Mobile Preview */
.mobile-preview {
    padding: 1rem;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1rem;
}

.mobile-header span:first-child {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-900);
}

.mobile-count {
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
}

.mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}

.item-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--primary);
}

.item-info {
    flex: 1;
}

.item-info strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.item-info span {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.item-status {
    font-size: 0.875rem;
}

.item-status.confirmed {
    color: var(--secondary);
}

.item-status.pending {
    color: var(--accent);
}

/* Platform Info */
.platform-info {
    padding: 2rem 0;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.platform-badge.mobile {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.platform-badge.desktop {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.platform-info h3 {
    margin-bottom: 1rem;
}

.platform-info>p {
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.feature-list li i {
    color: var(--secondary);
    font-size: 0.875rem;
}

/* ===== Mobile Gallery Carousel ===== */
.mobile-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-phone-frame {
    position: relative;
    width: 280px;
    padding: 12px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.mobile-phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
    z-index: 10;
}

.mobile-screen-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 9/19.5;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
}

.mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-slide.active {
    opacity: 1;
}

.mobile-gallery-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mobile-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-dot:hover {
    background: var(--gray-400);
}

/* Premium Cinematic Crossfade & Zoom */
.web-gallery,
.desktop-gallery,
.mobile-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.web-slide,
.desktop-slide,
.mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    /* Slight overlap to prevent seam */
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.9) blur(5px);
    transform: scale(1.12);
    transition:
        opacity 2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 2.5s cubic-bezier(0.4, 0, 0.2, 1),
        filter 2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.web-slide.active,
.desktop-slide.active,
.mobile-slide.active {
    opacity: 1;
    filter: brightness(1) blur(0);
    transform: scale(1);
    z-index: 2;
    position: relative;
    /* Maintain container height */
}

/* Device screen inner polish */
.device-screen {
    position: relative;
    background: #000;
    overflow: hidden;
}

.device-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    z-index: 10;
    border-radius: inherit;
}

/* Ensure images don't look flat */
.device-screen img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Modules Section ===== */
.modules {
    background: var(--gradient-dark);
    padding: 6rem 0;
}

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

.module-card {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.module-card.featured {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.module-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.module-card h4 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.module-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.module-features {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.module-features li {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 1rem;
    position: relative;
}

.module-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-400);
}

.modules-cta {
    text-align: center;
    margin-top: 4rem;
}

.modules-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.modules-cta p strong {
    color: var(--white);
}

/* ===== Integrations Section ===== */
.integrations {
    background: var(--white);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.integration-card {
    padding: 2rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.integration-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.integration-card.main {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-card);
}

.integration-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.integration-icon.whatsapp {
    background: #25D366;
    color: var(--white);
}

.integration-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.integration-icon.sms {
    background: var(--primary-100);
    color: var(--primary);
}

.integration-icon.email {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.integration-icon.calendar {
    background: rgba(234, 67, 53, 0.1);
    color: #EA4335;
}

.integration-icon.webhook {
    background: var(--gray-100);
    color: var(--gray-600);
}

.integration-card h4 {
    margin-bottom: 0.5rem;
}

.integration-card p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.integration-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== World-Class SaaS Gallery ===== */
.gallery {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Ambient Lighting Effect (Cinematic Glow) */
.gallery::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(99, 102, 241, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.gallery-tabs {
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 80px;
    padding: 6px;
    background: #f1f5f9;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.gallery-tab {
    padding: 10px 24px;
    border-radius: 12px;
    background: transparent;
    border: none;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
}

.gallery-tab:hover {
    color: #0f172a;
}

.gallery-tab.active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    font-weight: 700;
}

.gallery-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    display: none;
    opacity: 0;
}

.gallery-item.active {
    display: block;
    animation: fadeInUpPremium 0.5s ease-out forwards;
}

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

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

.gallery-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Premium Browser Mockup */
.gallery-main-visual {
    width: 100%;
    position: relative;
    border-radius: 16px;
    background: #ffffff;
    /* High-end distinct shadow layers */
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 10px 40px -10px rgba(0, 0, 0, 0.1),
        0 30px 60px -15px rgba(99, 102, 241, 0.15);
    /* Tinted shadow */
    transition: transform 0.3s ease;
    transform: translateZ(0);
    /* Hardware accel */
}

.visual-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    /* Fix blur on webkit */
}

/* Glass-like Browser Header */
.visual-inner::before {
    content: '';
    display: block;
    height: 48px;
    background: #ffffff;
    /* Removed blur to stay crisp */
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    z-index: 10;
}

/* Elegant Browser Dots */
.visual-inner::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 24px;
    width: 10px;
    height: 10px;
    background: #FF5F57;
    border-radius: 50%;
    box-shadow: 18px 0 0 #FEBC2E, 36px 0 0 #28C840;
    z-index: 11;
}

.sub-slide {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100% - 48px);
    object-fit: contain;
    object-position: top;
    opacity: 0;
    transition: opacity 0.4s ease;
    /* Simple fade for sharpness */
    will-change: opacity;
}

.sub-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-main-visual.single img {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100% - 48px);
    object-fit: contain;
    /* Crisp containment */
    object-position: top;
    image-rendering: -webkit-optimize-contrast;
    /* Force sharpness */
}

/* Content Typography & Layout */
.gallery-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gallery-info h4 {
    font-size: 42px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    /* Tighter tracking for modern look */
}

.gallery-info p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #334155;
    font-weight: 500;
    font-size: 16px;
}

/* Custom Check Circle Icons */
.feature-bullets li i {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    /* Subtle brand tint */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

/* Segmented Control Sub-Nav */
.sub-nav {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4px;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.sub-tab {
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
}

.sub-tab:hover {
    color: #0f172a;
}

.sub-tab.active {
    background: #f8fafc;
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
    /* Subtle inset */
}

@media (max-width: 1024px) {
    .gallery-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .gallery-info {
        align-items: center;
    }

    .gallery-tabs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 6px;
    }

    .gallery::before {
        display: none;
    }
}

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

    .gallery-tab {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

    .gallery-info h4 {
        font-size: 1.5rem;
    }
}


/* ===== Why Us Section ===== */
.why-us {
    background: var(--white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--gray-50);
}

.comparison-header .comparison-col {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.comparison-header .comparison-col.hepsisalon {
    background: var(--primary);
    color: var(--white);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-top: 1px solid var(--gray-100);
}

.comparison-row .comparison-col {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
}

.comparison-row .comparison-col:first-child {
    font-weight: 500;
    color: var(--gray-700);
}

.comparison-row .comparison-col.others {
    color: var(--gray-500);
    background: var(--gray-50);
}

.comparison-row .comparison-col.others i {
    color: #EF4444;
    margin-right: 0.5rem;
}

.comparison-row .comparison-col.hepsisalon {
    background: var(--primary-50);
    color: var(--gray-700);
    font-weight: 500;
}

.comparison-row .comparison-col.hepsisalon i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* ===== Services Section ===== */
.services {
    background: var(--gradient-dark);
}

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

.service-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.3);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--gray-50);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

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

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

.faq-question i {
    color: var(--gray-400);
    transition: var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
}

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

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content>p {
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
}

.cta-feature i {
    color: var(--secondary);
}

.cta-form-wrapper {
    display: flex;
    justify-content: center;
}

.cta-form-card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.cta-form-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-100);
}

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

.cta-form .btn {
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* ===== Contact Info ===== */
.contact-info {
    padding: 4rem 0;
    background: var(--white);
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.375rem;
    margin: 0 auto 1rem;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
}

.contact-card a {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 1.125rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-links h5 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-company a {
    color: var(--primary-400);
}

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

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

.footer-legal a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.625rem 1rem;
    background: var(--gray-900);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gray-900);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 2px 12px rgba(0, 0, 0, 0.15), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-desc {
        margin: 0 auto 2rem;
    }

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

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

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        max-width: 600px;
        margin: 3rem auto 0;
    }

    .floating-card {
        display: none;
    }

    .platform-block,
    .platform-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }

    .platform-info {
        order: 2;
    }

    .platform-visual {
        order: 1;
        max-width: 100%;
        /* Fix width constraint */
        margin: 0 auto 2rem;
        display: block !important;
        /* Force visible */
    }

    .feature-list {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .brand-card.main-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-features {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 2rem;
        width: auto;
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 8rem 0 6rem;
    }

    .proof-stats {
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-header .comparison-col,
    .comparison-row .comparison-col {
        padding: 0.75rem 1rem;
    }

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

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

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

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

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .hero {
        padding: 7rem 0 4rem;
    }

    .hero-badges {
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .highlight-item {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Stats */
    .proof-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    /* Brand Section */
    .store-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    /* Modules */
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        padding: 1.25rem;
    }

    /* Integrations */
    .integrations-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    /* Gallery rules for mobile removed to allow horizontal scroll override later */

    /* Comparison Table */
    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-header .comparison-col,
    .comparison-row .comparison-col {
        padding: 0.5rem;
    }

    .comparison-header {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    /* CTA Form */
    .cta-form-card {
        padding: 1.5rem;
    }

    /* Contact */
    .contact-card {
        padding: 1.5rem;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Mobile Phone Frame */
    .mobile-phone-frame {
        width: 220px;
        padding: 8px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* ===== Extra Small Devices (360px and below) ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.625rem;
    }

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

    .btn-xl {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .highlight-item {
        padding: 0.5rem;
    }

    .highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .highlight-text strong {
        font-size: 0.8125rem;
    }

    .highlight-text span {
        font-size: 0.6875rem;
    }

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

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

    .module-card {
        padding: 1rem;
    }

    .module-icon {
        font-size: 1.5rem;
    }

    .module-card h4 {
        font-size: 0.9375rem;
    }

    .module-card p {
        font-size: 0.75rem;
    }

    .integration-card {
        padding: 1.25rem;
    }

    .integration-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .service-card {
        padding: 1.25rem;
    }

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

    .faq-question {
        padding: 0.875rem;
        font-size: 0.875rem;
    }

    .faq-answer p {
        padding: 0 0.875rem 1rem;
        font-size: 0.8125rem;
    }

    .cta-form-card {
        padding: 1.25rem;
    }

    .form-group input {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .mobile-phone-frame {
        width: 180px;
        padding: 6px;
    }

    .mobile-gallery-dots {
        gap: 6px;
    }

    .mobile-dot {
        width: 8px;
        height: 8px;
    }

    .mobile-dot.active {
        width: 20px;
    }
}

/* ===== Enhanced Mobile Touch & Accessibility ===== */

/* Minimum touch target size (44x44px for iOS, 48x48px for Android) */
@media (hover: none) and (pointer: coarse) {

    .btn,
    .nav-link,
    .gallery-tab,
    .faq-question,
    .nav-phone,
    .footer-social a,
    .mobile-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    .gallery-tab {
        padding: 0.875rem 1.25rem;
    }

    .mobile-dot {
        width: 12px;
        height: 12px;
    }

    .mobile-dot.active {
        width: 32px;
    }

    /* Improve tap feedback */
    .btn,
    .nav-link,
    .gallery-tab,
    .faq-question {
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
    }

    /* Prevent accidental zooming on form inputs */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Better scrolling on touch */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Disable hover effects on touch devices */
    .btn:hover,
    .nav-link:hover,
    .module-card:hover,
    .integration-card:hover,
    .service-card:hover,
    .brand-card:hover {
        transform: none;
    }
}

/* ===== iOS Safe Area Support ===== */
@supports (padding: max(0px)) {
    .navbar {
        padding-top: max(1rem, env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 10px));
        right: max(20px, calc(env(safe-area-inset-right) + 10px));
    }
}

/* ===== PWA & Mobile Fullscreen ===== */
@media (display-mode: standalone) {
    .navbar {
        padding-top: 1.5rem;
    }
}

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

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

    .hero-blob,
    .floating-card {
        animation: none;
    }
}

/* ===== Dark Mode Support ===== */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
}

/* ===== High Contrast Mode ===== */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--white);
    }

    .btn-ghost {
        border-width: 2px;
    }

    .nav-link::after {
        height: 3px;
    }
}

/* ===== Print Styles ===== */
@media print {

    .navbar,
    .whatsapp-float,
    .hero-blob,
    .floating-card,
    .footer-social {
        display: none !important;
    }

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

    .hero {
        background: white !important;
        padding: 2rem 0 !important;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ===== Landscape Mobile Optimization ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-wrapper {
        gap: 2rem;
    }

    .hero-highlights {
        display: none;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* ===== Improve Form UX on Mobile ===== */
@media (max-width: 768px) {
    .form-group input:focus {
        box-shadow: 0 0 0 4px var(--primary-100);
    }

    .faq-item.active .faq-answer {
        max-height: 400px;
        /* Larger for mobile to prevent clipping */
    }

    /* Full-width buttons on mobile */
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Better spacing for readability */
    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Fixed header space */
    section {
        scroll-margin-top: 70px;
    }
}

/* ===== Enhanced Mobile Menu ===== */
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 2rem 2rem;
    z-index: 999;
    gap: 0;
    animation: slideInMenu 0.3s ease-out;
}

.nav-menu.mobile-active .nav-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.nav-menu.mobile-active .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    padding: 0.5rem 0;
}

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

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

/* Mobile menu toggle animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== Better Mobile Form Styling ===== */
@media (max-width: 768px) {
    .cta-form-card {
        box-shadow: var(--shadow-xl);
    }

    .form-group input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: var(--radius-lg);
    }

    .form-group input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px var(--primary-100);
    }

    .btn-block {
        padding: 1rem;
        font-size: 1.0625rem;
    }
}

/* ===== Mobile Card Improvements ===== */
@media (max-width: 480px) {

    .module-card,
    .integration-card,
    .service-card,
    .brand-card {
        border-radius: var(--radius-lg);
    }

    .contact-card {
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto 1rem;
    }
}

/* ===== Better Mobile Navigation Bar ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .logo span {
        font-size: 1.25rem;
    }
}

/* ===== Mobile Stat Counter ===== */
@media (max-width: 480px) {
    .social-proof {
        padding: 2rem 0;
    }

    .proof-content {
        padding: 1.5rem 1rem;
    }

    .stat-item {
        padding: 0.5rem 0;
    }
}

/* ===== Mobile Gallery Improvements ===== */
@media (max-width: 768px) {
    .gallery-item img {
        border-radius: var(--radius-lg);
    }

    .gallery-caption {
        padding: 1rem;
    }

    .gallery-caption h4 {
        font-size: 1rem;
    }

    .gallery-caption p {
        font-size: 0.875rem;
    }
}

/* ===== Mobile Platform Section ===== */
@media (max-width: 768px) {
    .platform-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .platform-info h3 {
        font-size: 1.25rem;
    }

    .platform-info p {
        font-size: 0.9375rem;
    }

    .feature-list li {
        font-size: 0.875rem;
        padding: 0.375rem 0;
    }
}

/* ===== Mobile Why Us Section ===== */
@media (max-width: 480px) {

    .comparison-header .comparison-col.hepsisalon,
    .comparison-row .comparison-col.hepsisalon {
        font-size: 0.6875rem;
    }

    .comparison-row .comparison-col:first-child {
        font-weight: 500;
    }
}

/* ===== Mobile FAQ Improvements ===== */
@media (max-width: 480px) {
    .faq-grid {
        gap: 0.75rem;
    }

    .faq-item {
        border-radius: var(--radius-lg);
    }

    .faq-answer p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* ===== Mobile CTA Section ===== */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-feature {
        font-size: 0.875rem;
    }
}

/* ===== Mobile Contact Section ===== */
@media (max-width: 480px) {
    .contact-info {
        padding: 3rem 0;
    }

    .contact-card h4 {
        font-size: 1rem;
    }

    .contact-card a {
        font-size: 0.9375rem;
    }
}

/* ===== Mobile Footer ===== */
@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 2rem;
    }

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

    .footer-links h5 {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

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

    .footer-bottom {
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ===== Better Touch Interaction Feedback ===== */
@media (hover: none) and (pointer: coarse) {

    .btn:active,
    .gallery-tab:active,
    .faq-question:active,
    .module-card:active,
    .integration-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    /* Remove hover states that don't work well on touch */
    .btn-primary:hover {
        transform: none;
    }

    .btn-ghost:hover {
        background: transparent;
    }
}

/* ===== Smooth Scrolling Enhancement ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }

    * {
        scroll-behavior: smooth;
    }
}

/* ===== Better Focus States for Accessibility ===== */
@media (max-width: 768px) {

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 3px solid var(--primary);
        outline-offset: 2px;
    }
}

/* ===== Mobile Performance Optimizations ===== */
@media (max-width: 768px) {

    /* Reduce animation complexity on mobile */
    .hero-blob {
        animation-duration: 30s;
    }

    .floating-card {
        animation: none;
    }

    /* Optimize images for mobile */
    img {
        content-visibility: auto;
    }

    /* Hardware acceleration for smoother scrolling */
    .navbar,
    .whatsapp-float {
        will-change: transform;
    }
}

/* ===== Ultra-Wide Screen Support ===== */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero-desc {
        font-size: 1.375rem;
    }
}

/* ===== Mobile Orientation Lock Indicator ===== */
@media (max-height: 450px) and (orientation: landscape) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }
}

/* ===== Enhanced Mobile Navbar Actions ===== */
@media (max-width: 768px) {
    .nav-actions.mobile-visible {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 998;
        gap: 1rem;
        justify-content: center;
    }

    .nav-actions.mobile-visible .btn {
        flex: 1;
        max-width: 200px;
    }

    .nav-actions.mobile-visible .nav-phone {
        display: none;
    }
}

/* ===== MOBILE TOGGLE BUTTON ===== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: rgba(99, 102, 241, 0.08);
        border-radius: 12px;
        z-index: 10001;
        position: relative;
    }

    .mobile-toggle span {
        width: 20px;
        height: 2.5px;
        background: #6366F1;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-toggle.active {
        background: rgba(99, 102, 241, 0.15);
    }
}

/* HIDE STRAY DOTS in Typography */
section p .swiper-pagination-bullet,
section h1 .swiper-pagination-bullet,
section h2 .swiper-pagination-bullet,
section h3 .swiper-pagination-bullet {
    display: none !important;
}

/* FIX: Ensure no list markers on cards */
.module-card ul,
.brand-card ul,
.service-card ul {
    list-style: none !important;
    padding-left: 0 !important;
}

/* ===== PROFESSIONAL MOBILE BUTTONS & CARDS ===== */
@media (max-width: 768px) {

    /* Global Mobile Adjustments */
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 6rem 0 3rem;
        background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 100%);
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
        margin-bottom: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
        /* Force smaller size */
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        color: var(--gray-600);
    }

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

    .hero-badges {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .hero-highlights {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .highlight-item {
        width: 100%;
        justify-content: flex-start;
        background: white;
        padding: 1rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

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

    .hero-visual {
        margin-bottom: 2rem;
        /* Ensure normal flow */
        order: unset;
    }

    /* Professional CTA Buttons */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 14px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }

    .btn-primary {
        background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
        box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    }

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

    .btn-xl {
        padding: 1.125rem 2rem;
        font-size: 1.0625rem;
        border-radius: 16px;
    }

    .btn-ghost {
        background: #F9FAFB;
        border: 1px solid #E5E7EB;
        color: #374151;
    }

    /* Professional Card Styling - Glassmorphism */
    /* Professional Card Styling - Glassmorphism */
    .integration-card,
    .contact-card,
    .cta-form-card {
        padding: 1.5rem;
        border-radius: 20px;
        background: #ffffff !important;
        /* Force white background */
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
        margin-bottom: 1rem;
    }

    /* Brand Cards - Dark Theme on Mobile */
    .brand-card {
        padding: 1.5rem;
        border-radius: 20px;
        background: #1e293b !important;
        /* Dark Slate / Navy */
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
        margin-bottom: 1rem;
    }

    .brand-card h3,
    .brand-card h4 {
        color: #ffffff !important;
    }

    .brand-card p {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .brand-card .brand-icon {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }

    .brand-features li {
        color: rgba(255, 255, 255, 0.8) !important;
        display: flex !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
        align-items: center;
        gap: 0.5rem;
    }

    .brand-features {
        display: block !important;
        padding-left: 0 !important;
        margin-top: 1rem !important;
    }

    .store-badge {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .store-badge i,
    .store-name,
    .store-label {
        color: #ffffff !important;
    }


    .module-card h4,
    .integration-card h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--gray-900);
    }

    .module-card p,
    .brand-card p,
    .integration-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: var(--gray-600);
    }

    /* Module Cards - Dark Theme on Mobile */
    .module-card {
        padding: 1.5rem;
        border-radius: 20px;
        background: #1e293b !important;
        /* Dark Slate / Navy */
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
        margin-bottom: 1rem;
    }

    .module-card h4 {
        color: #ffffff !important;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .module-card p {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .module-card .module-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        display: flex;
        font-size: 1.5rem;
        align-items: center;
        justify-content: center;
    }

    .module-features li {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Service Cards - Dark Theme on Mobile */
    .service-card {
        padding: 1.5rem;
        border-radius: 20px;
        background: #1e293b !important;
        /* Dark Slate / Navy */
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
        margin-bottom: 1rem;
    }

    .service-card .service-number {
        font-size: 2.5rem;
        background: none !important;
        color: #6366F1 !important;
        /* Keep primary color for number */
        -webkit-text-fill-color: initial !important;
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        margin-bottom: 0.5rem;
        display: block;
    }

    .service-card h3 {
        color: #ffffff !important;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    /* Clean up mobile overrides */
    .brand-features,
    .module-features {
        padding-left: 0;
        margin-top: 1rem;
        list-style: none;
    }

    /* FORCE IMAGES VISIBLE ON MOBILE (Disable JS Animations) */
    .hero-visual,
    .platform-block,
    .platform-visual,
    .platform-visual img,
    .device-screen img {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    /* Feature Lists in Cards */
    .module-features,
    .brand-features {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px solid #F3F4F6;
    }

    .module-features li,
    .brand-features li {
        font-size: 0.9375rem;
        color: var(--gray-600);
        margin-bottom: 0.625rem;
        display: flex;
        align-items: center;
        gap: 0.625rem;
    }

    .module-features li i,
    .brand-features li i {
        color: #10B981;

        /* Success Green */
        /* Gallery & Tabs - Horizontal Scroll Fix */
        .gallery-tabs {
            display: flex;
            flex-direction: row !important;
            /* Force row */
            flex-wrap: nowrap !important;
            gap: 0.75rem;
            padding-bottom: 1rem;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            width: 100%;
            scrollbar-width: none;
            /* Firefox */
            margin: 0;
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            justify-content: flex-start !important;
            /* Start from left */
        }

        .gallery-tabs::-webkit-scrollbar {
            display: none;
            /* Chrome/Safari */
        }

        white-space: nowrap;
    }

    .gallery-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        border-radius: 100px;
        background: #F3F4F6;
        color: #4B5563;
        font-weight: 600;
        border: 1px solid transparent;
        transition: all 0.2s;
    }

    .gallery-tab.active {
        background: var(--primary);
        color: white;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }

    /* Form Card Mobile */
    .cta-form-card {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 24px;
        box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
    }

    .cta-form-card h3 {
        font-size: 1.5rem;
    }

    .form-group input {
        height: 54px;
        /* Larger touch target */
        font-size: 1rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
        text-align: left;
        /* Often easier to read on mobile */
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Badges */
    .section-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        background: #EEF2FF;
        color: #4F46E5;
        border-radius: 100px;
        margin-bottom: 1rem;
        display: inline-block;
    }

    /* Footer / Contact Mobile */
    .contact-card {
        padding: 1.5rem;
    }

    /* Fix potential overflow */
    .visual-main {
        border-radius: 16px;
    }
}

/* FINAL OVERRIDE: FORCE HORIZONTAL SCROLL ON GALLERY TABS */
@media (max-width: 768px) {
    .gallery-tabs {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        gap: 0.75rem !important;
        padding-bottom: 5px !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .gallery-tab {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: fit-content !important;
    }

    /* Hide scrollbar but allow functionality */
    .gallery-tabs::-webkit-scrollbar {
        display: none !important;
        height: 0 !important;
    }
}

/* ===== City-based SEO Section ===== */
.city-seo {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 5rem 0;
}

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

.city-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.city-card:hover {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.city-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-card h3::before {
    content: '📍';
    font-size: 1rem;
}

.city-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.city-card strong {
    color: var(--gray-800);
}

.city-more {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--primary-200);
}

.city-more p {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

/* City Section Responsive */
@media (max-width: 992px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .city-seo {
        padding: 3rem 0;
    }

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

    .city-card {
        padding: 1.25rem;
    }

    .city-card h3 {
        font-size: 1rem;
    }
}