/* ===================================================
   BEDLO — Revamped SaaS Website Stylesheet
   Mobile-first PMS for Indian Hospitality
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --primary-dark: #3730A3;
    --primary-50: #EEF2FF;
    --primary-100: #E0E7FF;
    --primary-200: #C7D2FE;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 80px;
}
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Cursor Glow ---------- */
.cursor-glow {
    position: fixed; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
    pointer-events: none; z-index: 0; transform: translate(-50%, -50%);
    transition: opacity 0.3s; opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="150"] { transition-delay: 0.15s; }
.animate-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"] { transition-delay: 0.3s; }

/* ---------- Navigation ---------- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all 0.4s var(--ease-out-expo);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.navbar.menu-open {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: transparent; border-bottom: none; box-shadow: none;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-primary); font-weight: 700; font-size: 22px;
    color: var(--gray-900); z-index: 10;
}
.logo-icon { display: flex; transition: transform 0.3s var(--ease-spring); }
.nav-logo:hover .logo-icon { transform: rotate(-5deg) scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links .mobile-menu-cta { display: none; }
.nav-link {
    font-size: 15px; font-weight: 500; color: var(--gray-600);
    transition: color 0.2s; cursor: pointer;
}
.nav-link:hover { color: var(--gray-900); }
.nav-actions { display: flex; align-items: center; gap: 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; font-family: var(--font-body); font-size: 15px; font-weight: 600;
    border-radius: var(--radius-full); border: none; cursor: pointer;
    transition: background 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo), transform 0.2s ease;
    position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
    background: var(--primary); color: #fff;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4); transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
    background: #fff; color: var(--gray-700);
    border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline {
    background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-50); }
.btn-white {
    background: #fff; color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-nav { padding: 10px 22px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Mobile Toggle ---------- */
.mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; z-index: 10;
}
.mobile-toggle span {
    width: 22px; height: 2px; background: var(--gray-700);
    border-radius: 2px; transition: all 0.3s var(--ease-out-expo);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative; padding: 140px 0 80px;
    overflow: hidden; min-height: 100vh;
    display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-gradient-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
    will-change: transform; animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(129,140,248,0.12) 0%, transparent 70%); bottom: -100px; left: -100px; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%); top: 40%; left: 30%; animation-delay: -14s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-30px) scale(1.05); }
    66% { transform: translate(-20px,20px) scale(0.95); }
}
.grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,70,229,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 100%);
}

.hero-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: var(--primary-50);
    border: 1px solid var(--primary-200); border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--primary);
    margin-bottom: 24px;
}
.badge-dot {
    width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(79,70,229,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(79,70,229,0); }
}
.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(38px, 5.5vw, 62px); font-weight: 800;
    line-height: 1.08; color: var(--gray-900);
    margin-bottom: 20px; letter-spacing: -0.03em;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #A78BFA 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description {
    font-size: 18px; color: var(--gray-500);
    max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; gap: 24px;
    padding: 20px 0; border-top: 1px solid var(--gray-100);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value {
    font-family: var(--font-primary); font-size: 28px; font-weight: 800;
    color: var(--gray-900); line-height: 1;
}
.hero-stat-num {
    font-family: var(--font-primary); font-size: 28px; font-weight: 800;
    color: var(--gray-900); display: inline;
}
.hero-stat-label { font-size: 13px; color: var(--gray-400); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--gray-200); }

/* ========== Hero Phone Visual ========== */
.hero-visual { position: relative; perspective: 1200px; }
.hero-phone-group {
    position: relative; display: flex; justify-content: center;
    min-height: 520px;
}

/* Phone Frames */
.phone-frame {
    background: #1a1a2e; border-radius: 32px; padding: 8px;
    box-shadow: var(--shadow-2xl), inset 0 0 0 1.5px rgba(255,255,255,0.08);
    overflow: hidden; position: relative;
}
.phone-frame .phone-notch {
    width: 90px; height: 22px; background: #1a1a2e;
    border-radius: 0 0 14px 14px; position: absolute;
    top: 8px; left: 50%; transform: translateX(-50%); z-index: 5;
}
.phone-frame img {
    border-radius: 24px; width: 100%; height: auto; display: block;
}

