/* Voxture B Solution Global Stylesheet
   Design Inspiration: Stripe, Ramp, Linear, Vercel
   Theme: Premium White Mode, Blue-Indigo Accents, Soft Shadows, Glassmorphism
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Theme Colors */
    --color-bg: #fafbff;
    --color-surface: #ffffff;
    --color-surface-glass: rgba(255, 255, 255, 0.75);
    --color-border: rgba(226, 232, 240, 0.8);
    --color-border-glass: rgba(255, 255, 255, 0.6);
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #94a3b8;
    
    /* Primary Brand Gradients */
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-secondary: #4f46e5;
    --color-accent-grad: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --color-accent-grad-light: linear-gradient(135deg, rgba(37, 99, 245, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
    --color-glass-grad: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    
    /* System Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* Shadows & Radii */
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 12px 24px -8px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Spacing & Layout */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.25;
}

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

/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

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

/* Sections */
.section {
    padding: 7.5rem 0;
    position: relative;
}

.section-bg-accent {
    background-color: #f4f6fc;
}

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

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--color-accent-grad-light);
    color: var(--color-primary);
    border: 1px solid rgba(37, 99, 245, 0.15);
    margin-bottom: 1.5rem;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--color-accent-grad);
    color: white;
    box-shadow: 0 4px 20px -4px rgba(37, 99, 245, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(37, 99, 245, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: #fafafa;
    border-color: var(--color-text-muted);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.card-glass {
    background: var(--color-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.card-glass:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glass);
    border-color: rgba(37, 99, 245, 0.2);
}

/* Header & Navigation */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 3.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

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

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

/* Mega Menu Dropdowns */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 280px;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    background: rgba(37, 99, 245, 0.05);
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 7.5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(37, 99, 245, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content p.subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.hero-trust-list {
    display: flex;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
}

/* Dashboard Mockup & Floating Cards */
.hero-visual {
    position: relative;
}

.mockup-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15, 23, 42, 0.05);
    padding: 0.5rem;
    position: relative;
    z-index: 2;
}

.mockup-wrapper img {
    border-radius: var(--radius-md);
    width: 100%;
}

.floating-card {
    position: absolute;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: -5%;
    right: 5%;
    animation-delay: 3s;
}

.float-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-grad-light);
    color: var(--color-primary);
}

.float-info span {
    display: block;
}

.float-info .label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.float-info .value {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.float-info .sub {
    font-size: 0.7rem;
    color: var(--color-success);
    font-weight: 600;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Statistics Ribbon */
.stats-banner {
    padding: 2.5rem 0;
    background: var(--color-accent-grad);
    color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

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

.stat-item h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Services Page & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 245, 0.2);
}

.service-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    background: var(--color-accent-grad-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.learn-more svg {
    transition: var(--transition-fast);
}

.service-card:hover .learn-more svg {
    transform: translateX(5px);
}

/* Why Choose Us Feature Grid */
.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.why-image-wrapper {
    position: relative;
}

.why-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--color-accent-grad);
    color: white;
    border-radius: var(--radius-full);
    width: 9rem;
    height: 9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 4px solid white;
}

.experience-badge .num {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .lbl {
    font-size: 0.75rem;
    font-weight: 600;
    max-width: 80px;
}

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

.feature-box {
    display: flex;
    gap: 1rem;
}

.feature-box-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 245, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* Industries We Serve Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 245, 0.2);
}

.industry-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--color-accent-grad-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    color: var(--color-primary);
}

.industry-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Dynamic Process Timeline */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 18%;
}

.step-icon-box {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: var(--radius-full);
    background: white;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-icon-box {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 0 8px rgba(37, 99, 245, 0.08);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-step h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-step p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    padding: 0 0.5rem;
}

/* Testimonials Carousel */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-client img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.client-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}

.client-info p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background: #fafafa;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Logos Ticker */
.logo-ticker-section {
    padding: 4rem 0;
    background: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.logo-ticker-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-ticker 30s linear infinite;
    gap: 6rem;
    align-items: center;
}

.logo-ticker-track img {
    height: 2.2rem;
    filter: grayscale(1) opacity(0.5);
    transition: var(--transition-fast);
}

.logo-ticker-track img:hover {
    filter: none;
    opacity: 1;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Footer Ribbon Banner */
.cta-banner-wrapper {
    background: var(--color-accent-grad);
    border-radius: var(--radius-xl);
    padding: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-banner-wrapper::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    bottom: -150px;
    right: -50px;
    z-index: 1;
}

.cta-banner-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-banner-action {
    position: relative;
    z-index: 2;
}

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

.cta-banner-action .btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
}

/* Global Footer styling */
footer.site-footer {
    background: #090d16;
    color: #94a3b8;
    padding: 6rem 0 2rem 0;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b;
}

footer.site-footer h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

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

.footer-about img {
    height: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    background: #1e293b;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

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

.footer-contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-info svg {
    color: var(--color-primary);
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

/* Contact page inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--color-border);
    background: white;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 245, 0.1);
}

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

/* Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(37, 99, 245, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-icon-arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

/* Custom CSS Animation triggers */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mobile responsive menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.15rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p.subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-trust-list {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-step {
        width: 100%;
        max-width: 320px;
    }
    
    .cta-banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2.5rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--color-border);
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-item:hover .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        width: 100%;
        padding-left: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
