/* Zaver Pro Landing Page Style Sheet */

/* --- Design Tokens & Variables --- */
:root {
    --bg-dark: #090a0f;
    --bg-card: #12141c;
    --bg-card-glass: rgba(18, 20, 28, 0.75);
    --border-glass: rgba(255, 255, 255, 0.05);
    
    /* Luxury Gold Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);
    
    /* Slate Grays */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Accent Colors */
    --green-success: #10b981;
    --green-success-glow: rgba(16, 185, 129, 0.15);
    --red-error: #f43f5e;
    --red-error-glow: rgba(244, 63, 94, 0.15);
    --blue-accent: #3b82f6;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Dimensions & Speeds */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Resets & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.gold-text { color: var(--gold-primary); }
.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal {
    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);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Sticky Glass Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section & Glows --- */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(9, 10, 15, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(9, 10, 15, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.india-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.flag-stripe {
    width: 12px;
    height: 4px;
    border-radius: 1px;
}
.flag-stripe.orange { background-color: #FF9933; }
.flag-stripe.white { background-color: #FFFFFF; }
.flag-stripe.green { background-color: #138808; }

.version-badge {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-ratings {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.ratings-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Interactive Phone Mockup --- */
.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 290px;
    height: 580px;
    background: #000;
    border: 12px solid #27272a;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.phone-speaker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 18px;
    background: #000;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f1016;
    padding: 24px 14px 14px 14px;
    overflow-y: auto;
    font-size: 0.8rem;
    scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* App Mockup Internal Styles */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 4px;
}

.app-shop-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-shop-avatar {
    width: 28px;
    height: 28px;
    background: var(--gold-gradient);
    border-radius: 50%;
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.app-shop-name {
    font-weight: 700;
    font-size: 0.75rem;
}

.app-shop-role {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.app-bell-icon {
    color: var(--text-secondary);
}

/* App Metal Rates Dashboard widget */
.app-metal-prices {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 16px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: var(--green-success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.app-price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-label {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.card-value {
    font-weight: 700;
    font-size: 0.7rem;
    margin: 2px 0;
}

.card-change {
    font-size: 0.5rem;
    font-weight: 600;
}

.card-change.up { color: var(--green-success); }
.card-change.down { color: var(--red-error); }

.app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
}

.stat-title {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.stat-num {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-primary);
}

.app-quick-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.bill-icon { background: rgba(59, 130, 246, 0.15); }
.stock-icon { background: rgba(212, 175, 55, 0.15); }
.audit-icon { background: rgba(16, 185, 129, 0.15); }
.report-icon { background: rgba(244, 63, 94, 0.15); }

.menu-item span {
    font-size: 0.55rem;
    color: var(--text-secondary);
}

.app-recent-sales {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
}

.section-title-app {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.invoice-item:last-child {
    border-bottom: none;
}

.inv-name {
    font-weight: 600;
    font-size: 0.65rem;
}

.inv-date {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.inv-amount {
    font-weight: 700;
    font-size: 0.68rem;
    color: var(--text-primary);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(18, 20, 28, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 220px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.badge-1 {
    top: 15%;
    left: -40px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -40px;
    animation-delay: 2s;
}

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

.floating-badge h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.floating-badge p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* --- Section Header --- */
.section-header {
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* --- Indian Localization Section --- */
.localization-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0e1017 100%);
}

.localization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.localization-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: var(--transition-smooth);
}

.localization-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.05);
}

.loc-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.loc-icon {
    color: var(--gold-primary);
}

.localization-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.localization-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    position: relative;
}

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

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.feature-emoji {
    font-size: 1.75rem;
}

.feature-item h3 {
    font-size: 1.25rem;
}

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

/* --- Security / Cloud Section --- */
.security-section {
    position: relative;
    padding: 100px 0;
    background: #0b0c11;
    overflow: hidden;
}

.security-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(9, 10, 15, 0) 70%);
    z-index: 1;
    filter: blur(40px);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.security-content {
    z-index: 2;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.security-content .section-title {
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.security-bullets {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sec-bullet {
    display: flex;
    gap: 16px;
}

.bullet-check {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--green-success);
    color: var(--green-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.sec-bullet h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.sec-bullet p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Shield Animation Layout */
.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    z-index: 2;
}

.shield-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-core {
    width: 110px;
    height: 110px;
    background: #151821;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 0 30px var(--gold-glow);
    z-index: 5;
}

.shield-svg {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.security-core-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
}

.pulse-ring {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: pulse-ring 3s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.ring-1 { width: 140px; height: 140px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: 1s; }
.ring-3 { width: 220px; height: 220px; animation-delay: 2s; }

.security-node {
    position: absolute;
    background: #1f222d;
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 6;
}

.node-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.node-2 { bottom: 20px; left: -20px; }
.node-3 { bottom: 20px; right: -20px; }

/* --- Pricing Section --- */
.pricing-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0e1017 0%, var(--bg-dark) 100%);
}



/* Pricing Cards */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-name {
    font-size: 1.75rem;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.plan-price-wrapper {
    display: flex;
    align-items: baseline;
    margin: 12px 0 6px 0;
}

.plan-price-wrapper .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.plan-price-wrapper .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-price-wrapper .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.plan-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 24px 0;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex-grow: 1;
}

.plan-features-list li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bullet-yes {
    color: var(--green-success);
    font-weight: 700;
}

.bullet-no {
    color: var(--red-error);
    font-weight: 700;
    opacity: 0.4;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-plan.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-plan.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Detailed Comparison Table */
.comparison-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.comparison-title {
    font-size: 1.75rem;
    margin-bottom: 36px;
}

.comparison-table-container {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.comparison-table th, .comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.2);
}

.comparison-table th:first-child {
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
}

.comparison-table th:last-child {
    border-top-right-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
}

.comparison-table td.feat-col {
    text-align: left;
    font-weight: 500;
    color: var(--text-secondary);
}

.check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--green-success-glow);
    border: 1px solid var(--green-success);
    color: var(--green-success);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.cross-icon {
    color: var(--red-error);
    font-weight: 700;
    opacity: 0.5;
}

.lock-icon {
    font-size: 0.8rem;
    margin-left: 4px;
}

/* --- Download App / QR Section --- */
.download-section {
    padding: 100px 0;
    background: #090a0f;
    position: relative;
    border-top: 1px solid var(--border-glass);
}

.download-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.india-badge-mini {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.download-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-desc {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.d-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

.download-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #181920;
    border: 1px solid var(--border-glass);
    padding: 12px 24px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.playstore-btn:hover {
    background: #20222a;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.play-svg {
    flex-shrink: 0;
}

.btn-subtext {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.btn-maintext {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

/* QR Card */
.qr-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.qr-header {
    margin-bottom: 24px;
}

.qr-header h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.qr-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.qr-image-wrapper {
    background: #18181b;
    border-radius: var(--radius-md);
    padding: 20px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.qr-svg {
    display: block;
}

.qr-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.qr-badge {
    background: var(--green-success-glow);
    border: 1px solid var(--green-success);
    color: var(--green-success);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* --- Footer --- */
.main-footer {
    background: #06070b;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    max-width: 280px;
}

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

.social-icon {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-group h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.footer-links-group a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links-group a:hover {
    color: var(--gold-primary);
}

.support-address {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.4; }
}

@keyframes pulse-ring {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* --- Responsive Layout / Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-grid {
        gap: 32px;
    }
    .localization-grid {
        gap: 20px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-cards-grid {
        gap: 20px;
    }
    .comparison-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(9, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition-smooth);
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin: 0 auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .phone-mockup-wrapper {
        margin-top: 40px;
    }
    
    .localization-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .security-visual {
        order: 2;
        height: 300px;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 50px auto;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .download-features {
        align-items: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .floating-badge {
        display: none; /* Hide floating badges on very small screens to avoid overflow */
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