.hero-phone {
    position: absolute; transition: transform 0.6s var(--ease-out-expo);
}
.hero-phone-front {
    width: 260px; z-index: 2; top: 0; left: 50%; transform: translateX(-50%);
    animation: heroPhoneFront 6s ease-in-out infinite;
}
.hero-phone-back {
    width: 220px; z-index: 1; top: 30px; left: 50%;
    transform: translateX(-110%) rotate(-6deg);
    animation: heroPhoneBack 6s ease-in-out infinite;
    opacity: 0.85;
}
@keyframes heroPhoneFront {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes heroPhoneBack {
    0%, 100% { transform: translateX(-110%) rotate(-6deg) translateY(0); }
    50% { transform: translateX(-110%) rotate(-6deg) translateY(-6px); }
}

/* Floating Cards */
.floating-card {
    position: absolute; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md); padding: 14px 18px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    z-index: 3; animation: floatCard 4s ease-in-out infinite;
}
.card-revenue {
    top: 18%; right: 0; display: flex; align-items: center; gap: 12px;
    animation-delay: -1s;
}
.card-occupancy {
    bottom: 12%; left: 0; display: flex; flex-direction: column; gap: 6px;
    animation-delay: -2.5s;
}
.fc-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fc-icon-green { background: #ECFDF5; }
.fc-body { display: flex; flex-direction: column; }
.fc-label { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.fc-value { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.fc-bar-wrap { width: 80px; height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.fc-bar { height: 100%; background: var(--primary); border-radius: 3px; width: var(--pct); transition: width 1s var(--ease-out-expo); }
.fc-pct { font-size: 20px; font-weight: 800; color: var(--primary); }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========== Logos ========== */
.logos-section {
    padding: 60px 0; border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100); background: var(--gray-50);
}
.logos-label {
    text-align: center; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; color: var(--gray-400); margin-bottom: 28px;
}
.logos-strip {
    display: flex; justify-content: center; align-items: center;
    gap: 48px; flex-wrap: wrap;
}
.logo-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600; color: var(--gray-400);
    transition: color 0.3s, transform 0.3s; cursor: default;
}
.logo-item:hover { color: var(--gray-600); transform: translateY(-2px); }
.logo-item span { font-size: 20px; }

/* ========== Section Shared ========== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; color: var(--primary); margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-primary); font-size: clamp(28px, 4vw, 42px);
    font-weight: 800; color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-subtitle { font-size: 17px; color: var(--gray-500); max-width: 540px; margin: 0 auto; }

/* ========== Features Grid ========== */
.features { padding: 100px 0; }
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
    padding: 32px 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100); background: #fff;
    transition: border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
    position: relative; overflow: hidden; contain: layout style;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}
.feature-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg), var(--shadow-glow); transform: translateY(-4px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: var(--primary-50); border-radius: var(--radius-md); color: var(--primary);
    margin-bottom: 20px; transition: all 0.3s var(--ease-spring);
}
.feature-card:hover .feature-icon {
    background: var(--primary); color: #fff; transform: scale(1.05) rotate(-3deg);
}
.feature-title {
    font-family: var(--font-primary); font-size: 18px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.feature-screen-ref {
    font-size: 13px; font-weight: 600; color: var(--primary);
    cursor: pointer; transition: color 0.2s;
}
.feature-screen-ref:hover { color: var(--primary-dark); }

/* ==========================================
   PRODUCT SCREENS SHOWCASE
   ========================================== */
.screens { padding: 100px 0; background: var(--gray-50); }

/* Tab Bar */
.screen-tabs {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    margin-bottom: 48px;
}
.screen-tab {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; border-radius: var(--radius-full);
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    border: 1.5px solid var(--gray-200); background: #fff; color: var(--gray-600);
    cursor: pointer; transition: all 0.3s var(--ease-out-expo);
}
.screen-tab:hover { border-color: var(--primary-200); color: var(--primary); }
.screen-tab.active {
    background: var(--primary); color: #fff; border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(79,70,229,0.3);
}
.screen-tab svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Panels */
.screen-panel { display: none; animation: panelFadeIn 0.5s var(--ease-out-expo); }
.screen-panel.active { display: block; }
@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-layout {
    display: grid; grid-template-columns: auto 1fr;
    gap: 48px; align-items: center;
}
.panel-layout-billing {
    grid-template-columns: auto auto 1fr;
}

.panel-phone { flex-shrink: 0; }
.panel-phone .phone-frame { width: 260px; }

/* Bill PDF image in billing panel */
.panel-bill { flex-shrink: 0; }
.bill-pdf-img {
    width: 280px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.06);
    transition: transform 0.4s var(--ease-out-expo);
}
.bill-pdf-img:hover { transform: scale(1.03) rotate(1deg); }

