/* ==========================================================================
   AiFotonex Master SaaS Landing Page Stylesheet - home.css
   - Flat Full-Width Sticky Header with Scroll Background Color
   - Mobile Slide-in Side Drawer Menu
   - Enhanced Light & Dark Mode Color Palette
   - 100% SEO & Accessibility Friendly
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-inter: 'Inter', sans-serif;

    /* Dark Mode Defaults */
    --bg-primary: #06050b;
    --bg-secondary: #0d0c14;
    --bg-card: #13121b;
    --bg-card-hover: #1b1926;

    --text-primary: #ffffff;
    --text-secondary: #aba8bf;
    --text-muted: #7e7a96;

    --header-bg: rgba(6, 5, 11, 0.6);
    --header-scrolled-bg: rgba(13, 12, 20, 0.95);

    /* Accents */
    --primary: #6c63ff;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --secondary: #ff6b6b;
    --accent-cyan: #00f2fe;
    --accent-green: #10b981;
    --accent-gold: #ffb300;

    /* Gradients */
    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
    --primary-gradient: linear-gradient(135deg, #6c63ff 0%, #00f2fe 100%);
    --gold-gradient: linear-gradient(135deg, #ffb300 0%, #ff7730 100%);
    --card-gradient: linear-gradient(145deg, rgba(27, 25, 38, 0.85) 0%, rgba(13, 12, 20, 0.95) 100%);

    --border-subtle: rgba(255, 255, 255, 0.12);
    --border-active: rgba(139, 92, 246, 0.5);
    --shadow-card: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 10px 40px rgba(124, 58, 237, 0.4);

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 100px;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Mode Theme Improvements */
[data-theme="light"],
body.light {
    --bg-primary: #f8f9fe;
    --bg-secondary: #eeeefc;
    --bg-card: #ffffff;
    --bg-card-hover: #f3f0ff;

    --text-primary: #120e2e;
    --text-secondary: #4a4768;
    --text-muted: #787596;

    --header-bg: rgba(248, 249, 254, 0.75);
    --header-scrolled-bg: rgba(255, 255, 255, 0.96);

    --border-subtle: rgba(108, 99, 255, 0.12);
    --border-active: rgba(124, 58, 237, 0.4);
    --shadow-card: 0 20px 40px -10px rgba(108, 99, 255, 0.08);
    --card-gradient: linear-gradient(145deg, #ffffff 0%, #f4efff 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    transition: background-color 0.4s var(--transition), color 0.4s var(--transition);
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: var(--font-display);
    line-height: 1.25;
    color: var(--text-primary);
}

/* Full Width Fluid Layout */
.full-width-container {
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    box-sizing: border-box;
}

.full-width-section {
    width: 100%;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background Particles */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    max-width: 100vw;
}

.glow-purple {
    background: #7c3aed;
    width: 550px;
    height: 550px;
}

.glow-cyan {
    background: #00f2fe;
    width: 450px;
    height: 450px;
}

.glow-pink {
    background: #ec4899;
    width: 400px;
    height: 400px;
}

/* Section Header Styling */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: var(--accent-light);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

[data-theme="light"] .section-badge {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-dark);
}

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

/* Mobile */
@media (max-width: 576px) {
    .section-badge {
        font-size: 0.6rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .section-badge {
        font-size: 0.6rem;
    }
}

.section-header-center {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 55px auto;
}

.section-header-center h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

/* Button System */
.btn-saas-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-saas-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px var(--shadow-glow);
    filter: brightness(1.15);
}

.btn-saas-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-saas-outline:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--accent-light);
    transform: translateY(-3px);
}

/* ==========================================================================
   1. FLAT STICKY HEADER (NO CORNER ROUNDING, SCROLL BG COLOR CHANGE)
   ========================================================================== */
header.saas-header-flat {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--transition), backdrop-filter 0.4s var(--transition), border-color 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

header.saas-header-flat.scrolled {
    background: var(--header-scrolled-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.saas-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.saas-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--text-primary);
}

.saas-logo img {
    height: 36px;
    width: auto;
}

.nav-links-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item-link {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-item:hover .nav-item-link {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.15);
}

.mega-menu-box {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(30px);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transition-delay: 0.15s;
    pointer-events: none;
    z-index: 1100;
}

.mega-menu-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 25px;
}

.nav-item:hover .mega-menu-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.mega-grid-2col {
    display: grid;
    grid-template-columns: 310px 310px;
    gap: 14px;
}

