/* NAVBAR */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(15,23,42,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  transition: padding 0.4s;
}
nav.scrolled .nav-inner { padding: 14px 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none;width: 30%; }
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; font-weight: 800;
  font-family: "Lato", sans-serif;
  box-shadow: var(--shadow-orange);
}
.nav-logo-text { font-family: "Lato", sans-serif; font-size: 18px; font-weight: 800; color: var(--dark); }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--dark); background: rgba(15,23,42,0.04); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), #FF9432);
  color: white; font-size: 13.5px; font-weight: 600;
  padding: 10px 20px; border-radius: 10px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,122,0,0.35);
  transition: all 0.25s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,122,0,0.45); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu a { font-family: "Lato", sans-serif; font-size: 28px; font-weight: 700; color: var(--dark); text-decoration: none; padding: 10px 24px; border-radius: 12px; transition: all 0.2s; }
.mobile-menu a:hover { color: var(--orange); background: var(--orange-pale); }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--muted); }

/* HERO SECTION */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #fff 0%, #F0F4FF 50%, #FFF5EE 100%);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg-orb-1 {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-orb-2 {
  position: absolute; bottom: -150px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 24px; }
.hero-heading {
  font-size: clamp(40px, 5.5vw, 63px);
  font-weight: 800; color: var(--dark); margin-bottom: 24px;
  line-height: 1.05;
}
.hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.75;
  margin-bottom: 40px; max-width: 500px; font-weight: 400;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9432 100%);
  color: white; font-size: 15px; font-weight: 600;
  padding: 15px 28px; border-radius: 14px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,122,0,0.38), 0 2px 8px rgba(255,122,0,0.2);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.btn-primary::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.15),transparent); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,122,0,0.45), 0 4px 12px rgba(255,122,0,0.25); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: white; font-size: 15px; font-weight: 600;
  padding: 15px 28px; border-radius: 14px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(15,23,42,0.22);
  transition: all 0.3s;
}
.btn-secondary:hover { transform: translateY(-2px); background: #1a2540; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dark); font-size: 15px; font-weight: 600;
  padding: 14px 24px; border-radius: 14px; text-decoration: none;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-num { font-family: "Lato", sans-serif; font-size: 28px; font-weight: 800; color: var(--dark); }
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hero-stat-divider { width: 1px; background: var(--border); }

/* HERO RIGHT - PHONE MOCKUPS */
.hero-right { position: relative; height: 620px; }
.phone-mockup {
    position: absolute;
    /* background: var(--dark); */
    /* border-radius: 36px; */
    /* box-shadow: 0 32px 80px rgba(15,23,42,0.35), 0 0 0 1px rgba(255,255,255,0.1); */
    /* overflow: hidden; */
    /* border: 8px solid var(--dark); */
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.phone-main {
  width: 230px; height: 470px;
  top: 40px; left: 50%; transform: translateX(-55%);
  z-index: 3;
}
.phone-side {
  width: 190px; height: 380px;
  top: 120px;
  z-index: 2;
  border-color: #1a2540;
}
.phone-side-l { right: 20px; }
.phone-side-r { left: 20px; }
.phone-screen { width: 100%; height: 100%; background: #0F172A; position: relative; overflow: hidden; }

/* Dashboard screen */
.dash-header { padding: 16px 14px 10px; background: #131C2F; }
.dash-greeting { font-size: 11px; color: #7CB8FF; font-weight: 600; margin-bottom: 3px; }
.dash-name { font-family: "Lato", sans-serif; font-size: 16px; font-weight: 700; color: white; }
.dash-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--blue)); }
.dash-row { display: flex; justify-content: space-between; align-items: center; }
.dash-cards-row { display: flex; gap: 8px; padding: 12px 14px; }
.dash-mini-card {
  flex: 1; padding: 10px; border-radius: 12px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.dash-card-icon { font-size: 16px; margin-bottom: 6px; }
.dash-card-val { font-family: "Lato", sans-serif; font-size: 18px; font-weight: 700; color: white; }
.dash-card-label { font-size: 9px; color: #64748B; margin-top: 2px; }
.dash-section { padding: 0 14px; }
.dash-section-title { font-size: 10px; font-weight: 600; color: #64748B; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.visitor-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; border-radius: 10px; background: rgba(255,255,255,0.04);
  margin-bottom: 6px; border: 1px solid rgba(255,255,255,0.06);
}
.visitor-avatar { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
.visitor-info { flex: 1; }
.visitor-name { font-size: 10px; font-weight: 600; color: white; }
.visitor-time { font-size: 9px; color: var(--muted); }
.visitor-status {
  font-size: 8px; font-weight: 600; padding: 3px 7px; border-radius: 6px;
}
.status-approved { background: rgba(34,197,94,0.15); color: var(--success); }
.status-pending { background: rgba(255,122,0,0.15); color: var(--orange); }
.status-denied { background: rgba(239,68,68,0.15); color: var(--danger); }

/* Floating notification cards */
.notif-card {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.14);
  white-space: nowrap;
  animation: notif-slide 0.6s ease forwards, floatA 4s 0.6s ease-in-out infinite;
}
.notif-1 { top: 20px; right: -20px; animation-delay: 0s; }
.notif-2 { bottom: 120px; left: -30px; animation-delay: 0.3s; }
.notif-3 { top: 200px; right: -40px; animation-delay: 0.6s; }
.notif-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; margin-right: 10px; }
.notif-content { display: flex; align-items: center; }
.notif-text .notif-title { font-size: 12px; font-weight: 700; color: var(--dark); }
.notif-text .notif-sub { font-size: 10px; color: var(--muted); margin-top: 1px; }

/* TRUST/PARTNERS */
.trust-section { background: white; padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-label { text-align: center; font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 32px; letter-spacing: 0.04em; text-transform: uppercase; }
.marquee-wrap { overflow: hidden; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 24px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--border);
  white-space: nowrap; font-weight: 600; font-size: 14px; color: var(--muted);
}
.marquee-item i { color: var(--orange); font-size: 18px; }

/* STATS */
.stats-section { padding: 80px 0; background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card {
  background: white; border-radius: 20px;
  padding: 36px 32px; border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(15,23,42,0.1); }
.stat-icon { font-size: 28px; margin-bottom: 16px;     color: #072da3;}
.stat-number { font-family: "Lato", sans-serif; font-size: 44px; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* SECTION HEADERS */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* FEATURES */
.features-section { padding: 100px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  cursor: default; position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--orange), var(--blue)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  opacity: 0; transition: opacity 0.35s;
}
.feature-card:hover { transform: translateY(-6px); background: white; box-shadow: 0 20px 60px rgba(15,23,42,0.1); }
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.1) rotate(-3deg); }
.icon-orange { background: rgba(255,122,0,0.1); color: var(--orange); }
.icon-blue { background: rgba(37,99,255,0.1); color: var(--blue); }
.icon-green { background: rgba(34,197,94,0.1); color: var(--success); }
.feature-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* DASHBOARD SECTION */
.dashboard-section { padding: 100px 0; background: var(--bg); }
.dashboard-showcase {
  background: white; border-radius: 28px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 32px 80px rgba(15,23,42,0.1);
  margin-top: 60px;
}
.dash-top-bar {
  background: #0F172A; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-dots { display: flex; gap: 8px; }
.dash-dot { width: 12px; height: 12px; border-radius: 50%; }
.dash-dot-r { background: #EF4444; } .dash-dot-y { background: #FBBF24; } .dash-dot-g { background: #22C55E; }
.dash-title-bar { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
.dash-body { display: grid; grid-template-columns: 220px 1fr; min-height: 500px; }
.dash-sidebar {
  background: #0F172A; padding: 24px 0; border-right: 1px solid rgba(255,255,255,0.06);
}
.dash-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  cursor: default; transition: all 0.2s; border-left: 3px solid transparent;
}
.dash-nav-item.active { color: white; background: rgba(255,122,0,0.12); border-left-color: var(--orange); }
.dash-nav-item i { font-size: 14px; width: 18px; text-align: center; }
.dash-main { padding: 28px; background: #F7F9FC; }
.dash-metrics-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.metric-card {
  background: white; border-radius: 14px; padding: 20px;
  border: 1px solid var(--border);
}
.metric-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.metric-value { font-family: "Lato", sans-serif; font-size: 28px; font-weight: 800; color: var(--dark); }
.metric-change { font-size: 11px; margin-top: 4px; }
.metric-up { color: var(--success); } .metric-dn { color: var(--danger); }
.dash-charts-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }
.chart-card { background: white; border-radius: 14px; padding: 20px; border: 1px solid var(--border); }
.chart-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--blue), rgba(37,99,255,0.3)); transition: height 0.5s; }
.bar.orange-bar { background: linear-gradient(180deg, var(--orange), rgba(255,122,0,0.3)); }
.activity-list { }
.activity-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.activity-text { font-size: 12px; color: var(--muted); }
.activity-text strong { color: var(--dark); }
.activity-time { font-size: 11px; color: var(--muted); margin-left: auto; white-space: nowrap; }

/* SECURITY SECTION */
.security-section { padding: 100px 0; background: #0F172A; position: relative; overflow: hidden; }
.security-bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37,99,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.security-section .section-title { color: white; }
.security-section .section-sub { color: rgba(255,255,255,0.6); }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.security-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 28px;
  transition: all 0.3s;
}
.security-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(37,99,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37,99,255,0.2);
}
.security-icon { font-size: 32px; margin-bottom: 16px; color:#F7F9FC}
.security-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px; }
.security-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(15,23,42,0.08); background: white; }
.stars { color: #FBBF24; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--dark); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Lato", sans-serif; font-weight: 800; font-size: 16px; color: white; }
.author-info .author-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.author-info .author-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* PRICING */
.pricing-section { padding: 100px 0; background: var(--bg); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 56px; }
.toggle-label { font-size: 14px; font-weight: 600; color: var(--muted); }
.toggle-switch {
  width: 52px; height: 28px; background: var(--orange);
  border-radius: 100px; position: relative; cursor: pointer;
  border: none; transition: background 0.3s;
}
.toggle-thumb {
  position: absolute; top: 4px; left: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: white; transition: transform 0.3s;
}
.toggle-switch.yearly .toggle-thumb { transform: translateX(24px); }
.save-badge { background: rgba(34,197,94,0.1); color: var(--success); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: 24px; padding: 36px 32px; position: relative;
  transition: all 0.35s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(15,23,42,0.1); }
.pricing-card.featured {
  background: var(--dark); border-color: var(--dark);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), #FF9432);
  color: white; font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap; letter-spacing: 0.04em;
}
.pricing-plan { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 8px; }
.pricing-card.featured .pricing-plan { color: var(--orange-light); }
.pricing-name { font-family: "Lato", sans-serif; font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: white; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }
.pricing-price { margin-bottom: 28px; }
.pricing-amount { font-family: "Lato", sans-serif; font-size: 48px; font-weight: 800; color: var(--dark); }
.pricing-card.featured .pricing-amount { color: white; }
.pricing-period { font-size: 14px; color: var(--muted); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.08); }
.pricing-features li .check { color: var(--success); font-size: 12px; }
.btn-pricing {
  width: 100%; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.3s;
  background: white; color: var(--dark);
  border: 1.5px solid #cbcbcb;
}
.btn-pricing:hover { background: var(--dark); color: white; }
.btn-pricing.featured-btn {
  background: linear-gradient(135deg, var(--orange), #FF9432);
  color: white; box-shadow: 0 8px 32px rgba(255,122,0,0.4);
}
.btn-pricing.featured-btn:hover { box-shadow: 0 16px 48px rgba(255,122,0,0.5); transform: translateY(-2px); }

/* FAQ */
.faq-section { padding: 100px 0; background: white; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 22px 0;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: "Lato", sans-serif; font-size: 17px; font-weight: 700; color: var(--dark);
  gap: 16px;
}
.faq-question .faq-icon { font-size: 20px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer { display: none; padding: 0 0 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* DOWNLOAD SECTION */
.download-section {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1a2540 100%);
}
.download-glow-1 { position:absolute; top:-100px; right:-100px; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(255,122,0,0.2) 0%,transparent 70%); }
.download-glow-2 { position:absolute; bottom:-100px; left:-100px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(37,99,255,0.2) 0%,transparent 70%); }
.download-content { position:relative; z-index:2; text-align:center; }
.download-title { font-size:clamp(36px,5vw,60px); font-weight:800; color:white; margin-bottom:20px; }
.download-sub { font-size:18px; color:rgba(255,255,255,0.6); max-width:560px; margin:0 auto 48px; line-height:1.7; }
.store-btns { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:32px; }
.store-btn {
  display:inline-flex; align-items:center; gap:12px;
  background:rgba(255,255,255,0.08); backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.15); border-radius:16px;
  padding:14px 24px; color:white; text-decoration:none;
  transition:all 0.3s; cursor:pointer;
}
.store-btn:hover { background:rgba(255,255,255,0.14); border-color:rgba(255,255,255,0.3); transform:translateY(-3px); }
.store-btn i { font-size:24px; }
.store-btn-text { text-align:left; }
.store-btn-text small { display:block; font-size:10px; opacity:0.7; text-transform:uppercase; letter-spacing:0.08em; }
.store-btn-text strong { font-size:16px; font-weight:700; font-family:'Syne',sans-serif; }
.download-note { font-size:13px; color:rgba(255,255,255,0.4); }

