/* =================================================================== */
/* ROOT VARIABLES & CSS RESET - Enhanced Corporate Theme Based on App Screenshots */
/* =================================================================== */
:root {
    /* Colors from App: Orange for primary actions, Green for accents and success */
    --primary-orange: #FF5722;
    --primary-orange-light: #FF8A65;
    --accent-green: #4CAF50;
    --accent-green-light: #81C784;
    /* Neutral corporate tones for professional readability */
    --corporate-dark: #212121;
    --text-primary: #424242;
    --text-secondary: #757575;
    --text-muted: #BDBDBD;
    /* Backgrounds: White base with subtle light tones matching app's clean interface */
    --background-white: #FFFFFF;
    --background-light: #FAFAFA;
    --background-soft: #F5F5F5;
    --background-gradient: linear-gradient(135deg, #FFFFFF 0%, #FFE0B2 100%);
    --border-corporate: #E0E0E0;
    --border-light: #EEEEEE;
    /* Shadows: Subtle elevation for depth, corporate flat design with mild shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Fonts: Professional sans-serif with Hindi support, matching app's clean typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-headings: 'Poppins', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    /* Layout: Consistent spacing and sizing for corporate responsiveness */
    --header-height: 80px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}

/* Comprehensive CSS Reset for Clean Corporate Design */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background-gradient);
    background-attachment: fixed;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 87, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
}

/* Media Reset for App-Like Images and Videos */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Form Elements Styled to Match App's Green Borders and Orange Buttons */
input,
button,
textarea,
select {
    font: inherit;
    font-family: var(--font-primary);
    border-radius: var(--border-radius);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Focus States for Accessibility with App's Orange Outline */
:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Hindi Text Support for Bilingual Corporate Content */
[lang="hi"] {
    font-family: var(--font-hindi);
}

/* =================================================================== */
/* GENERAL TYPOGRAPHY & UTILITY CLASSES - Corporate Scale */
/* =================================================================== */
/* Typography Scale Matching App's Bold Headings and Readable Body Text */
h1 {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--corporate-dark);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-family: var(--font-headings);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--corporate-dark);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-family: var(--font-headings);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--corporate-dark);
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--corporate-dark);
    margin-bottom: var(--spacing-xs);
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Core Layout Container for Responsive Corporate Grids */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    max-width: 1200px;
}

/* Section Padding for Professional Spacing */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--background-light);
}

/* Section Headers with Centered Corporate Alignment */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tagline Utility for Green Accent Badges */
.section-tagline {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-green);
    background: rgba(76, 175, 80, 0.1);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 9999px;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Title and Subtitle for Sections */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto;
}

/* Button Base for Corporate CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    text-decoration: none;
    min-height: 48px;
}

/* Primary Button: Orange Matching App Headers */
.btn-primary {
    background: var(--primary-orange);
    color: var(--background-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-orange-light);
    box-shadow: var(--shadow-lg);
}

/* Secondary Button: Outlined for Subtle Actions */
.btn-secondary {
    background: var(--background-white);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--background-white);
    box-shadow: var(--shadow-md);
}

/* Green Button for Success/Secondary Accents */
.btn-green {
    background: var(--accent-green);
    color: var(--background-white);
}

.btn-green:hover {
    background: var(--accent-green-light);
}

