/* ==========================================
   Patrol.AE - Security Patrol Management
   Dark theme with amber/gold accent
   ========================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-elevated: #1a1a1a;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --text-dim: #555555;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(245,158,11,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #000; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Navigation ===== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.4s ease; }
#navbar.nav-transparent { background: transparent; }
#navbar.nav-transparent.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
#navbar.nav-solid { background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; color: var(--text); }
.logo svg { color: var(--accent); flex-shrink: 0; }
.logo .logo-ae { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { font-size: 14px; color: var(--text-muted); padding: 8px 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--accent); background: rgba(245,158,11,0.08); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 16px 24px; gap: 0; border-top: 1px solid var(--border); transform: translateY(-100%); opacity: 0; pointer-events: none; transition: all 0.3s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); border-radius: 0; width: 100%; }
}

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; font-family: inherit; }
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 8px 32px rgba(245,158,11,0.25); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.15); }
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: rgba(245,158,11,0.08); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ===== Section Headers ===== */
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.label-line { width: 32px; height: 2px; background: var(--accent); }
.section-label span { font-family: ui-monospace, monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; }
h1.section-title, .section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.7; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background: url('../assets/hero-bg.jpg') center/cover no-repeat, linear-gradient(135deg, #0a0a0a 0%, #111 40%, #1a1200 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.08) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 60px 60px; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 60px; padding-bottom: 80px; }
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(245,158,11,0.3); background: rgba(245,158,11,0.08); margin-bottom: 28px; }
.hero-badge .pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero-badge span { font-family: ui-monospace, monospace; font-size: 12px; color: var(--accent); letter-spacing: 0.05em; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 .accent { color: var(--accent); }
.hero p { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 48px; }
.hero-stats .stat-value { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); }
.hero-stats .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual .phone-mockup { position: relative; width: 280px; height: 560px; background: var(--bg-card); border-radius: 32px; border: 2px solid rgba(245,158,11,0.15); padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(245,158,11,0.05); }
.hero-visual .phone-screen { width: 100%; height: 100%; background: var(--bg); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.phone-header { padding: 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.phone-header .ph-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.phone-header span { font-size: 11px; font-family: ui-monospace, monospace; color: var(--accent); }
.phone-body { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.phone-scan { flex: 1; display: flex; align-items: center; justify-content: center; border: 2px dashed rgba(245,158,11,0.2); border-radius: var(--radius); position: relative; }
.phone-scan .qr-icon { width: 80px; height: 80px; color: rgba(245,158,11,0.3); }
.phone-scan .scan-line { position: absolute; width: 60%; height: 2px; background: var(--accent); animation: scan 2s ease-in-out infinite; box-shadow: 0 0 8px var(--accent); }
.phone-item { padding: 10px 12px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); font-size: 12px; display: flex; align-items: center; gap: 8px; }
.phone-item .pi-icon { width: 6px; height: 6px; border-radius: 50%; }
.phone-item .pi-green { background: #22c55e; }
.phone-item .pi-amber { background: var(--accent); }
.phone-item .pi-red { background: #ef4444; }

@keyframes scan { 0%, 100% { top: 20%; } 50% { top: 80%; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== Trusted By ===== */
.trusted-by { padding: 40px 0; border-bottom: 1px solid var(--border); }
.trusted-by p { text-align: center; font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trusted-logos span { font-size: 14px; color: var(--text-dim); font-weight: 500; }

/* ===== Feature Cards ===== */
.features-section { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 48px; }
.feature-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s; }
.feature-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(245,158,11,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== How It Works ===== */
.how-section { padding: 100px 0; }
.how-section .divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,158,11,0.2), transparent); margin-bottom: 80px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card { text-align: center; padding: 32px 20px; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(245,158,11,0.1); border: 2px solid rgba(245,158,11,0.2); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.step-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-connector { position: absolute; top: 58px; right: -32px; width: 64px; height: 2px; background: linear-gradient(90deg, rgba(245,158,11,0.3), transparent); }
@media (max-width: 900px) { .step-connector { display: none; } }

/* ===== Industries ===== */
.industries-section { padding: 100px 0; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.industry-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s; }
.industry-card:hover { border-color: var(--border-hover); }
.industry-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(245,158,11,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.industry-icon svg { width: 22px; height: 22px; color: var(--accent); }
.industry-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== Pricing ===== */
.pricing-section { padding: 100px 0; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 32px 0 48px; }
.pricing-toggle span { font-size: 14px; color: var(--text-muted); }
.pricing-toggle span.active { color: var(--text); font-weight: 600; }
.toggle-switch { width: 48px; height: 26px; background: var(--bg-elevated); border-radius: 13px; position: relative; cursor: pointer; border: 1px solid var(--border); transition: all 0.3s; }
.toggle-switch.on { background: rgba(245,158,11,0.2); border-color: var(--accent); }
.toggle-knob { width: 20px; height: 20px; background: var(--text); border-radius: 50%; position: absolute; top: 2px; left: 2px; transition: all 0.3s; }
.toggle-switch.on .toggle-knob { left: 24px; background: var(--accent); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

.pricing-card { padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(245,158,11,0.05), var(--bg-card)); }
.pricing-badge { position: absolute; top: -1px; right: 24px; padding: 6px 14px; background: var(--accent); color: #000; font-size: 11px; font-weight: 700; border-radius: 0 0 var(--radius-sm) var(--radius-sm); text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card .price { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.pricing-card .price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.pricing-card .price-period { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.pricing-card ul { list-style: none; margin-bottom: 28px; }
.pricing-card ul li { padding: 8px 0; font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.pricing-card ul li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ===== Stats Bar ===== */
.stats-bar { padding: 60px 0; background: linear-gradient(135deg, rgba(245,158,11,0.03), transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 768px) { .stats-bar-grid { grid-template-columns: repeat(2, 1fr); } }
.stats-bar .stat-value { font-size: 36px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.stats-bar .stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ===== CTA Section ===== */
.cta-section { padding: 100px 0; text-align: center; }
.cta-section h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }

/* ===== Contact Page ===== */
.contact-section { padding: 140px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; display: flex; align-items: flex-start; gap: 16px; }
.contact-info-card:hover { border-color: var(--border-hover); }
.contact-info-card .ci-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(245,158,11,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .ci-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-info-card .ci-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-card .ci-value { font-size: 15px; color: var(--text); }
.contact-info-card a.ci-value:hover { color: var(--accent); }

.contact-form-card { padding: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); color: var(--text); font-size: 14px; font-family: inherit; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: rgba(245,158,11,0.5); box-shadow: 0 0 0 3px rgba(245,158,11,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-success { text-align: center; padding: 48px 0; }
.form-success .success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success .success-icon svg { width: 32px; height: 32px; color: #22c55e; }
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--text-muted); }

/* ===== About Page ===== */
.about-hero { padding: 140px 0 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-content h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 24px; }
.about-content h2 span { color: var(--text-muted); }
.about-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.about-image img { width: 100%; height: 320px; object-fit: cover; }
.about-image .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.7), transparent); }
.about-image .img-badge { position: absolute; bottom: 16px; left: 16px; right: 16px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.about-image .img-badge svg { width: 16px; height: 16px; color: var(--accent); }

/* ===== System Page ===== */
.system-section { padding: 140px 0 100px; }
.system-flow { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.flow-item { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; }
@media (max-width: 600px) { .flow-item { grid-template-columns: 1fr; gap: 16px; } }
.flow-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(245,158,11,0.1); border: 2px solid rgba(245,158,11,0.2); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--accent); }
.flow-content { padding: 24px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.flow-content h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.flow-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.flow-arrow { text-align: center; padding: 8px 0; color: var(--accent); opacity: 0.5; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact a svg { color: var(--accent); }
.footer-col h4 { font-family: ui-monospace, monospace; font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-col ul li span { font-size: 14px; color: var(--text-muted); }
.footer-bottom { margin-top: 60px; border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ===== Page Header ===== */
.page-header { padding: 140px 0 60px; text-align: center; }
.page-header h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.page-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate { opacity: 0; }
.animate.visible { animation: fadeUp 0.6s ease forwards; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,158,11,0.15), transparent); margin: 80px 0; }

/* ===== About Page Cards ===== */
.about-right { display: flex; flex-direction: column; gap: 24px; }
.card-glow { padding: 28px; border-radius: var(--radius); border: 1px solid rgba(245,158,11,0.2); background: linear-gradient(135deg, rgba(245,158,11,0.05), transparent); }
.card-glow-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.glow-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(245,158,11,0.2); display: flex; align-items: center; justify-content: center; }
.glow-icon svg { width: 20px; height: 20px; color: var(--accent); }
.glow-title { font-size: 14px; font-weight: 600; color: var(--text); }
.glow-sub { font-size: 11px; color: var(--text-muted); }
.glow-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.card-dark { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-card); }
.card-dark h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; letter-spacing: -0.01em; }
.license-text p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.license-text strong { color: var(--text); }

/* ===== Button Loading States ===== */
.btn-loading { display: flex; align-items: center; justify-content: center; gap: 8px; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #000; border-radius: 50%; animation: spin 0.8s linear infinite; }
.btn-secondary .spinner { border-top-color: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Pricing Toggle ===== */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 32px 0 48px; }
.pricing-toggle span { font-size: 14px; color: var(--text-muted); }
.pricing-toggle span.active { color: var(--text); font-weight: 600; }
.toggle-switch { width: 48px; height: 26px; background: var(--bg-elevated); border-radius: 13px; position: relative; cursor: pointer; border: 1px solid var(--border); transition: all 0.3s; }
.toggle-switch.on { background: rgba(245,158,11,0.2); border-color: var(--accent); }
.toggle-knob { width: 20px; height: 20px; background: var(--text); border-radius: 50%; position: absolute; top: 2px; left: 2px; transition: all 0.3s; }
.toggle-switch.on .toggle-knob { left: 24px; background: var(--accent); }

/* ===== Phone Mockup ===== */
.phone-mockup { position: relative; width: 280px; height: 560px; background: var(--bg-card); border-radius: 32px; border: 2px solid rgba(245,158,11,0.15); padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(245,158,11,0.05); }
.phone-screen { width: 100%; height: 100%; background: var(--bg); border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.phone-header { padding: 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.ph-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.phone-header span { font-size: 11px; font-family: ui-monospace, monospace; color: var(--accent); }
.phone-body { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.phone-scan { flex: 1; display: flex; align-items: center; justify-content: center; border: 2px dashed rgba(245,158,11,0.2); border-radius: var(--radius); position: relative; }
.phone-scan .qr-icon { width: 80px; height: 80px; color: rgba(245,158,11,0.3); }
.phone-scan .scan-line { position: absolute; width: 60%; height: 2px; background: var(--accent); animation: scan 2s ease-in-out infinite; box-shadow: 0 0 8px var(--accent); }
.phone-item { padding: 10px 12px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); font-size: 12px; display: flex; align-items: center; gap: 8px; }
.pi-icon { width: 6px; height: 6px; border-radius: 50%; }
.pi-green { background: #22c55e; }
.pi-amber { background: var(--accent); }
.pi-red { background: #ef4444; }

/* ===== Feature Section Grid Override ===== */
.features-section .features-grid { margin-top: 48px; }