.panel-info h3 {
    font-family: var(--font-primary); font-size: 28px; font-weight: 800;
    color: var(--gray-900); margin-bottom: 14px; letter-spacing: -0.02em;
}
.panel-info > p {
    font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px;
}
.panel-features { display: flex; flex-direction: column; gap: 10px; }
.panel-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15px; color: var(--gray-700); line-height: 1.5;
}
.panel-features li::before {
    content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
    border-radius: 50%; background: var(--primary-50);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 4.5L6 11.5L3 8.5' stroke='%234F46E5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}

/* ========== How It Works ========== */
.how-it-works { padding: 100px 0; }
.steps-row {
    display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.step-card {
    flex: 0 0 280px; padding: 32px; text-align: center;
    border-radius: var(--radius-lg); background: #fff;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease-out-expo);
}
.step-card:hover {
    border-color: var(--primary-200); box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.step-num {
    width: 48px; height: 48px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--primary);
    color: #fff; font-family: var(--font-primary);
    font-size: 20px; font-weight: 800;
}
.step-card h4 {
    font-family: var(--font-primary); font-size: 17px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 8px;
}
.step-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.step-connector {
    flex-shrink: 0; width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--primary-200), var(--primary));
    margin-top: 56px; border-radius: 1px;
}

/* ========== Bill Showcase ========== */
.bill-showcase { padding: 100px 0; background: var(--gray-50); }
.bill-showcase-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.bill-showcase-info .section-title { text-align: left; }
.bill-showcase-info > p {
    font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px;
}
.bill-highlights { display: flex; flex-direction: column; gap: 14px; }
.bill-highlight {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: var(--gray-700); font-weight: 500;
}
.bill-showcase-visual { display: flex; justify-content: center; }
.bill-paper {
    background: #fff; border-radius: var(--radius-lg); padding: 16px;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(0,0,0,0.05);
    max-width: 420px;
    transform: rotate(2deg);
    transition: transform 0.5s var(--ease-out-expo);
    animation: billFloat 5s ease-in-out infinite;
}
.bill-paper:hover { transform: rotate(0deg) scale(1.02); }
.bill-paper img { border-radius: var(--radius-sm); }
@keyframes billFloat {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-8px); }
}

/* ========== Testimonial ========== */
.testimonial { padding: 100px 0; }
.testimonial-card { max-width: 700px; margin: 0 auto; text-align: center; }
.quote-icon { margin: 0 auto 24px; display: flex; justify-content: center; opacity: 0.6; }
.testimonial-text {
    font-family: var(--font-primary); font-size: clamp(20px, 3vw, 26px);
    font-weight: 600; color: var(--gray-800); line-height: 1.5;
    margin-bottom: 32px; letter-spacing: -0.01em;
}
.testimonial-author {
    display: flex; align-items: center; justify-content: center; gap: 14px;
}
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 14px;
}
.author-info { text-align: left; }
.author-info strong { display: block; font-size: 15px; color: var(--gray-900); }
.author-info span { font-size: 13px; color: var(--gray-500); }