/* Grid System for Corporate Layouts */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--4-cols {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Flex Utilities for Alignment */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Gap Utilities */
.gap-xs {
    gap: var(--spacing-xs);
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

.gap-xl {
    gap: var(--spacing-xl);
}

/* Text Alignment Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Font Weight Utilities */
.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* Color Utilities */
.text-orange {
    color: var(--primary-orange);
}

.text-green {
    color: var(--accent-green);
}

.text-muted {
    color: var(--text-muted);
}

/* Margin Bottom Utilities */
.mb-xs {
    margin-bottom: var(--spacing-xs);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

/* Margin Top Utilities */
.mt-xs {
    margin-top: var(--spacing-xs);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

/* Screen Reader and Visibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none;
}

/* Border Utilities */
.border {
    border: 1px solid var(--border-light);
}

.border-green {
    border: 1px solid var(--accent-green);
}

/* Border Radius Utilities */
.rounded {
    border-radius: var(--border-radius);
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

.rounded-full {
    border-radius: 9999px;
}

/* Background Utilities */
.bg-white {
    background: var(--background-white);
}

.bg-light {
    background: var(--background-light);
}

.bg-orange {
    background: var(--primary-orange);
}

.bg-green {
    background: var(--accent-green);
}

/* Shadow Utilities for Subtle Depth */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* No Animations: Removed All Transition Properties for Static Corporate Feel */

/* =================================================================== */
/* HEADER & NAVIGATION - Corporate Fixed Header Matching App Orange */
/* =================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 87, 34, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header.scrolled {
    background: rgba(255, 87, 34, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--background-white);
    text-decoration: none;
}

.logo:hover {
    color: var(--accent-green-light);
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--background-white);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-green-light);
}

.nav-cta .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.95rem;
}

/* Mobile Navigation - Hamburger for Responsive Corporate Menu */
.mobile-nav-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    background: none;
    padding: var(--spacing-sm);
    z-index: 1001;
    gap: 4px;
}

.mobile-nav-hamburger {
    width: 24px;
    height: 2px;
    background: var(--background-white);
    transform-origin: center;
}

.mobile-nav-btn.active .mobile-nav-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-btn.active .mobile-nav-hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-nav-btn.active .mobile-nav-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--background-white);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-2xl);
    padding: var(--header-height) var(--spacing-lg) var(--spacing-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.mobile-menu li {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--spacing-sm);
}

.mobile-menu .nav-link {
    font-size: 1.1rem;
    padding: var(--spacing-md) 0;
    color: var(--text-primary);
}

.mobile-menu .nav-cta {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-light);
}

.mobile-menu-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

/* =================================================================== */
/* HERO SECTION - Professional Phone Mockup with App Screenshots Slider */
/* =================================================================== */
.section-hero {
    padding-top: calc(var(--header-height) + var(--spacing-2xl));
    padding-bottom: var(--spacing-3xl);
    overflow: hidden;
    background: var(--background-gradient);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-2xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-text-box h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.hero-text-box h1 span {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.025em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    line-height: 1.75;
}

.download-buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
}

.download-btn img {
    height: 56px;
    width: auto;
}

.hero-app-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: var(--corporate-dark);
    border-radius: 40px;
    padding: 20px 8px;
    box-shadow: var(--shadow-2xl);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: var(--corporate-dark);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    /* background: var(--background-white);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* =================================================================== */
/* PROFESSIONAL SLIDER - Smooth Sliding Without Animations, Corporate Style */
/* =================================================================== */
.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    background: var(--background-white);
    height: 100%;
}

#hero-phone-slider .slider-container {
    height: 600px;
}

#how-it-works-slider .slider-container {
    height: 500px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 100%;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons - Clean Corporate Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--background-white);
    box-shadow: var(--shadow-lg);
}

.slider-btn-prev {
    left: var(--spacing-md);
}

.slider-btn-next {
    right: var(--spacing-md);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--corporate-dark);
    stroke-width: 2.5;
}

/* Dots Navigation - Subtle Corporate Indicators */
.slider-dots {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 10;
    padding: var(--spacing-sm);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.2);
}

/* =================================================================== */
/* CLIENTS / TRUSTED BY - Corporate Partners Grid */
/* =================================================================== */
.section-clients {
    padding: var(--spacing-2xl) 0;
    background: var(--background-white);
}

.clients-header {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.client-logo {
    filter: grayscale(100%) opacity(0.5);
    max-width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.client-logo svg {
    max-height: 40px;
    width: auto;
    max-width: 100%;
}

/* =================================================================== */
/* HOW IT WORKS SECTION - Step-by-Step Corporate Guide */
/* =================================================================== */
.section-how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.how-it-works-container {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--spacing-2xl); */
}

.how-it-works-content h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--corporate-dark);
    text-align: center;
}

.how-it-works-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
    line-height: 1.75;
}

.how-it-works-list {
    list-style: none;
    display: flex;
    /* flex-direction: column; */
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.how-it-works-step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--background-white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-green);
    box-shadow: var(--shadow-sm);
    min-width: 300px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--corporate-dark);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =================================================================== */
/* SERVICES SECTION - Corporate Feature Cards */
/* =================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.services-card {
    background: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.services-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md) auto;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: var(--accent-green);
}

.services-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--corporate-dark);
}

.services-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =================================================================== */
/* APPLICATION SHOWCASE - Corporate App Features */
/* =================================================================== */
.app-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-2xl);
}

