/* ===== CSS VARIABLES & ROOT ===== */
:root {
    /* Colors - India-inspired palette */
    --saffron: #FF6B35;
    --saffron-light: #FF8F5C;
    --saffron-dark: #E55A2B;
    --green: #138808;
    --green-light: #20B954;
    --green-dark: #0D5F06;
    --white: #FFFFFF;
    --navy: #0F172A;
    --slate-900: #1E293B;
    --slate-800: #334155;
    --slate-700: #475569;
    --slate-600: #64748B;
    --slate-500: #94A3B8;
    --slate-400: #CBD5E1;
    --slate-300: #E2E8F0;
    --slate-200: #F1F5F9;
    --slate-100: #F8FAFC;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    --gradient-india: linear-gradient(135deg, var(--saffron) 0%, var(--white) 50%, var(--green) 100%);
    --gradient-dark: linear-gradient(180deg, var(--navy) 0%, var(--slate-900) 100%);
    --gradient-text: linear-gradient(135deg, var(--saffron) 0%, var(--green-light) 100%);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 60px rgba(255, 107, 53, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: var(--slate-100);
    color: var(--slate-700);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--slate-800);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-400);
}

.btn-outline:hover {
    border-color: var(--saffron);
    color: var(--saffron);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-600);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--slate-900);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--border-radius);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.1rem;
    color: var(--slate-700);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-cta {
    margin-top: 10px;
    padding: 16px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--saffron) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--saffron-light) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--saffron);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--saffron-light);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-300);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, var(--slate-800), var(--slate-900));
    border-radius: 45px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: var(--navy);
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px 16px;
    background: rgba(255, 107, 53, 0.1);
}

.app-logo-small {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--saffron);
}

.app-lang {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--slate-300);
}

.chat-container {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.chat-bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: bubbleIn 0.4s ease;
}

@keyframes bubbleIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-bubble.ai {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    color: var(--slate-200);
}

.chat-bubble.user {
    background: var(--gradient-primary);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    color: var(--white);
}

.chat-bubble.typing {
    padding: 18px;
}

.typing-indicator {
    display: flex;
    gap: 6px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--slate-400);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.voice-button {
    margin: auto 20px 30px;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 8px 50px rgba(255, 107, 53, 0.6);
    }
}

.voice-waves {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: 0;
}

.voice-button:hover .voice-waves {
    opacity: 1;
}

.voice-waves span {
    width: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: wave 0.8s ease-in-out infinite;
}

.voice-waves span:nth-child(1) {
    height: 12px;
    animation-delay: 0s;
}

.voice-waves span:nth-child(2) {
    height: 20px;
    animation-delay: 0.1s;
}

.voice-waves span:nth-child(3) {
    height: 28px;
    animation-delay: 0.2s;
}

.voice-waves span:nth-child(4) {
    height: 20px;
    animation-delay: 0.3s;
}

.voice-waves span:nth-child(5) {
    height: 12px;
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--slate-700);
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
}

.float-card .card-icon {
    font-size: 1.25rem;
}

.card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -40px;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: 20%;
    right: 0;
    animation-delay: 2.6s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--slate-500);
    font-size: 0.875rem;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--saffron);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* ===== DEMO VIDEO SECTION ===== */
.demo-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--slate-900);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-weight: 600;
    color: var(--slate-700);
    box-shadow: var(--shadow-sm);
}

.demo-icon {
    font-size: 1.25rem;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    background: var(--white);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--saffron);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: var(--section-padding) 0;
    background: var(--slate-100);
    position: relative;
    overflow: hidden;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-visual {
    position: relative;
}

.architecture-diagram {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.arch-layer {
    margin-bottom: 24px;
}

.layer-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--saffron);
    margin-bottom: 16px;
}

.layer-items {
    display: flex;
    gap: 16px;
}