.mega-grid-3col {
    display: grid;
    grid-template-columns: 250px 250px 250px;
    gap: 14px;
}

.mega-option-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: var(--transition);
}

.mega-option-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

.mega-opt-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-cyan);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-opt-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mega-opt-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-cyan);
}

/* Mobile Hamburger Toggle */
.mobile-hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px;
}

/* ==========================================================================
   2. MOBILE SLIDE-IN SIDE DRAWER MENU
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-drawer-content {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85%;
    background: var(--bg-card);
    border-left: 1px solid var(--border-subtle);
    z-index: 2001;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.4s var(--transition);
    overflow-y: auto;
}

.mobile-drawer-overlay.active .mobile-drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
}

/* Drawer Appearance / Theme Mode Switcher */
.drawer-theme-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    cursor: pointer;
    transition: var(--transition);
}

.drawer-theme-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--border-active);
}

.drawer-theme-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.drawer-theme-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.drawer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-link-item {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.drawer-link-item:hover {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-light);
}

.drawer-link-item i.drawer-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.drawer-link-item.active i.drawer-chevron {
    transform: rotate(180deg);
}

.drawer-submenu {
    display: none;
    list-style: none;
    padding-left: 12px;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px;
    margin-bottom: 6px;
}

.drawer-submenu.open {
    display: flex;
}

.drawer-sublink-item {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.drawer-sublink-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.drawer-sublink-item i {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.drawer-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.drawer-btn-login,
.drawer-btn-signup {
    width: 100%;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.92rem;
    padding: 12px 20px;
    text-align: center;
}

/* ==========================================================================
   3. HERO SECTION (CENTER ALIGNED & FULL-WIDTH)
   ========================================================================== */
.hero-center-section {
    padding: 140px 0 90px 0;
    position: relative;
    text-align: center;
}

.hero-center-content {
    max-width: 940px;
    margin: 0 auto 50px auto;
}

.hero-center-title {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-center-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.price-pill-banner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    margin-bottom: 35px;
}

.price-pill-banner .pill-val {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-pill-banner .pill-sub {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-scanner-center-box {
    max-width: 880px;
    margin: 30px auto 0 auto;
    background: var(--card-gradient);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.scanner-view-box {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
}

.scanner-view-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Hero Pills Positioning */
.floating-hero-pill {
    position: absolute;
    background: rgba(19, 18, 27, 0.92);
    border: 1px solid rgba(0, 242, 254, 0.4);
    backdrop-filter: blur(15px);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 8;
    transition: var(--transition);
}

.floating-hero-pill:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
}

.pill-pos-top-left {
    top: -20px;
    left: 20px;
}

.pill-pos-top-right {
    top: -20px;
    right: 20px;
}

.pill-pos-bottom-left {
    bottom: -20px;
    left: 20px;
}

.pill-pos-bottom-right {
    bottom: -20px;
    right: 20px;
}

/* Floating Selfie Cards with Scan Animation */
.floating-selfie-card {
    position: absolute;
    width: 190px;
    background: rgba(13, 12, 20, 0.95);
    border: 1px solid var(--border-active);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    z-index: 10;
    transition: var(--transition);
}

.floating-selfie-card.selfie-left {
    top: 50%;
    left: -75px;
    transform: translateY(-50%);
}

.floating-selfie-card.selfie-right {
    top: 50%;
    right: -75px;
    transform: translateY(-50%);
}

.floating-selfie-card:hover {
    transform: translateY(calc(-50% - 5px)) scale(1.03);
    border-color: #00f2fe;
    box-shadow: 0 25px 60px rgba(0, 242, 254, 0.3);
}

.selfie-img-container {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.selfie-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selfie-face-box {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 60%;
    height: 65%;
    border: 2px dashed #00f2fe;
    border-radius: 10px;
    overflow: hidden;
}

.selfie-face-box.matched {
    border: 2px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
}

.match-check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #10b981;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
}

.selfie-scan-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f2fe, #7c3aed, transparent);
    box-shadow: 0 0 12px #00f2fe;
    animation: selfieLaserSweep 2s ease-in-out infinite alternate;
}

@keyframes selfieLaserSweep {
    0% {
        top: 5%;
    }

    100% {
        top: 90%;
    }
}

.selfie-card-info {
    text-align: center;
}

.selfie-badge-scanning {
    display: inline-block;
    background: rgba(0, 242, 254, 0.15);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.selfie-badge-matched {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.selfie-card-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ==========================================================================
   4. SHOWCASE GALLERY THUMBNAILS (5 THUMBNAILS - NO OVERLAY TEXT, HORIZ SCROLL ON MOBILE)
   ========================================================================== */
.showcase-marquee-section {
    padding: 70px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
}

.gallery-thumbnails-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}

.gallery-thumbnail-card {
    position: relative;
    width: 100%;
    height: 520px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-card);
}

.gallery-thumbnail-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.35);
}

.gallery-thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition);
}

