/* ====================================
   QLead Website - Main Stylesheet
   Theme: Clean White with Blue Accents
   ==================================== */

/* ====================================
   CSS VARIABLES
   ==================================== */
:root {
    /* Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #7c3aed;
    --color-accent: #06b6d4;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   RESET & BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation Classes */
/* ===== SCROLL ANIMATION BASE ===== */

.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right,
.card-slide-in,
.scale-in {
    opacity: 0;
}

/* When visible */
.fade-in-up.active {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down.active {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left.active {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right.active {
    animation: fadeInRight 0.8s ease-out forwards;
}

.card-slide-in.active {
    animation: slideInUp 0.6s ease-out forwards;
}

.scale-in.active {
    animation: scaleIn 0.6s ease-out forwards;
}

/* ====================================
   UTILITY CLASSES
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-gray-900);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-gray-900);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

/* ===== HEADER STRUCTURE MATCH (WHITE THEME) ===== */

.nav-container {
    display: flex;
    align-items: center;
}

/* Menu spacing like reference image */
.nav-menu {
    display: flex !important;
    gap: 1.6rem;
}

/* Right-side icons */
.nav-icons {
    gap: 1.2rem;
    align-items: center;
    color: var(--color-gray-600);
    font-size: 15px;
}

.nav-icon {
    cursor: pointer;
    transition: color var(--transition-fast);
}

.nav-icon:hover {
    color: var(--color-primary);
}

/* Remove CTA spacing influence */
.nav-cta {
    display: none !important;
}

/* Fix Bootstrap toggler look */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Bootstrap + QLead Navbar Fix */
.navbar-brand {
    padding: 0 !important;
    margin-right: 1rem;
}

.logo {
    height: 42px;
    width: auto;
    display: block;
}
/* ===== MODULES SECTION ===== */

.modules-section {
    background: var(--color-gray-50);
}

.module-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all .3s ease;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.module-card h5 {
    font-weight: 700;
    margin-top: 12px;
}

.module-card p {
    color: var(--color-gray-600);
    font-size: 15px;
}

.module-card ul {
    margin-top: 10px;
    padding-left: 18px;
}

.module-card li {
    font-size: 14px;
    color: var(--color-gray-700);
    margin-bottom: 6px;
}

/* icon */
.module-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* extra colors */
.bg-purple { background:#8b5cf6; }
.bg-pink { background:#ec4899; }
.bg-indigo { background:#6366f1; }


/* ===== EXACT STRUCTURE LIKE REFERENCE ===== */

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
}

/* MENU stays left, NOT centered */
.navbar-collapse {
    flex-grow: 0;
}

/* menu spacing */
.nav-menu {
    display: flex !important;
    gap: 1.8rem;
    margin-left: 10px;
}

/* icons push to right */
.nav-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--color-gray-600);
}

/* logo size */
.logo {
    height: 36px;
}

/* bootstrap toggler */
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}


@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--color-gray-700);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        gap: 1.5rem;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 30px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);    
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.hero-image {
    position: relative;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    background: var(--color-white);
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: var(--shadow-2xl);
    animation: float 3s ease-in-out infinite;
}

.app-screenshot {
    border-radius: 1.5rem;
    width: 100%;
}

/* Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* ====================================
   PAGE HERO
   ==================================== */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
}

.page-hero .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.page-hero .page-title {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 30px;
}