/* ========== Pricing ========== */
.pricing { padding: 100px 0; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start;
}
.pricing-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
    border: 2px solid var(--primary); box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff; padding: 4px 16px;
    border-radius: var(--radius-full); font-size: 11px; font-weight: 700;
    letter-spacing: 0.5px; white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 {
    font-family: var(--font-primary); font-size: 20px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 12px;
}
.pricing-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 12px; }
.currency { font-size: 20px; font-weight: 600; color: var(--gray-600); }
.price {
    font-family: var(--font-primary); font-size: 44px; font-weight: 800;
    color: var(--gray-900); line-height: 1;
}
.price.custom { font-size: 36px; }
.period { font-size: 15px; color: var(--gray-500); margin-left: 4px; }
.pricing-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.pricing-card .btn { margin-bottom: 24px; }
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--gray-600); padding: 8px 0;
}
.pricing-features li svg { flex-shrink: 0; }

/* ========== Beta Access Form ========== */
.beta-access { padding: 100px 0; background: var(--gray-50); }
.beta-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 80px; align-items: start;
}
.beta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: var(--primary-50);
    border: 1px solid var(--primary-200); border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--primary);
    margin-bottom: 24px;
}
.beta-title {
    font-family: var(--font-primary); font-size: clamp(28px, 4vw, 42px);
    font-weight: 800; color: var(--gray-900); line-height: 1.15;
    margin-bottom: 40px; letter-spacing: -0.02em;
}
.beta-steps { display: flex; flex-direction: column; gap: 28px; }
.beta-step { display: flex; gap: 16px; align-items: flex-start; }
.step-check {
    flex-shrink: 0; width: 36px; height: 36px; background: var(--primary-50);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.beta-step h4 {
    font-family: var(--font-primary); font-size: 16px; font-weight: 700;
    color: var(--gray-900); margin-bottom: 4px;
}
.beta-step p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.beta-form-wrapper {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow-xl); position: relative;
}
.beta-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.required { color: #EF4444; margin-left: 2px; }
.form-group input,
.form-group select {
    padding: 12px 16px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 15px; color: var(--gray-800); background: #fff;
    transition: all 0.25s var(--ease-out-expo); outline: none;
    appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.form-group-country { flex: 0 0 35%; }
.form-group-phone { flex: 1; }
.beta-submit { margin-top: 8px; }
.beta-submit:active { transform: scale(0.98); }
.form-privacy {
    font-size: 12px; color: var(--gray-400); line-height: 1.6; text-align: center; margin-top: 4px;
}
.form-privacy a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* Success State */
.beta-success { text-align: center; padding: 60px 40px; animation: fadeInUp 0.5s var(--ease-out-expo); }
.success-icon {
    margin: 0 auto 24px; width: 72px; height: 72px;
    background: rgba(16, 185, 129, 0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: successPop 0.5s var(--ease-spring);
}
@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
.beta-success h3 {
    font-family: var(--font-primary); font-size: 24px; font-weight: 800;
    color: var(--gray-900); margin-bottom: 12px;
}
.beta-success p { font-size: 15px; color: var(--gray-500); line-height: 1.7; max-width: 400px; margin: 0 auto; }
.beta-submit.loading { pointer-events: none; opacity: 0.7; }
.beta-submit.loading::after {
    content: ''; width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin 0.6s linear infinite; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1e1b4b 100%);
    position: relative; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-gradient-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.cta-bg .orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(129,140,248,0.3) 0%, transparent 70%); top: -200px; right: -100px; }
.cta-bg .orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%); bottom: -200px; left: -100px; }
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 {
    font-family: var(--font-primary); font-size: clamp(28px, 4vw, 40px);
    font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.02em;
}
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }

/* ========== Footer ========== */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 60px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 16px; color: var(--gray-400); }
.made-in-india {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
    color: var(--gray-500); padding: 6px 12px; background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
}
.footer-col h4 {
    font-family: var(--font-primary); font-size: 14px; font-weight: 700;
    color: #fff; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 14px; color: var(--gray-400); transition: color 0.2s, transform 0.2s; display: inline-block;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
    padding: 24px 0; font-size: 13px; color: var(--gray-500);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-contact-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 12px 0 8px; }