.gallery-thumbnail-card:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   5. FEATURE SECTIONS & ICON CARDS
   ========================================================================== */
.section-face-tech {
    padding: 110px 0;
}

.face-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.face-tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
}

.face-tech-icon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.face-tech-icon-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    background: rgba(139, 92, 246, 0.1);
}

.face-tech-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-cyan);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.face-tech-card-info h5 {
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.face-tech-card-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

/* Drive Section */
.section-drive-integration {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.drive-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.drive-accounts-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.drive-btn-icon-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.drive-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.drive-icon-pill i {
    color: #00f2fe;
}

.drive-icon-pill:hover {
    background: rgba(0, 242, 254, 0.18);
    border-color: #00f2fe;
}

/* Viral Leads */
.section-viral-leads {
    padding: 110px 0;
}

.lead-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.lead-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.lead-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1.5px solid var(--border-active);
    color: var(--accent-cyan);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    background: transparent;
    transition: var(--transition);
}

.lead-step-card:hover .lead-step-icon {
    border-color: var(--accent-cyan);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

/* QR Standees Section */
.section-qr-showcase {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.qr-section-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.vertical-qr-standee-card {
    position: relative;
    width: 320px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(30, 33, 65, 0.9) 0%, rgba(15, 16, 35, 0.95) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: 10px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.qr-image-holder {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.qr-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating QR Cards touching directly next to main standee card */
.floating-qr-card {
    position: absolute;
    width: 160px;
    background: rgba(13, 12, 20, 0.95);
    border: 1px solid var(--border-active);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 10px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    z-index: 5;
    transition: var(--transition);
}

.floating-qr-card.qr-left {
    top: 20%;
    left: 95px;
}

.floating-qr-card.qr-right {
    bottom: 20%;
    right: 95px;
}

.floating-qr-card img {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.floating-qr-card div {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Static Center Aligned QR Showcase (Mobile Horiz Scroll) */
.qr-marquee-container {
    width: 100%;
    margin-top: 50px;
}

.qr-marquee-track.static-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.qr-card-mini {
    width: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.qr-card-mini:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

.qr-card-mini img.qr-img-preview {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    background: #fff;
    padding: 6px;
}

/* Privacy Role Switcher */
.section-gallery-privacy {
    padding: 110px 0;
}

.privacy-tabs-container {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.privacy-roles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.role-switcher-header {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.role-tab-btn {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.role-tab-btn.active {
    background: var(--accent-gradient);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

/* Gallery Security Demo Link Cards (Border ONLY on hover) */
.security-demo-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.security-demo-card {
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.security-demo-card:hover {
    background: var(--bg-card);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.2);
}

.security-demo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin: 0 auto 14px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.security-demo-card h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.security-demo-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.4;
}

.security-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    transition: var(--transition);
}

.security-demo-card:hover .security-demo-btn {
    background: var(--accent-gradient);
    color: #fff !important;
    border-color: transparent;
}

/* PWA App (2 Side by Side Cards Layout) */
.pwa-app-section {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.pwa-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 35px;
}

.pwa-feature-card-full {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.pwa-feature-card-full:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

/* E-Album Showcase Typography & Theme Sync */
.app-showcase {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.app-showcase h2 {
    font-family: var(--font-display);
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.app-showcase p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.phone-mockup-landscape {
    max-width: 800px;
    margin: 35px auto 40px auto;
}

.phone-frame {
    background: var(--bg-card);
    border: 2px solid var(--border-active);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.phone-frame img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.app-feature-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.app-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.app-feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.app-feature-item p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.app-feature-item.active,
.app-feature-item:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.08);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

/* Website Showcase */
.portfolio-website-showcase {
    padding: 110px 0;
    background: var(--bg-primary);
}

.portfolio-promo-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.promo-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

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

.promo-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.portfolio-templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.website-template-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.square-thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.square-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Testimonials & Indian Photographers Reviews */
.testimonials {
    padding: 110px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.15);
}

.indian-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.indian-review-card {
    background: linear-gradient(145deg, rgba(27, 25, 38, 0.95) 0%, rgba(19, 18, 27, 0.98) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.indian-review-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.2);
}

/* Screenshots Carousel - Full Width */
.screenshots {
    padding: 110px 0;
    background: var(--bg-primary);
}

.screenshots .full-width-container {
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 35px auto 0 auto;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 100%;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex-shrink: 0;
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    transition: var(--transition);
}

.carousel-item:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.2);
}

.carousel-item img {
    width: 100%;
    display: block;
}

.carousel-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.carousel-nav:hover {
    background: var(--accent-gradient);
    color: #fff !important;
    border-color: transparent;
}

/* FAQ */
.faq {
    padding: 110px 0;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 22px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 28px 22px 28px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Pricing */
.section-pricing-calculator {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.price-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.price-box.popular {
    border: 2px solid var(--accent);
    box-shadow: 0 0 35px var(--shadow-glow);
}

/* ==========================================================================
   MOBILE & RESPONSIVE RULES (SUPER MOBILE FRIENDLY)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links-menu {
        display: none;
    }

    .mobile-hamburger-btn {
        display: block;
    }

    .face-tech-grid,
    .drive-feature-grid,
    .qr-section-grid,
    .privacy-roles-grid,
    .pwa-cards-grid,
    .pricing-cards-container,
    .indian-reviews-grid {
        grid-template-columns: 1fr;
    }

    .lead-steps-grid,
    .portfolio-templates-grid,
    .promo-features-grid,
    .testimonials-grid,
    .app-feature-selector,
    .security-demo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-thumbnails-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .floating-selfie-card.selfie-left {
        left: -10px;
        top: 10%;
        transform: none;
    }

    .floating-selfie-card.selfie-right {
        right: -10px;
        bottom: 10%;
        transform: none;
    }

    .floating-qr-card.qr-left {
        left: 0;
    }

    .floating-qr-card.qr-right {
        right: 0;
    }
}

@media (max-width: 768px) {
    .gallery-thumbnails-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-thumbnail-card {
        flex-shrink: 0;
        width: 220px;
        scroll-snap-align: start;
    }

    .qr-marquee-track.static-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .qr-card-mini {
        scroll-snap-align: start;
    }

    .floating-selfie-card {
        position: relative;
        inset: auto !important;
        width: 100%;
        margin-top: 15px;
        transform: none !important;
    }

    .floating-hero-pill {
        position: static !important;
        margin: 10px 0;
    }

    .floating-qr-card {
        position: relative;
        inset: auto !important;
        width: 100%;
        margin-top: 15px;
    }

    .security-demo-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .hero-center-title {
        font-size: 2.2rem;
    }

    .hero-center-subtitle {
        font-size: 1.05rem;
    }

    .lead-steps-grid,
    .portfolio-templates-grid,
    .promo-features-grid,
    .testimonials-grid,
    .app-feature-selector,
    .face-tech-cards-grid {
        grid-template-columns: 1fr;
    }

    .scanner-view-box {
        height: 280px;
    }

    .full-width-section {
        padding: 70px 0;
    }
}

/* ==========================================================================
   NEW FEATURES & ADVANCED RESPONSIVE STYLES
   ========================================================================== */

/* Hero Selfie Right Side & Vertical Mobile View Box */
.floating-selfie-card.selfie-right-side {
    top: 15%;
    right: -45px;
    transform: rotate(2deg);
}

.scanner-view-box.hero-vertical-mobile-box {
    max-width: 290px;
    height: 500px;
    margin: 0 auto;
    border-radius: 36px;
    border: 4px solid var(--border-active);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

/* 3.5 Core Services Grid Section */
.section-services-grid-main {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.services-five-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.service-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card-item:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.2);
}

.service-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card-item:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-icon-wrapper.icon-purple {
    background: rgba(139, 92, 246, 0.18);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.service-icon-wrapper.icon-cyan {
    background: rgba(0, 242, 254, 0.18);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
}

.service-icon-wrapper.icon-green {
    background: rgba(16, 185, 129, 0.18);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.service-icon-wrapper.icon-pink {
    background: rgba(236, 72, 153, 0.18);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.35);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.25);
}

.service-icon-wrapper.icon-amber {
    background: rgba(245, 158, 11, 0.18);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.service-card-item h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-card-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-cyan);
    transition: var(--transition);
}

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

/* Floating QR Standee Spacing Fix */
.floating-qr-card.qr-left {
    top: 20%;
    left: -25px;
}

.floating-qr-card.qr-right {
    bottom: 20%;
    right: -25px;
}

.qr-pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 179, 0, 0.15);
    color: #ffb300;
    border: 1px solid rgba(255, 179, 0, 0.4);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 6px;
}

/* PWA Split Layout with Right Side Vertical Screen */
.pwa-card-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.pwa-card-text-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pwa-card-screen-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-phone-mockup {
    width: 140px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border-active);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: #000;
}

.vertical-phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Deep Photo Selection Feature Section */
.section-photo-selection-deep {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.selection-feature-card-main {
    background: linear-gradient(145deg, rgba(25, 27, 52, 0.95) 0%, rgba(13, 14, 30, 0.98) 100%);
    border: 1px solid var(--border-active);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.selection-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.selection-workflow-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.workflow-step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 14px 18px;
    border-radius: 14px;
    transition: var(--transition);
}

.workflow-step-item:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.06);
}

.workflow-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.selection-preview-frame {
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Equal Height Rules for Testimonial Cards */
.testimonials-grid,
.indian-reviews-grid {
    align-items: stretch;
}

.testimonial-card,
.indian-review-card {
    height: 100%;
}

/* Hero Mobile Badges Grid Default (Hidden on Desktop) */
.hero-mobile-badges-grid {
    display: none;
}

/* ==========================================================================
   MOBILE & RESPONSIVE BREAKPOINTS (SUPER MOBILE FRIENDLY)
   ========================================================================== */
@media (max-width: 1024px) {
    .services-five-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pwa-card-split-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .selection-content-grid {
        grid-template-columns: 1fr;
    }

    .floating-selfie-card.selfie-right-side {
        right: 0;
        top: 5%;
    }

    .drive-accounts-card {
        padding: 20px;
    }

    .selection-feature-card-main {
        padding: 30px 20px;
    }

    .privacy-tabs-container {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {

    /* Prevent horizontal scroll globally on mobile view */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .full-width-container {
        padding: 0 16px;
    }

    /* Header Bar: Compact logo & Start Free button */
    .header-theme-toggle,
    .header-login-btn,
    .nav-links-menu {
        display: none !important;
    }

    .header-start-free-btn {
        padding: 7px 14px !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
    }

    .saas-logo img {
        height: 28px !important;
        width: auto;
    }

    .mobile-hamburger-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--border-subtle);
        color: var(--text-primary);
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .mobile-hamburger-btn:hover {
        background: rgba(139, 92, 246, 0.2);
        border-color: var(--accent-light);
    }

    /* Section Headings */
    .section-header-center h2,
    .app-showcase h2 {
        font-size: 1.9rem !important;
    }

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

    .section-face-tech h2,
    .section-drive-integration h2,
    .section-qr-showcase h2,
    .selection-feature-card-main h2 {
        font-size: 1.8rem !important;
    }

    /* Hero Section Mobile Fixes */
    .hero-center-section {
        padding: 100px 0 40px 0 !important;
    }

    .hero-center-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem) !important;
        line-height: 1.25;
        word-break: break-word;
    }

    .hero-center-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .price-pill-banner {
        padding: 10px 14px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
        border-radius: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .price-pill-banner .pill-sub {
        font-size: 0.82rem;
        word-break: break-word;
    }

    .hero-btn-group {
        width: 100%;
        gap: 10px;
    }

    .hero-btn-group .btn-saas-primary,
    .hero-btn-group .btn-saas-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-scanner-center-box {
        padding: 12px;
        margin-top: 20px;
        border-radius: 16px;
        max-width: 100%;
    }

    .scanner-view-box {
        height: 220px;
        border-radius: 12px;
    }

    /* Hide Absolute Floating Elements on Mobile to prevent overlap & overflow */
    .floating-hero-pill,
    .floating-selfie-card,
    .floating-qr-card {
        display: none !important;
    }

    /* Hero Mobile Badges 2x2 Grid */
    .hero-mobile-badges-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 12px;
        width: 100%;
    }

    .hero-mobile-badge-item {
        background: rgba(19, 18, 27, 0.85);
        border: 1px solid var(--border-subtle);
        backdrop-filter: blur(12px);
        padding: 8px 10px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: left;
        min-width: 0;
    }

    .hero-mobile-badge-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .hero-mobile-badge-title {
        font-size: 0.65rem;
        color: var(--text-secondary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-mobile-badge-val {
        font-size: 0.75rem;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Core Services */
    .services-five-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .service-card-item {
        padding: 20px 16px;
    }

    /* Gallery Showcase Thumbnails */
    .gallery-thumbnails-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        max-width: 100%;
    }

    .gallery-thumbnail-card {
        flex-shrink: 0;
        width: 200px;
        height: 355px;
        aspect-ratio: 9 / 16;
        scroll-snap-align: start;
    }

    /* Drive Integration Account Cards (Wrap & truncate email to prevent overflow) */
    .drive-accounts-card {
        padding: 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .drive-accounts-card>div {
        flex-wrap: wrap;
        gap: 8px;
    }

    .drive-accounts-card div[style*="font-weight: 500"] {
        word-break: break-all;
        font-size: 0.82rem !important;
    }

    /* Vertical QR Standee Card */
    .vertical-qr-standee-card {
        width: 100%;
        max-width: 320px;
        padding: 16px;
        box-sizing: border-box;
    }

    .qr-image-holder {
        height: 300px;
    }

    /* QR Marquee Static Grid */
    .qr-marquee-track.static-grid {
        gap: 10px;
    }

    .qr-card-mini {
        width: 140px;
        padding: 10px;
    }

    .qr-card-mini img.qr-img-preview {
        width: 110px;
        height: 110px;
    }

    /* Privacy Role Switcher */
    .privacy-tabs-container {
        padding: 20px 14px;
    }

    .privacy-roles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .role-switcher-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .role-tab-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .security-demo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .security-demo-card {
        padding: 14px 10px;
    }

    /* PWA Cards */
    .pwa-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pwa-feature-card-full {
        padding: 20px 16px;
    }

    .vertical-phone-mockup {
        width: 100%;
        max-width: 200px;
        height: 280px;
        margin: 0 auto;
    }

    /* Photo Selection Section */
    .section-photo-selection-deep {
        padding: 60px 0;
    }

    .selection-feature-card-main {
        padding: 20px 14px;
    }

    .selection-preview-frame {
        height: 260px;
    }

    /* 3D E-Album Showcase */
    .app-showcase {
        padding: 60px 0;
    }

    .app-feature-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .app-feature-item {
        padding: 14px;
    }

    /* Portfolio Websites */
    .portfolio-website-showcase {
        padding: 60px 0;
    }

    .promo-badge-container {
        flex-direction: column;
        gap: 6px;
        padding: 8px 14px;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .portfolio-templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .square-thumbnail {
        height: 180px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .indian-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card,
    .indian-review-card {
        padding: 20px 16px;
    }

    /* Screenshots Carousel Navigation */
    .carousel-nav {
        display: none !important;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-item {
        width: 200px;
    }

    /* Pricing Section */
    .section-pricing-calculator {
        padding: 60px 0;
    }

    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .price-box {
        padding: 24px 18px;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.98rem;
    }

    .faq-answer {
        padding: 0 20px 16px 20px;
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .services-five-grid {
        grid-template-columns: 1fr;
    }

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

    .portfolio-templates-grid {
        grid-template-columns: 1fr;
    }

    .security-demo-cards-grid {
        grid-template-columns: 1fr;
    }

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

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

    .face-tech-cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-center-title {
        font-size: 1.7rem !important;
    }

    .price-pill-banner .pill-val {
        font-size: 1.05rem;
    }
}

@media (max-width: 380px) {
    .hero-mobile-badges-grid {
        grid-template-columns: 1fr;
    }

    .header-start-free-btn {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }
}

/* ==========================================================================
   GLOBAL 100VH SECTION HEIGHT RULE (DESKTOP ONLY)
   ========================================================================== */
@media (min-width: 769px) {
    section.hero-center-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;
        padding-top: 130px;
        padding-bottom: 60px;
    }

    section.section-services-grid-main,
    section.showcase-marquee-section,
    section.section-face-tech,
    section.section-drive-integration,
    section.section-viral-leads,
    section.section-qr-showcase,
    section.section-gallery-privacy,
    section.pwa-app-section,
    section.section-photo-selection-deep,
    section.app-showcase,
    section.portfolio-website-showcase,
    section.testimonials,
    section.screenshots,
    section.faq,
    section.section-pricing-calculator {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (BOTTOM RIGHT)
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
    color: #ffffff !important;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}