/* ==========================================================================
   Variables & Reset (Light Theme - Sarvam.ai Inspired)
   ========================================================================== */
:root {
    /* Colors - Clean Light Theme */
    --bg-light: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(0, 0, 0, 0.08);
    
    --text-primary: #111827; /* Dark slate */
    --text-secondary: #4b5563; /* Gray */
    --text-black: #000000;
    
    /* Vibrant Gradients & Accents */
    --accent-orange: #ff7a18; 
    --accent-blue: #0052ff;
    --accent-purple: #9d00ff;
    --accent-pink: #ff007b;
    
    --gradient-vibrant: linear-gradient(135deg, var(--accent-orange), var(--accent-pink), var(--accent-purple));
    --gradient-primary: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
    --gradient-glow: radial-gradient(circle at center, rgba(157, 0, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --nav-height: 80px;
    --section-pad: 80px;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Background Image Layer (Cultural Integration) */
.cultural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('bg-cultural.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8; /* Softer opacity so it doesn't clash with content */
    z-index: -2;
    pointer-events: none;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-black { color: var(--text-black); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 64rem; }
.justify-center { justify-content: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-large { margin-bottom: 3rem; }

.section-padding { padding: var(--section-pad) 0; }

h1, h2, h3, h4 {
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-vibrant {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons (Pill Shapes, Clean)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px; /* Pill shape */
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--text-black);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-gradient {
    background: var(--gradient-vibrant);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 123, 0.2);
}

.btn-gradient:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 123, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-blue));
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.2);
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

/* ==========================================================================
   Navigation (Minimalist, White/Translucent)
   ========================================================================== */
.nav-gradient-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-vibrant);
    z-index: 1001;
}

.navbar {
    position: fixed;
    top: 4px;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Added permanent shadow */
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* Stronger shadow on scroll */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text-black);
}