.footer-contact-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--gray-400); transition: color 0.2s;
}
.footer-contact-link:hover { color: #fff; }
.footer-contact-link svg { flex-shrink: 0; }
.footer-address { font-size: 12px; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
    color: var(--gray-400); transition: all 0.2s;
}
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ---- WhatsApp Floating Widget ---- */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsappPulse 3s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ---- Form Error & Loading States ---- */
.input-error { border-color: var(--error) !important; animation: shake 0.4s ease-in-out; }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}
.form-error {
    color: var(--error); font-size: 13px; margin-top: 8px;
    animation: fadeIn 0.3s ease;
}
.spinner {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%;
    animation: spin 0.6s linear infinite; vertical-align: middle; margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.beta-submit.loading { opacity: 0.8; pointer-events: none; }

/* ---- Legal / Secondary Page Styles ---- */
.legal-page { padding: 120px 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 {
    font-size: 36px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px;
}
.legal-page .legal-updated {
    font-size: 14px; color: var(--gray-400); margin-bottom: 40px;
}
.legal-page h2 {
    font-size: 22px; font-weight: 700; color: var(--gray-800);
    margin-top: 40px; margin-bottom: 16px;
}
.legal-page h3 {
    font-size: 18px; font-weight: 600; color: var(--gray-800);
    margin-top: 24px; margin-bottom: 12px;
}
.legal-page p, .legal-page li {
    font-size: 15px; line-height: 1.8; color: var(--gray-600); margin-bottom: 12px;
}
.legal-page ul, .legal-page ol {
    padding-left: 24px; margin-bottom: 16px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-page a:hover { color: var(--primary-dark); }
.legal-page .contact-box {
    background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px;
    padding: 24px; margin-top: 32px;
}
.legal-page .contact-box h3 { margin-top: 0; }
.legal-page .contact-box p { margin-bottom: 4px; }

/* ---- About Page Hero ---- */
.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-50), #fff 60%);
    text-align: center;
}
.about-hero h1 {
    font-size: 42px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px;
}
.about-hero .about-subtitle {
    font-size: 18px; color: var(--gray-500); max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.about-section { padding: 60px 0; }
.about-section .container { max-width: 800px; }
.about-section h2 {
    font-size: 28px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px;
}
.about-section p {
    font-size: 16px; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px;
}
.about-values {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
    margin-top: 32px;
}
.about-value-card {
    background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px;
    padding: 24px; text-align: center;
}
.about-value-card .value-emoji { font-size: 32px; margin-bottom: 12px; }
.about-value-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.about-value-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ==========================================
   SIGNUP PAGE
   ========================================== */
.signup-section {
    padding: 130px 0 72px;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 45%);
}
.signup-section .container {
    max-width: 600px;
}
.signup-section h1 {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 42px);
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.signup-form {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px;
}
.signup-form .form-group {
    margin-bottom: 14px;
}
.signup-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.signup-form input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 15px;
    color: var(--gray-900);
}
.signup-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

/* ==========================================
   PLAY STORE BADGE
   ========================================== */
.play-badge {
    display: inline-block;
    transition: opacity 0.2s ease;
}
.play-badge:hover {
    opacity: 0.8;
}
.play-badge img {
    height: 48px;
    width: auto;
}
.play-badge-sm img {
    height: 40px;
}
.play-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}
.play-badge-row span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==========================================
   TRIAL POPUP
   ========================================== */