.app-view-content h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    margin-bottom: var(--spacing-lg);
}

.app-view-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
}

.app-view-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.app-view-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.app-view-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
}

.app-view-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-green);
}

.app-view-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--corporate-dark);
}

.app-view-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.app-view-image-box {
    display: flex;
    justify-content: center;
}

.app-view-image-box img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
    max-width: 300px;
}

/* =================================================================== */
/* TESTIMONIALS - Corporate User Stories Grid */
/* =================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-green);
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1.0625rem;
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-text::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 4rem;
    font-family: serif;
    color: var(--border-light);
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--corporate-dark);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =================================================================== */
/* FAQ - Corporate Accordion Style */
/* =================================================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.faq-item {
    background: var(--background-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-weight: 600;
    color: var(--corporate-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
}

.faq-question:hover {
    background: rgba(255, 87, 34, 0.05);
}

.faq-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-orange);
    stroke-width: 2.5;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer-content {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
}

.faq-item.active {
    border-color: var(--accent-green);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* =================================================================== */
/* CONTACT - Corporate Form and Info Layout */
/* =================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--spacing-2xl);
}

.contact-info-box h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    margin-bottom: var(--spacing-lg);
}

.contact-info-box p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-list li:hover {
    color: var(--primary-orange);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background: rgba(76, 175, 80, 0.1);
}

.contact-list li:hover .contact-icon-wrapper {
    background: var(--accent-green);
}

.contact-icon-wrapper svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-green);
}

.contact-list li:hover .contact-icon-wrapper svg {
    stroke: var(--background-white);
}

.contact-form {
    background: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--corporate-dark);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--accent-green);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--background-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
    background: var(--background-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--primary-orange);
    color: var(--background-white);
    border: none;
}

.submit-btn:hover {
    background: var(--primary-orange-light);
    box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
    background: var(--border-light);
    cursor: not-allowed;
    opacity: 0.6;
}

#form-status {
    text-align: center;
    margin-top: var(--spacing-md);
    font-weight: 600;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    display: none;
}

#form-status.success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
    display: block;
}

#form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid #EF4444;
    display: block;
}

.error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    display: block;
}

/* =================================================================== */
/* DOWNLOAD CTA - Corporate Call to Action */
/* =================================================================== */
.section-download {
    background: var(--primary-orange) !important;
    color: var(--background-white);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.download-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--background-white);
    margin-bottom: var(--spacing-lg);
}

.download-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.app-badges img {
    height: 56px;
}

/* =================================================================== */
/* FOOTER - Comprehensive Corporate Footer */
/* =================================================================== */
.footer {
    background: var(--corporate-dark);
    color: var(--text-muted);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo-col .logo {
    color: var(--background-white);
    margin-bottom: var(--spacing-md);
}

.footer-logo-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: var(--spacing-lg);
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.social-link:hover {
    background: var(--primary-orange);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--background-white);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--background-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.025em;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
}

.footer-link:hover {
    color: var(--primary-orange-light);
    padding-left: var(--spacing-sm);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =================================================================== */
/* RESPONSIVE DESIGN MEDIA QUERIES - Corporate Breakpoints */
/* =================================================================== */
/* Large Laptops */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--spacing-md);
        max-width: 1000px;
    }
}

/* Tablets Landscape */
@media (max-width: 1024px) {
    .grid--3-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets Portrait */
@media (max-width: 944px) {
    body {
        font-size: 15px;
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .hero-container,
    .how-it-works-container,
    .app-view-grid,
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero-text-box {
        order: 2;
    }

    .hero-app-showcase {
        order: 1;
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto var(--spacing-xl);
    }

    .download-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Tablets */
@media (max-width: 768px) {

    .nav-list,
    .nav-cta {
        display: none;
    }

    .mobile-nav-btn {
        display: flex;
    }

    .grid--2-cols,
    .grid--3-cols {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .app-badges,
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .faq-container {
        gap: var(--spacing-md);
    }
}

/* Mobile Landscape */
@media (max-width: 544px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-text-box h1 {
        font-size: 2.25rem;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .services-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .services-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .faq-question {
        padding: var(--spacing-md);
        font-size: 1rem;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }

    .app-badges img {
        height: 48px;
    }
}

/* Reduced Motion Support - Ensures No Animations */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode - Corporate Adaptation */