.icon-gradient {
    stroke: url(#rocket-gradient); /* fallback or handled via lucide CSS */
    color: var(--accent-pink);
}

.logo-text {
    background: linear-gradient(to right, var(--text-black), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-right: auto;
    margin-left: 3rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--text-black);
}

.icon-sm { width: 14px; height: 14px; }

/* Dropdowns */
.nav-item-dropdown {
    position: relative;
    padding: 1rem 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(0,0,0,0.03);
    color: var(--text-black);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 8rem);
    padding-bottom: 4rem;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 70vh;
    background: var(--gradient-glow);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg-glow.shadow-purple {
    left: auto;
    right: 0;
    top: -20%;
    background: radial-gradient(circle at center, rgba(0, 82, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.gradient-badge {
    border-color: rgba(255, 0, 123, 0.2);
    color: var(--accent-pink);
    background: rgba(255, 0, 123, 0.02);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 90%;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Art Panel & Floating Elements */
.art-panel {
    position: relative;
    /* Blend directly into the hero background without a rigid white box */
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    /* This CSS property will visually remove the white background from the art, leaving just the lines */
    mix-blend-mode: multiply;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-icon i { color: var(--accent-blue); }
.icon-1 { top: 10%; left: -20px; animation-delay: 0s; color: var(--accent-orange); }
.icon-2 { bottom: 20%; right: -15px; animation-delay: 2s; color: var(--accent-pink); }
.icon-3 { top: 40%; right: 10%; animation-delay: 4s; color: var(--accent-purple); }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
}

.stat-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
    transition: var(--transition);
}

.stat-item:nth-child(1)::before {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
}

.stat-item:nth-child(2)::before {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}

.stat-item:nth-child(3)::before {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
}

.stat-item:nth-child(1) .stat-value {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(2) .stat-value {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(3) .stat-value {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.05em;
    display: inline-block;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem; /* More spacing for minimalist look */
}

.feature-card {
    padding: 2.5rem;
    transition: var(--transition);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.relative-card {
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.orange-glow { background: radial-gradient(circle at top right, rgba(255, 122, 24, 0.1) 0%, transparent 60%); }
.blue-glow { background: radial-gradient(circle at top right, rgba(0, 82, 255, 0.1) 0%, transparent 60%); }
.purple-glow { background: radial-gradient(circle at top right, rgba(157, 0, 255, 0.1) 0%, transparent 60%); }

.feature-card:hover .card-glow {
    opacity: 1;
}

.icon-gradient-bg {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.icon-orange { background: linear-gradient(135deg, var(--accent-orange), #ff4d4d); box-shadow: 0 8px 15px rgba(255, 122, 24, 0.3); }
.icon-blue { background: linear-gradient(135deg, var(--accent-blue), #00d2ff); box-shadow: 0 8px 15px rgba(0, 82, 255, 0.3); }
.icon-purple { background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); box-shadow: 0 8px 15px rgba(157, 0, 255, 0.3); }

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ==========================================================================
   Anywhere Section (Glassmorphism)
   ========================================================================== */
.glass-section {
    position: relative;
    background: #fdfdfd;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.glass-ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.35;
    animation: float-glow 15s ease-in-out infinite;
    pointer-events: none;
}

.glass-ambient-glow.glow-1 {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 60%);
    animation-delay: 0s;
}

.glass-ambient-glow.glow-2 {
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 60%);
    animation-delay: -5s;
}

.glass-ambient-glow.glow-3 {
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 60%);
    width: 400px;
    height: 400px;
    filter: blur(80px);
    opacity: 0.25;
    animation-delay: -10s;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}

.container-relative {
    position: relative;
    z-index: 2;
}

.anywhere-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.anywhere-card.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(255,255,255,0.2);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.anywhere-card.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    z-index: -1;
}

.anywhere-card.glass-card:hover {
    box-shadow: 0 25px 45px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.4);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
}

.glass-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06), inset 0 2px 4px rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.8);
    color: var(--text-black);
    transition: var(--transition);
}

.glass-icon-wrapper i {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

.anywhere-card.glass-card:nth-child(1):hover .glass-icon-wrapper {
    color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(255, 122, 24, 0.25);
}

.anywhere-card.glass-card:nth-child(2):hover .glass-icon-wrapper {
    color: var(--accent-purple);
    box-shadow: 0 8px 25px rgba(157, 0, 255, 0.25);
}

.anywhere-card.glass-card:nth-child(3):hover .glass-icon-wrapper {
    color: var(--accent-blue);
    box-shadow: 0 8px 25px rgba(0, 82, 255, 0.25);
}

.anywhere-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-black);
    font-weight: 700;
}

.anywhere-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==========================================================================
   Bottom CTA
   ========================================================================== */
.bottom-cta {
    background: transparent;
}

.cta-box {
    position: relative;
    padding: 5rem 2rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.cta-box .glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.05) 40%, rgba(255,255,255,0) 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.cta-box h2, .cta-box p, .cta-box a {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-black);
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Utility classes for bottom CTA */
.border-0 { border: none !important; }
.bg-transparent { background: transparent !important; }
.shadow-none { box-shadow: none !important; }
.text-secondary { color: var(--text-secondary); }
.text-lg { font-size: 1.15rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* CTA Glow Override */
.bottom-cta.glass-section {
    position: relative;
    overflow: hidden;
}
.bottom-cta .cta-box {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.bottom-cta .glass-icon-wrapper {
    box-shadow: 0 10px 30px rgba(255, 0, 123, 0.15), inset 0 2px 4px rgba(255,255,255,0.8);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 250px;
}

.footer-links h4 {
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--text-black);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card.glass-card {
    text-align: left;
    align-items: flex-start;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.testimonial-card.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 0.6);
}

.quote-icon {
    color: var(--accent-pink);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 0.2rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-cta { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .menu-toggle { display: block; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: #ffffff;
        padding: 2rem;
        margin: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-bottom: 1px solid var(--border-color);
        align-items: flex-start;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-header {
    padding-top: calc(var(--nav-height) + 6rem);
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.15);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-black);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfdfd;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-item.active {
    border-color: rgba(255, 0, 123, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), 0 0 0 1px rgba(255, 0, 123, 0.1);
}

.faq-item.active .faq-question {
    color: var(--accent-pink);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-pink);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    text-align: left;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: rgba(255, 0, 123, 0.2);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-tag {
    color: var(--accent-blue);
}

.blog-tag.company { color: var(--accent-blue); }
.blog-tag.engineering { color: var(--accent-orange); }
.blog-tag.legal { color: var(--accent-pink); }
.blog-tag.product { color: var(--accent-purple); }

.blog-date {
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-black);
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--accent-blue);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-top: auto;
    transition: var(--transition);
}

.blog-read-more i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-vibrant);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Single Blog Post
   ========================================================================== */
.container-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    font-size: 3rem;
    line-height: 1.15;
    margin: 1.5rem 0;
    color: var(--text-black);
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.article-author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content p {
    margin-bottom: 2rem;
}

.article-content .lead {
    font-size: 1.35rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3.5rem 0 1.5rem 0;
    font-weight: 600;
    color: var(--text-black);
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.article-content ul, .article-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.article-content a:hover {
    color: var(--accent-purple);
}

.article-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-black);
    border-left: 4px solid var(--accent-pink);
    padding-left: 1.5rem;
    margin: 3rem 0;
    background: linear-gradient(90deg, rgba(255,0,123,0.05) 0%, rgba(255,255,255,0) 100%);
    padding: 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
    }
    .article-subtitle {
        font-size: 1.1rem;
    }
    .article-content {
        font-size: 1.05rem;
    }
}

