@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #eef2ff;
  --primary-glow: rgba(79, 70, 229, 0.16);
  --accent: #10b981;
  --accent-light: #ecfdf5;
  --dark: #090d16;
  --dark-surface: #0f172a;
  --slate: #475569;
  --slate-light: #64748b;
  --bg-page: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-subtle: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 20px 40px -10px rgba(79, 70, 229, 0.16);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; position: relative; }
body { font-family: var(--font); color: var(--dark); background-color: var(--bg-page); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; position: relative; }

/* Sticky Glass Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); width: 100%; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; width: 100%; }
.brand { font-weight: 800; font-size: 1.35rem; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; letter-spacing: -0.03em; }
.brand-icon { width: 36px; height: 36px; border-radius: 9px; box-shadow: 0 3px 10px rgba(79, 70, 229, 0.25); flex-shrink: 0; }
.brand span { color: var(--primary); }
.nav-links { display: flex; gap: 1.25rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--slate); font-weight: 600; font-size: 0.925rem; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }

/* Buttons & Badges */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.6rem; border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, #3730a3 100%); color: var(--white); box-shadow: 0 4px 14px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--primary-glow); color: var(--white); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; white-space: nowrap; }

/* Play Store Badge */
.btn-playstore { display: inline-flex; align-items: center; gap: 0.65rem; background-color: #000000; color: #ffffff; border: 1px solid #1f2937; padding: 0.55rem 1.25rem; border-radius: var(--radius-md); text-decoration: none; transition: all 0.2s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.12); max-width: 100%; }
.btn-playstore:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-playstore svg { width: 22px; height: 22px; flex-shrink: 0; }
.play-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.play-text .sub { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; color: #9ca3af; font-weight: 600; }
.play-text .main { font-size: 0.92rem; font-weight: 700; color: #ffffff; }

.hero-btn-group { display: flex; justify-content: center; align-items: center; gap: 0.85rem; flex-wrap: wrap; margin-top: 1rem; width: 100%; }

/* Hero Section */
.hero { position: relative; padding: 4rem 0 3rem; text-align: center; overflow: hidden; }
.hero-glow-bg { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: min(650px, 90vw); height: 380px; background: radial-gradient(circle, var(--primary-glow) 0%, rgba(248, 250, 252, 0) 70%); z-index: -1; pointer-events: none; }
.badge-offer-highlight { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary-light); border: 2px solid var(--primary); padding: 0.45rem 1.15rem; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 800; margin-bottom: 1.5rem; box-shadow: var(--shadow-subtle); max-width: 100%; flex-wrap: wrap; justify-content: center; }
.badge-offer-highlight .trial-text { color: var(--primary); }
.badge-offer-highlight .price-text { color: var(--dark); }

.hero h1 { font-size: clamp(1.9rem, 4.8vw, 3.4rem); line-height: 1.18; font-weight: 800; letter-spacing: -0.03em; color: var(--dark); max-width: 960px; margin: 0 auto 1.25rem; word-break: break-word; }
.gradient-text { background: linear-gradient(135deg, var(--primary) 0%, #6366f1 50%, #06b6d4 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.2rem); color: var(--slate); max-width: 720px; margin: 0 auto 2rem; font-weight: 500; }

.lead-form-inline { display: flex; width: 100%; max-width: 520px; margin: 0 auto 1rem; background: var(--white); padding: 0.35rem; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.lead-form-inline input { flex: 1; min-width: 0; border: none; outline: none; padding: 0.75rem 1rem; font-size: 0.95rem; font-family: inherit; background: transparent; color: var(--dark); }
.trust-microcopy { display: flex; justify-content: center; align-items: center; gap: 1rem; font-size: 0.825rem; color: var(--slate-light); flex-wrap: wrap; }

/* Product Mockup Container */
.product-preview { margin: 3rem auto 0; width: 100%; max-width: 1000px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12); padding: clamp(1rem, 2vw, 1.5rem); text-align: left; }
.browser-bar { display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 1.25rem; }
.window-dots { display: flex; gap: 5px; flex-shrink: 0; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; } .dot-yellow { background: #ffbd2e; } .dot-green { background: #27c93f; }
.search-fake { background: var(--bg-page); padding: 0.3rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.78rem; color: var(--slate-light); flex: 1; max-width: 340px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 1.25rem; }
.stat-card { background: var(--bg-page); border: 1px solid var(--border); padding: 1.1rem; border-radius: var(--radius-md); }
.stat-card .label { font-size: 0.78rem; color: var(--slate); font-weight: 600; text-transform: uppercase; }
.stat-card .val { font-size: 1.65rem; font-weight: 800; color: var(--dark); margin: 0.25rem 0; letter-spacing: -0.02em; }
.badge-tag { display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); }
.badge-success { background: var(--accent-light); color: var(--accent); }
.badge-info { background: var(--primary-light); color: var(--primary); }
.live-feed { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.85rem 1rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; flex-wrap: wrap; gap: 0.5rem; }
.tenant-pill { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: #c7d2fe; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

/* Grid Sections */
.section-header { text-align: center; margin: 4.5rem 0 2.5rem; }
.section-tag { color: var(--primary); font-weight: 800; font-size: 0.825rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; letter-spacing: -0.025em; color: var(--dark); }
.section-header p { color: var(--slate); font-size: 1rem; max-width: 650px; margin: 0.6rem auto 0; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.85rem; box-shadow: var(--shadow-card); transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; justify-content: space-between; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #c7d2fe; }
.card-icon-box { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.35rem; margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.65rem; color: var(--dark); }
.feature-card p { color: var(--slate); font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.25rem; }
.card-link { color: var(--primary); font-weight: 700; text-decoration: none; font-size: 0.925rem; display: inline-flex; align-items: center; gap: 0.35rem; }

/* 3-Step Flow Architecture */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin: 2.5rem 0; }
.step-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.85rem; text-align: left; box-shadow: var(--shadow-subtle); }
.step-number { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: var(--white); font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; font-size: 1rem; }

/* Dynamic Savings Calculator */
.calculator-box { background: linear-gradient(135deg, var(--dark-surface) 0%, #1e1b4b 100%); color: var(--white); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3.5vw, 3rem); margin: 4.5rem 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.calc-info h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); font-weight: 800; margin-bottom: 0.85rem; }
.calc-info p { color: #94a3b8; font-size: 0.98rem; margin-bottom: 1.5rem; }
.slider-container { margin-bottom: 1.5rem; }
.slider-header { display: flex; justify-content: space-between; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.65rem; }
.range-slider { width: 100%; height: 8px; background: #334155; border-radius: 4px; outline: none; -webkit-appearance: none; accent-color: var(--primary); }
.calc-result-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-md); padding: 1.85rem; text-align: center; }
.calc-result-card .savings-label { font-size: 0.88rem; color: #cbd5e1; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; }
.calc-result-card .savings-amount { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; color: var(--accent); margin: 0.4rem 0 1rem; letter-spacing: -0.03em; }

/* Table */
.table-wrap { overflow-x: auto; margin: 2rem 0; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-card); -webkit-overflow-scrolling: touch; }
table { width: 100%; min-width: 600px; border-collapse: collapse; text-align: left; }
th, td { padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.925rem; }
th { background: var(--bg-page); font-weight: 700; color: var(--dark); }

/* Accordion */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 0.85rem; overflow: hidden; transition: all 0.2s ease; }
.faq-question { width: 100%; background: none; border: none; padding: 1.15rem 1.35rem; text-align: left; font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.faq-answer { display: none; padding: 0 1.35rem 1.25rem; color: var(--slate); font-size: 0.94rem; line-height: 1.6; }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-subtle); }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question span { transform: rotate(45deg); color: var(--primary); }
.faq-question span { font-size: 1.35rem; transition: transform 0.2s ease; color: var(--slate-light); flex-shrink: 0; }

/* Legal Content Card */
.legal-content-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 3rem); box-shadow: var(--shadow-card); max-width: 900px; margin: 2rem auto 4rem; text-align: left; }
.legal-content-card h2 { font-size: 1.45rem; font-weight: 800; color: var(--dark); margin: 2rem 0 0.75rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.legal-content-card h2:first-of-type { margin-top: 0; }
.legal-content-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 1.25rem 0 0.5rem; }
.legal-content-card p, .legal-content-card li { color: var(--slate); font-size: 0.975rem; line-height: 1.7; margin-bottom: 0.85rem; }
.legal-content-card ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-badge { display: inline-block; background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: 0.825rem; padding: 0.3rem 0.8rem; border-radius: var(--radius-full); margin-bottom: 1rem; }

/* Footer */
.site-footer { background-color: var(--dark); color: #94a3b8; font-size: 0.9rem; border-top: 1px solid #1e293b; margin-top: 6rem; padding: 4rem 0 0; width: 100%; }
.footer-cluster { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1.1fr; gap: 2rem; padding-bottom: 3.5rem; }
.footer-brand { font-size: 1.4rem; font-weight: 800; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 0.6rem; }
.footer-brand span { color: #818cf8; }
.footer-tagline { color: #94a3b8; margin: 0.85rem 0 1.25rem; font-size: 0.9rem; line-height: 1.55; }
.footer-pricing-pill { display: inline-block; background: rgba(79, 70, 229, 0.15); color: #a5b4fc; border: 1px solid rgba(165, 180, 252, 0.25); padding: 0.35rem 0.8rem; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-heading { color: var(--white); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.15rem; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-list a { color: #94a3b8; text-decoration: none; transition: color 0.15s ease; }
.footer-nav-list a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #1e293b; padding: 1.5rem 0; background-color: #050811; font-size: 0.85rem; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.85rem; }

@media (max-width: 1200px) { .footer-cluster { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 768px) {
  .navbar .nav-links { display: none; }
  .navbar { padding: 0.65rem 0; }
  .nav-cta .btn-playstore { display: none; }
  .hero { padding: 3rem 0 2rem; }
  .lead-form-inline { flex-direction: column; gap: 0.5rem; background: transparent; border: none; box-shadow: none; padding: 0; }
  .lead-form-inline input { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.85rem 1rem; width: 100%; }
  .lead-form-inline .btn { width: 100%; }
  .footer-cluster { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-flex { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .badge-offer-highlight { font-size: 0.78rem; padding: 0.35rem 0.85rem; }
  .trust-microcopy { flex-direction: column; gap: 0.35rem; }
}