.trial-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}
.trial-popup-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}
.trial-popup-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.trial-popup-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.trial-popup-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.5;
}
.trial-popup-btn {
    display: inline-block;
    width: 100%;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-container { gap: 40px; }
    .panel-layout { gap: 32px; }
    .panel-layout-billing { grid-template-columns: auto 1fr; }
    .panel-layout-billing .panel-bill { display: none; }
    .bill-showcase-grid { gap: 48px; }
    .steps-row { flex-wrap: wrap; gap: 16px; }
    .step-connector { display: none; }
    .step-card { flex: 1 1 200px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.mobile-open {
        display: flex; flex-direction: column; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #ffffff;
        padding: 100px 24px 40px; z-index: 9999; gap: 28px; align-items: center;
        justify-content: flex-start;
        animation: fadeIn 0.3s;
    }
    .nav-links.mobile-open .nav-link { font-size: 22px; font-weight: 600; color: var(--gray-800); }
    .nav-links.mobile-open .nav-link:hover { color: var(--primary); }
    .mobile-menu-cta {
        margin-top: 12px; padding: 14px 36px; font-size: 16px;
        border-radius: var(--radius-full);
    }
    .mobile-menu-cta { display: inline-flex; }
    .nav-links.mobile-open .mobile-menu-cta { display: inline-flex; }
    .nav-logo { z-index: 10001; }
    .mobile-toggle { z-index: 10001; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero-phone-group { min-height: 420px; }
    .hero-phone-front { width: 220px; }
    .hero-phone-back { width: 180px; }
    .floating-card { display: none; }
    .hero-stats { gap: 16px; }
    .hero-stat-value { font-size: 22px; }
    .hero-stat-num { font-size: 22px; }
    .features-grid { grid-template-columns: 1fr; }
    .panel-layout { grid-template-columns: 1fr; text-align: center; }
    .panel-layout-billing { grid-template-columns: 1fr; }
    .panel-phone { display: flex; justify-content: center; }
    .panel-phone .phone-frame { width: 220px; }
    .panel-bill { display: flex; justify-content: center; }
    .bill-pdf-img { width: 220px; }
    .panel-features { text-align: left; }
    .screen-tabs { gap: 6px; }
    .screen-tab { padding: 8px 12px; font-size: 12px; }
    .screen-tab svg { display: none; }
    .bill-showcase-grid { grid-template-columns: 1fr; }
    .bill-showcase-info .section-title { text-align: center; }
    .bill-showcase-info { text-align: center; }
    .bill-highlights { align-items: center; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .beta-grid { grid-template-columns: 1fr; gap: 40px; }
    .beta-form-wrapper { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group-country { flex: auto; }
    .signup-section { padding: 102px 0 56px; }
    .signup-form { padding: 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 36px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .hero-phone-group { min-height: 380px; }
    .hero-phone-front { width: 190px; }
    .hero-phone-back { display: none; }
    .logos-strip { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========== Utilities ========== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageLoad 0.6s var(--ease-out-expo); }
@keyframes pageLoad { from { opacity: 0; } to { opacity: 1; } }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }
::selection { background: var(--primary-200); color: var(--primary-dark); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.btn-primary { will-change: transform; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Content visibility for below-fold */
.features, .screens, .how-it-works, .bill-showcase,
.testimonial, .pricing, .beta-access, .cta-section, .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.3);
}

/* ==========================================
   LOGIN & ACCOUNT PAGES
   ========================================== */

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-500);
}
.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.auth-switch a:hover {
    color: var(--primary-dark);
}

/* Account section */
.account-section {
    padding: 130px 0 72px;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 45%);
}
.account-loader {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: accountSpin 0.7s linear infinite;
}
@keyframes accountSpin {
    to { transform: rotate(360deg); }
}
.account-section h1 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.account-email {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

/* Account card */
.account-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 24px;
}
.account-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--gray-100);
}
.account-card__header h2 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}
.account-card__body {
    padding: 28px;
}
.account-card__body p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
}
.account-card__footer {
    padding: 20px 28px;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.status-badge--active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}
.status-badge--cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}
.status-badge--inactive,
.status-badge--halted {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

/* Detail grid */
.account-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.account-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.account-detail__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.account-detail__value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

/* Cancel button & note */
.btn-cancel {
    border-color: var(--error);
    color: var(--error);
}
.btn-cancel:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: var(--error);
    color: var(--error);
}
.cancel-note {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .account-section { padding: 102px 0 56px; }
    .account-card__header { padding: 20px; }
    .account-card__body { padding: 20px; }
    .account-card__footer { padding: 16px 20px; }
    .account-detail-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .account-card__header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