/* FINAL CTA */
.final-cta {
  padding:80px 0; background: var(--bg);
}
.cta-card {
  background: linear-gradient(135deg, var(--orange) 0%, #FF5E00 40%, var(--blue) 100%);
  border-radius: 28px; padding: 72px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content:''; position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat;
}
.cta-title { font-size:clamp(32px,4vw,52px); font-weight:800; color:white; margin-bottom:16px; position:relative; }
.cta-sub { font-size:18px; color:rgba(255,255,255,0.8); max-width:520px; margin:0 auto 40px; line-height:1.7; position:relative; }
.cta-btns { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; position:relative; }
.btn-cta-white {
  background:white; color:var(--orange); font-size:15px; font-weight:700;
  padding:15px 32px; border-radius:14px; text-decoration:none; border:none; cursor:pointer;
  box-shadow:0 8px 32px rgba(0,0,0,0.2); transition:all 0.3s;
}
.btn-cta-white:hover { transform:translateY(-3px); box-shadow:0 16px 48px rgba(0,0,0,0.25); }
.btn-cta-outline {
  background:transparent; color:white; font-size:15px; font-weight:700;
  padding:14px 28px; border-radius:14px; text-decoration:none;
  border:2px solid rgba(255,255,255,0.5); cursor:pointer; transition:all 0.3s;
}
.btn-cta-outline:hover { background:rgba(255,255,255,0.1); border-color:white; }

/* FOOTER */
footer {
  background: #0F172A; padding: 72px 0 32px; color: rgba(255,255,255,0.7);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; text-decoration:none; }
.footer-logo-text { font-family:'Syne',sans-serif; font-size:18px; font-weight:800; color:white; }
.footer-logo-text span { color:var(--orange); }
.footer-tagline { font-size:14px; line-height:1.7; color:rgba(255,255,255,0.5); margin-bottom:24px; }
.social-links { display:flex; gap:10px; }
.social-link { width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.7); font-size:15px; text-decoration:none; transition:all 0.2s; }
.social-link:hover { background:rgba(255,122,0,0.2); border-color:rgba(255,122,0,0.4); color:var(--orange-light); }
.footer-col-title { font-family:'Syne',sans-serif; font-size:14px; font-weight:700; color:white; margin-bottom:20px; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { font-size:14px; color:rgba(255,255,255,0.5); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--orange-light); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:13px; color:rgba(255,255,255,0.35); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; transition:color 0.2s; }
.footer-legal a:hover { color:rgba(255,255,255,0.7); }

/* SECTION SPACING */
section { scroll-margin-top: 80px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-metrics-row { grid-template-columns: repeat(2,1fr); }
  .dash-charts-row { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .nav-logo img {
    width: 100%;
    height: 100%;
    max-width: 85%;
}
}

@media(max-width: 524px) {
  .btn-primary, .btn-secondary, .btn-outline{
    width: 100%;
    justify-content: center;
  }
  .container-wide {
    padding: 0 22px;
}
.dash-top-bar {
    padding: 14px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    
}
.dash-main {
    padding: 18px;
    background: #F7F9FC;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 70%;
}

}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }













.policy-hero{
      position:relative;
      padding:140px 0 100px;
      overflow:hidden;
      background:
      radial-gradient(circle at top left, rgba(255,122,0,0.12), transparent 30%),
      radial-gradient(circle at bottom right, rgba(37,99,255,0.12), transparent 30%),
      #fff;
    }

    .policy-hero::before{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:linear-gradient(135deg,var(--orange-light),var(--blue-light));
      opacity:0.12;
      filter:blur(120px);
      top:-200px;
      right:-100px;
      border-radius:50%;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 18px;
      border-radius:100px;
      background:var(--orange-pale);
      color:var(--orange);
      font-size:13px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      border:1px solid rgba(255,122,0,0.15);
      margin-bottom:24px;
    }

    .hero-title{
      font-size:72px;
      line-height:1.05;
      max-width:800px;
      margin-bottom:24px;
    }

    .gradient-text{
      background:linear-gradient(135deg,var(--orange),var(--blue));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .hero-desc{
      max-width:760px;
      font-size:19px;
      color:var(--muted);
    }

    .policy-wrapper{
      padding:80px 0 120px;
    }

    .policy-card{
      background:var(--glass);
      backdrop-filter:blur(18px);
      border:1px solid rgba(255,255,255,0.7);
      box-shadow:var(--shadow-card);
      border-radius:32px;
      padding:60px;
    }

    .policy-section{
      margin-bottom:55px;
    }

    .policy-section:last-child{
      margin-bottom:0;
    }

    .policy-section h2{
      font-size:32px;
      margin-bottom:18px;
      position:relative;
      padding-left:20px;
    }

    .policy-section h2::before{
      content:'';
      position:absolute;
      left:0;
      top:8px;
      width:6px;
      height:32px;
      border-radius:20px;
      background:linear-gradient(var(--orange),var(--blue));
    }

    .policy-section p{
      color:var(--muted);
      margin-bottom:18px;
      font-size:16px;
    }

    .policy-section ul{
      padding-left:20px;
    }

    .policy-section li{
      margin-bottom:14px;
      color:var(--muted);
    }

    .highlight-box{
      margin-top:25px;
      background:linear-gradient(135deg,#fff7ef,#eef4ff);
      border:1px solid rgba(37,99,255,0.08);
      padding:24px;
      border-radius:24px;
    }

    .highlight-box strong{
      color:var(--dark);
    }

    .footer-note{
      margin-top:50px;
      padding-top:30px;
      border-top:1px solid var(--border);
      color:var(--muted);
      font-size:15px;
    }

    @media(max-width:768px){

      .policy-hero{
        padding:100px 0 70px;
      }

      .hero-title{
        font-size:44px;
      }

      .hero-desc{
        font-size:16px;
      }

      .policy-card{
        padding:30px 22px;
        border-radius:24px;
      }

      .policy-section h2{
        font-size:25px;
      }


    }
.footer-logo img {
    width: 60%;
}

section.wrapper {
    margin-bottom: 50px;
}


    .hero-policy{
      position:relative;
      padding:140px 0 100px;
      overflow:hidden;
      background:
      radial-gradient(circle at top left, rgba(255,122,0,0.14), transparent 30%),
      radial-gradient(circle at bottom right, rgba(37,99,255,0.12), transparent 30%),
      linear-gradient(180deg,#ffffff 0%,#f7f9fc 100%);
    }

    .hero::before{
      content:'';
      position:absolute;
      width:520px;
      height:520px;
      background:linear-gradient(135deg,var(--orange-light),var(--blue-light));
      filter:blur(120px);
      opacity:0.10;
      top:-200px;
      right:-120px;
      border-radius:50%;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 18px;
      border-radius:100px;
      background:var(--blue-pale);
      color:var(--blue);
      border:1px solid rgba(37,99,255,0.15);
      font-size:13px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:24px;
    }

    .hero-title{
      font-size:72px;
      line-height:1.05;
      max-width:850px;
      margin-bottom:24px;
    }

    .gradient-text{
      background:linear-gradient(135deg,var(--orange),var(--blue));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .hero-desc{
      max-width:760px;
      font-size:19px;
      color:var(--muted);
    }

    .terms-wrapper{
      padding:80px 0 120px;
    }

    .terms-card{
      background:var(--glass);
      backdrop-filter:blur(20px);
      border:1px solid rgba(255,255,255,0.75);
      border-radius:32px;
      padding:60px;
      box-shadow:var(--shadow-card);
      position:relative;
      overflow:hidden;
    }

    .terms-card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:4px;
      background:linear-gradient(90deg,var(--orange),var(--blue));
    }

    .section{
      margin-bottom:55px;
    }

    .section:last-child{
      margin-bottom:0;
    }

    .section h2{
      font-size:32px;
      margin-bottom:18px;
      padding-left:20px;
      position:relative;
    }

    .section h2::before{
      content:'';
      position:absolute;
      left:0;
      top:8px;
      width:6px;
      height:32px;
      border-radius:20px;
      background:linear-gradient(var(--orange),var(--blue));
    }

    .section p{
      color:var(--muted);
      margin-bottom:18px;
      font-size:16px;
    }

    .section ul{
      padding-left:22px;
    }

    .section li{
      margin-bottom:14px;
      color:var(--muted);
    }

    .info-box{
      margin-top:24px;
      background:linear-gradient(135deg,#fff7ef,#eef4ff);
      border:1px solid rgba(255,122,0,0.08);
      padding:24px;
      border-radius:24px;
    }

    .info-box strong{
      color:var(--dark);
    }

    .footer-note{
      margin-top:50px;
      padding-top:30px;
      border-top:1px solid var(--border);
      color:var(--muted);
      font-size:15px;
    }

    @media(max-width:768px){

      .hero{
        padding:100px 0 70px;
      }

      .hero-title{
        font-size:44px;
      }

      .hero-desc{
        font-size:16px;
      }

      .terms-card{
        padding:32px 22px;
        border-radius:24px;
      }

      .section h2{
        font-size:25px;
      }

    }









 .contact-hero{
      position:relative;
      padding:140px 0 90px;
      overflow:hidden;
      background:
      radial-gradient(circle at top left, rgba(255,122,0,0.14), transparent 28%),
      radial-gradient(circle at bottom right, rgba(37,99,255,0.12), transparent 30%),
      linear-gradient(180deg,#ffffff 0%,#f7f9fc 100%);
    }

    .contact-hero::before{
      content:'';
      position:absolute;
      width:520px;
      height:520px;
      background:linear-gradient(135deg,var(--orange-light),var(--blue-light));
      filter:blur(120px);
      opacity:0.12;
      top:-200px;
      right:-120px;
      border-radius:50%;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      background:var(--orange-pale);
      color:var(--orange);
      padding:8px 18px;
      border-radius:100px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      border:1px solid rgba(255,122,0,0.15);
      margin-bottom:24px;
    }

    .hero-title{
      font-size:76px;
      max-width:820px;
      margin-bottom:24px;
    }

    .gradient-text{
      background:linear-gradient(135deg,var(--orange),var(--blue));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .hero-desc{
      max-width:760px;
      font-size:19px;
      color:var(--muted);
      line-height:1.8;
    }

    .contact-section{
      padding:80px 0 120px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:40px;
      align-items:start;
    }

    .contact-info,
    .contact-form{
      background:var(--glass);
      backdrop-filter:blur(20px);
      border:1px solid rgba(255,255,255,0.7);
      border-radius:32px;
      padding:42px;
      box-shadow:var(--shadow-card);
      position:relative;
      overflow:hidden;
    }

    .contact-info::before,
    .contact-form::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:4px;
      background:linear-gradient(90deg,var(--orange),var(--blue));
    }

    .section-title{
      font-size:34px;
      margin-bottom:18px;
    }

    .section-desc{
      color:var(--muted);
      line-height:1.8;
      margin-bottom:34px;
    }

    .info-card{
      display:flex;
      gap:18px;
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(15,23,42,0.05);
      margin-bottom:18px;
      transition:0.3s ease;
    }

    .info-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-card);
    }

    .icon-box{
      min-width:58px;
      height:58px;
      border-radius:18px;
      background:linear-gradient(135deg,var(--orange),var(--blue));
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:24px;
      font-weight:700;
    }

    .info-card h4{
      font-size:20px;
      margin-bottom:6px;
    }

    .info-card p{
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }

    .contact-form form{
      display:flex;
      flex-direction:column;
      gap:20px;
    }

    .input-group{
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .input-group label{
      font-size:14px;
      font-weight:700;
      color:var(--dark);
    }

    .input-group input,
    .input-group textarea{
      width:100%;
      border:none;
      outline:none;
      background:#fff;
      border:1px solid var(--border);
      border-radius:18px;
      padding:16px 18px;
      font-family:'Plus Jakarta Sans',sans-serif;
      font-size:15px;
      transition:0.3s ease;
    }

    .input-group input:focus,
    .input-group textarea:focus{
      border-color:var(--orange);
      box-shadow:0 0 0 4px rgba(255,122,0,0.08);
    }

    .input-group textarea{
      min-height:160px;
      resize:none;
    }

    .submit-btn{
      height:58px;
      border:none;
      border-radius:18px;
      background:linear-gradient(135deg,var(--orange),var(--blue));
      color:#fff;
      font-size:16px;
      font-weight:700;
      cursor:pointer;
      transition:0.3s ease;
      box-shadow:var(--shadow-orange);
    }

    .submit-btn:hover{
      transform:translateY(-3px);
    }

    .support-box{
      margin-top:28px;
      padding:24px;
      border-radius:24px;
      background:linear-gradient(135deg,#fff7ef,#eef4ff);
      border:1px solid rgba(37,99,255,0.08);
    }

    .support-box h4{
      font-size:22px;
      margin-bottom:10px;
    }

    .support-box p{
      color:var(--muted);
      line-height:1.8;
    }

    @media(max-width:991px){

      .contact-grid{
        grid-template-columns:1fr;
      }

    }

    @media(max-width:768px){

      .contact-hero{
        padding:100px 0 70px;
      }

      .hero-title{
        font-size:46px;
      }

      .hero-desc{
        font-size:16px;
      }

      .contact-info,
      .contact-form{
        padding:28px 22px;
        border-radius:24px;
      }

      .section-title{
        font-size:28px;
      }

      .info-card{
        flex-direction:column;
      }

    }






         .api-section{
      padding:80px 0 120px;
    }

    .api-card{
      background:var(--glass);
      backdrop-filter:blur(20px);
      border-radius:32px;
      padding:50px;
      border:1px solid rgba(255,255,255,0.75);
      box-shadow:var(--shadow-card);
    }

    .api-block{
      margin-bottom:40px;
    }

    .api-title{
      font-size:30px;
      margin-bottom:16px;
    }

    .api-desc{
      color:var(--muted);
      line-height:1.8;
      margin-bottom:22px;
    }

    .endpoint{
      background:#0F172A;
      color:#fff;
      padding:18px 22px;
      border-radius:18px;
      overflow:auto;
      font-size:15px;
      margin-bottom:18px;
    }

    .method{
      color:#22C55E;
      font-weight:700;
      margin-right:10px;
    }

    .code-block{
      background:#111827;
      color:#d1d5db;
      padding:24px;
      border-radius:20px;
      overflow:auto;
      line-height:1.8;
      font-size:14px;
    }

    .tag{
      display:inline-flex;
      padding:8px 14px;
      border-radius:100px;
      background:var(--orange-pale);
      color:var(--orange);
      font-size:12px;
      font-weight:700;
      margin-bottom:18px;
    }

    @media(max-width:768px){

      

      .hero-desc{
        font-size:16px;
      }

      .api-card{
        padding:26px 20px;
        border-radius:24px;
      }

      .api-title{
        font-size:24px;
      }

    }