.page-hero .page-description {
    font-size: 1.20rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ====================================
   BENEFITS SECTION
   ==================================== */
.benefits {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-white);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ===== FEATURES HOME SECTION ===== */

.features-home {
    background: var(--color-gray-50);
}

.feature-box {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all .3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.feature-box h5 {
    margin-top: 15px;
    font-weight: 700;
}

.feature-box p {
    color: var(--color-gray-600);
    font-size: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* extra colors */
.bg-purple { background:#8b5cf6; }
.bg-pink { background:#ec4899; }
.bg-indigo { background:#6366f1; }

/* ===== EASY STEPS SECTION ===== */

.steps-section {
    background: var(--color-gray-50);
}

.step-box h5 {
    margin-top: 18px;
    font-weight: 700;
}

.step-box p {
    color: var(--color-gray-600);
    font-size: 15px;
}

/* Circle */
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: white;
    position: relative;
}

/* Colors */
.step-blue { background:#2f63e0; }
.step-purple { background:#8b5cf6; }
.step-green { background:#22c55e; }

/* Small floating dot */
.dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: -5px;
    right: -5px;
}

.dot-yellow { background:#facc15; }
.dot-green { background:#4ade80; }
.dot-blue { background:#60a5fa; }


/* ====================================
   FEATURES SECTION
   ==================================== */
.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border: 1px solid #f1f1f1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.feature-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-intro {
    color: #666;
    margin-bottom: 20px;
}


@media (min-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .feature-row-reverse {
        direction: rtl;
    }
    
    .feature-row-reverse > * {
        direction: ltr;
    }
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content h2 {
    margin-bottom: 1rem;
    font-size: medium;
}

.feature-intro {
    font-size: 1.110rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
}

.detail-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--color-success);
    margin-top: 0.25rem;
}

.detail-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

.feature-visual {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.visual-card {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-200) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '📱';
    font-size: 5rem;
    opacity: 0.3;
}

/* Feature Comparison Table */
.feature-comparison {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.comparison-table {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--color-gray-100);
    font-weight: 700;
}

.comparison-cell {
    display: flex;
    align-items: center;
}

.comparison-cell.feature-name {
    font-weight: 600;
}

.comparison-cell.highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* ===== APP SCREENSHOTS ===== */

.app-screenshots {
    background: var(--color-gray-50);
}

.screen-card {
    background: white;
    padding: 14px;
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    transition: all .35s ease;
}

.screen-card img {
    border-radius: 14px;
}

/* hover animation */
.screen-card:hover {
    transform: translateY(-10px) scale(1.02);
}


/* ====================================
   ABOUT PAGE STYLES
   ==================================== */
.about-section {
    padding: var(--spacing-3xl) 0;
        padding-bottom: 0.5rem;   /* reduce gap here */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mission-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    border:1px solid #f1f3f5;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.mission-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:4px;
    width:100%;
    background:linear-gradient(90deg,#2563eb,#4f46e5);
}

.mission-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

.mission-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:14px;
    background:linear-gradient(135deg,#eef2ff,#e0e7ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#4f46e5;
}

.mission-number{
    font-family:"Space Grotesk",sans-serif;
    font-weight:700;
    font-size:34px;
    margin-top:10px;
    color:#1e3a8a;
}
.ps-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 40px rgba(0,0,0,0.04);
    transition:.3s ease;
}

.problem-card{
    border-left:5px solid #ef4444;
}

.solution-card{
    border-left:5px solid #22c55e;
}

.ps-card:hover{
    transform:translateY(-8px);
}


/* Problem & Solution */
.problem-solution {
    padding: var(--spacing-2xl) 0;
    background: var(--color-gray-50);
    font-size: small;
}

.problem-solution h3 {
    font-size: medium;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.ps-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.ps-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.ps-card h3 {
    margin-bottom: 1.5rem;
}

.problem-list,
.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-list li::before {
    content: '❌';
    margin-right: 0.75rem;
}

.solution-list li::before {
    content: '✓';
    margin-right: 0.75rem;
    color: var(--color-success);
    font-weight: 700;
}

/* Who We Serve */
.who-we-serve {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.serve-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .serve-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.serve-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:.3s;
    border:1px solid #f1f1f1;
}

.serve-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.serve-icon{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:12px;
    border-radius:14px;
    background:linear-gradient(135deg,#eef2ff,#e0e7ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#4f46e5;
}


.serve-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.serve-card p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* Why Choose */
.why-choose {
    padding: var(--spacing-3xl) 0;
    background: var(--color-gray-50);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    font-size: small;
}

@media (min-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
}

.why-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--color-success);
    margin-top: 0.25rem;
}

.why-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ===== WHY CHOOSE – STATS ===== */

.stats-visual {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  width: 100%;
}

.stat-item {
  margin-bottom: 24px;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

.stat-percent {
  color: #2563eb;
  font-weight: 700;
}

.stat-track {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 999px;
  transition: width 1s ease;
}


/* ====================================
   FAQ SECTION
   ==================================== */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
}



.faq-answer p {
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--color-gray-50);
    border-radius: var(--radius-2xl);
}

.faq-cta h3 {
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
    }
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

/* Make contact section horizontal */
.contact-methods{
    display:flex;
    justify-content:left;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:30px;
}

.contact-method{
    display:flex;
    align-items:center;
    gap:14px;
}

/* Optional clean look */
.contact-info h2,
.contact-info p{
    width:100%;
}


.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.method-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--color-gray-600);
}

.method-content a:hover {
    color: var(--color-primary);
}

.contact-social h4 {
    margin-bottom: 1rem;
}

.contact-form-container {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Quick Links */
.quick-links {
    padding: var(--spacing-3xl) 0;
    background: var(--color-gray-50);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quick-link-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    color: var(--color-gray-600);
    margin-bottom: 0;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: medium;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: white;
    color: var(--color-gray-300);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-column {
  text-align: left;          /* force left alignment */
}

.footer-column p {
    color: black;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color:black;
    margin-bottom: 1rem;
    font-size: medium;
}

.footer-column ul {
  padding-left: 0;           /* remove browser default */
  margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: black;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: black;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-gray-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: black;
    color: #111827;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gray-400);
    transition: fill var(--transition-fast);
}

.social-links a:hover svg {
    fill: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgb(31, 31, 31);
    margin-bottom: 0;
}

/* ====================================
   SCROLL REVEAL
   ==================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================
   RESPONSIVE ADJUSTMENTS
   ==================================== */
/* ===============================
   MOBILE HERO FIX (IMPORTANT)
   =============================== */
@media (max-width: 767px) {

  /* Reduce hero top spacing */
  .hero {
    padding: 5.5rem 0 3rem;
  }

  /* Stack content cleanly */
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  /* Move image BELOW text */
  .hero-image {
    order: 2;
  }

  .hero-text {
    order: 1;
  }

  /* Fix heading size */
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  /* Description readability */
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* Buttons full width */
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* Stats centered & compact */
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-item {
    min-width: auto;
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Phone mockup resize */
  
  .phone-frame {
    padding: 0.6rem;
    border-radius: 1.5rem;
  }

  .app-screenshot {
    border-radius: 1.2rem;
    max-height: 380px;
    object-fit: contain;
  }

  /* Disable floating shapes on mobile */
  .shape {
    display: none;
  }
}

/* ===============================
   FIX FEATURES MOBILE OVERFLOW
   =============================== */
@media (max-width: 767px) {

  .feature-row {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .feature-card {
    padding: 22px;
  }

  /* prevent horizontal scroll completely */
  html, body {
    overflow-x: hidden;
  }

}