.arch-item {
    flex: 1;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.arch-item .item-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.arch-item span {
    font-size: 0.875rem;
    color: var(--slate-700);
}

.arch-connector {
    display: flex;
    justify-content: center;
    margin: -10px 0;
}

.arch-connector svg {
    width: 40px;
    height: 60px;
}

.layer-items.horizontal {
    flex-direction: column;
    gap: 12px;
}

.capability-card {
    background: var(--slate-100);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    padding: 20px;
}

.capability-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.capability-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.feature-content h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    background: var(--white);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card.large {
    grid-row: span 2;
}

.feature-card.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
}

.feature-icon-wrapper.small {
    width: 44px;
    height: 44px;
}

.feature-icon-wrapper.accent {
    background: var(--gradient-primary);
    color: var(--white);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--saffron);
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
}

.feature-tag.accent {
    background: var(--gradient-primary);
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.feature-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--slate-700);
}

.feature-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== IMPACT SECTION ===== */
.impact-section {
    padding: var(--section-padding) 0;
    background: var(--slate-100);
    position: relative;
    overflow: hidden;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-text .section-tag {
    text-align: left;
}

.impact-text .section-title {
    text-align: left;
}

.impact-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.impact-stat {
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.impact-stat:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--slate-600);
}

/* States Grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.state-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.state-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 53, 0.3);
}

.state-icon {
    font-size: 1.5rem;
}

.state-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-800);
}

.state-card.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(19, 136, 8, 0.1) 100%);
    border-color: var(--saffron);
}

.state-card.highlight .state-name {
    color: var(--saffron);
}

.map-india {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-india svg {
    width: 100%;
    height: 100%;
}

.india-outline {
    animation: drawMap 2s ease forwards;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
}

@keyframes drawMap {
    to {
        stroke-dashoffset: 0;
    }
}

.map-dots {
    position: absolute;
    inset: 0;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--saffron);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2;
}

.map-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--saffron);
    border-radius: 50%;
    opacity: 0.5;
    animation: ripple 2s ease-out infinite;
}

.map-dot.active {
    background: var(--green);
    width: 16px;
    height: 16px;
}

.map-dot.active::before {
    border-color: var(--green);
}

.map-dot span {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    background: var(--slate-800);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--white);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
    margin-bottom: 8px;
}

.map-dot:hover span {
    opacity: 1;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===== UNIQUENESS SECTION ===== */
.uniqueness-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.comparison-table {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.table-header {
    background: var(--slate-100);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.table-cell {
    padding: 20px 24px;
    display: flex;
    align-items: center;
}

.table-header .table-cell {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--slate-900);
    font-size: 1rem;
}

.feature-cell {
    color: var(--slate-700);
    font-weight: 500;
}

.table-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: var(--slate-100);
}

.vidya-cell {
    background: rgba(255, 107, 53, 0.05);
}

.status-badge {
    font-size: 0.875rem;
    padding: 6px 14px;
    border-radius: 20px;
}

.status-badge.bad {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status-badge.good {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

/* ===== BUSINESS SECTION ===== */
.business-section {
    padding: var(--section-padding) 0;
    background: var(--slate-100);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: var(--saffron);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
}

.pricing-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--slate-600);
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--slate-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--green-light);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-cta-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--saffron) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    opacity: 0.3;
}

.orb-cta-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.cta-content>p {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 40px;
}

.cta-form {
    background: var(--slate-100);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    color: var(--slate-900);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-500);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--white);
    color: var(--slate-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cta-trust {
    margin-top: 40px;
}

.cta-trust p {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    color: var(--slate-600);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--slate-900);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--slate-400);
    max-width: 280px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: var(--slate-400);
    padding: 6px 0;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--saffron);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-legal a:hover {
    color: var(--slate-300);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .feature-card.large {
        grid-row: auto;
    }

    .impact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        padding: 16px 20px;
        justify-content: center;
    }

    .table-header .feature-cell {
        display: none;
    }

    .table-row .feature-cell {
        background: rgba(255, 255, 255, 0.05);
        justify-content: flex-start;
        font-weight: 600;
        color: var(--white);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .floating-cards {
        display: none;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-form {
        padding: 24px;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }
}