/* =========================================================
   SAJDA — Sistem Informasi Masjid dan Waktu Sholat
   Landing Page Stylesheet
   Style: Modern Premium SaaS — Clean, Spacious, Professional
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS (CSS Variables)
   ========================================================= */
:root {
  /* Brand Colors */
  --color-primary-dark: #064E3B;
  --color-emerald: #047857;
  --color-emerald-light: #059669;
  --color-soft-emerald: #ECFDF5;
  --color-soft-emerald-2: #DFF7EC;

  /* Accents */
  --color-gold: #FBBF24;
  --color-gold-2: #FACC15;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-cream: #F8FAF9;
  --bg-mist: #F7FAF8;
  --bg-placeholder: #EEF2F0;

  /* Text */
  --text-primary: #10231D;
  --text-secondary: #647067;
  --text-muted: #8A9A91;
  --text-on-dark: #E6F4EE;

  /* Borders */
  --border-soft: #DCE7E1;
  --border-softer: #E8EFEC;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --radius-pill: 999px;

  /* Shadows — soft & layered */
  --shadow-xs: 0 1px 2px rgba(6, 78, 59, 0.04);
  --shadow-sm: 0 4px 12px rgba(6, 78, 59, 0.05);
  --shadow-md: 0 12px 28px -8px rgba(6, 78, 59, 0.08), 0 4px 10px rgba(6, 78, 59, 0.04);
  --shadow-lg: 0 24px 56px -16px rgba(6, 78, 59, 0.14), 0 8px 16px rgba(6, 78, 59, 0.04);
  --shadow-xl: 0 40px 80px -24px rgba(6, 78, 59, 0.22), 0 12px 24px rgba(6, 78, 59, 0.06);
  --shadow-gold-glow: 0 0 40px rgba(251, 191, 36, 0.18);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1240px;
  --container-padding: 24px;
  --section-padding: 120px;
  --section-padding-sm: 80px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* =========================================================
   2. RESET & BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

ul,
ol {
  list-style: none;
}


/* =========================================================
   3. TYPOGRAPHY
   ========================================================= */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-emerald);
}

.h-display {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
}

.muted {
  color: var(--text-secondary);
}

.text-emerald {
  color: var(--color-emerald);
}


/* =========================================================
   4. LAYOUT UTILITIES
   ========================================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: var(--section-padding-sm) 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.section-header p {
  margin-top: 16px;
}


/* =========================================================
   5. BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-base),
              background var(--transition-base),
              color var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-emerald);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
  border-color: var(--color-emerald);
  color: var(--color-emerald);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--text-primary);
  padding: 10px 18px;
}

.btn-ghost:hover {
  color: var(--color-emerald);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.btn-gold:hover {
  background: var(--color-gold-2);
  box-shadow: 0 12px 28px rgba(251, 191, 36, 0.4);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}


/* =========================================================
   6. BADGE / CHIP
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--color-soft-emerald);
  color: var(--color-emerald);
  border: 1px solid var(--color-soft-emerald-2);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-emerald-light);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.badge-gold {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
  border-color: #FCD34D;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
}

.trust-chip svg {
  width: 14px;
  height: 14px;
  color: var(--color-emerald);
}


/* =========================================================
   7. IMAGE PLACEHOLDER
   ========================================================= */
.image-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-placeholder);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background:
    linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
    #EEF2F0;
  border: 1px solid var(--border-soft);
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: "Image Preview";
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
}

.img-placeholder::after {
  content: "img src";
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

/* Aspect ratio helpers */
.ratio-16-9  { aspect-ratio: 16 / 9; }
.ratio-9-18  { aspect-ratio: 9 / 18; }
.ratio-16-10 { aspect-ratio: 16 / 10; }
.ratio-4-3   { aspect-ratio: 4 / 3; }
.ratio-1-1   { aspect-ratio: 1 / 1; }


/* =========================================================
   8. ANNOUNCEMENT BAR
   ========================================================= */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-emerald) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  text-align: center;
  letter-spacing: 0.01em;
}

.announcement-bar .ann-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}


/* =========================================================
   9. NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-softer);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-menu a:hover {
  color: var(--text-primary);
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}


/* =========================================================
   10. HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(236, 253, 245, 0.6) 0%, transparent 60%),
    var(--bg-white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(6, 78, 59, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 580px;
}

.hero-content .badge {
  margin-bottom: 24px;
}

.hero-headline {
  margin-bottom: 20px;
}

.hero-subheadline {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-tv {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  border-radius: var(--radius-2xl);
  padding: 14px;
  background: linear-gradient(180deg, #F2F6F4 0%, #E8EFEC 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xl);
  transform: rotate(-1.2deg);
}

.hero-tv .image-frame {
  border-radius: 18px;
}

.hero-mobile {
  position: absolute;
  bottom: -30px;
  left: -10px;
  width: 170px;
  border-radius: 26px;
  padding: 10px;
  background: #0B1A14;
  border: 1px solid #1F3128;
  box-shadow: var(--shadow-xl);
  transform: rotate(-6deg);
  z-index: 2;
}

.hero-mobile .image-frame {
  border-radius: 18px;
}

/* Hero floating cards */
.float-card {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-soft-emerald);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card .fc-icon svg {
  width: 18px;
  height: 18px;
}

.float-card .fc-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.float-card .fc-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.fc-top {
  top: 30px;
  left: -20px;
  animation: floatY 6s ease-in-out infinite;
}

.fc-mid {
  top: 45%;
  right: -10px;
  animation: floatY 7s ease-in-out infinite 1s;
}

.fc-bot {
  bottom: 30px;
  right: 30%;
  animation: floatY 6.5s ease-in-out infinite 0.5s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}


/* =========================================================
   11. TRUST STRIP — 4K TV LIVE SHOWCASE
   ========================================================= */
.trust-strip {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(236, 253, 245, 0.5) 0%, transparent 70%),
    var(--bg-cream);
  border-top: 1px solid var(--border-softer);
  border-bottom: 1px solid var(--border-softer);
  overflow: hidden;
}

.tv-showcase-wrap {
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
}

.tv-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-emerald);
  background: var(--color-soft-emerald);
  border: 1px solid var(--color-soft-emerald-2);
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.tv-showcase-headline {
  margin-bottom: 14px;
}

.tv-showcase-sub {
  margin-bottom: 56px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 4K TV Mockup ---------- */
.tv-mockup-4k {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.tv-mockup-bezel {
  position: relative;
  background:
    linear-gradient(180deg, #1f2624 0%, #0a0f0d 100%);
  border-radius: 22px;
  padding: 16px;
  box-shadow:
    0 60px 100px -30px rgba(6, 78, 59, 0.35),
    0 30px 60px -20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Subtle sensor strip at bottom center of bezel */
.tv-mockup-bezel::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 2px;
}

/* Screen */
.tv-mockup-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #0a0e0c;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Screen reflection overlay */
.tv-screen-reflection {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.03) 100%);
  z-index: 3;
}

/* LIVE Badge */
.tv-live-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  z-index: 4;
}

.tv-live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

/* Resolution chip (top-right) */
.tv-res-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  z-index: 4;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

/* Slides */
.tv-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.tv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.tv-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* When real <img> is dropped in, it overlays the placeholder.
   Placeholder behind it stays as fallback if image fails to load. */
.tv-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Custom placeholder inside TV (overrides global .img-placeholder text) */
.tv-img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  border: none !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
    #EEF2F0 !important;
}

.tv-img-placeholder::before,
.tv-img-placeholder::after {
  display: none !important;
}

.tv-slide-mode {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-emerald);
}

.tv-slide-name {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.tv-slide-desc {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* TV Stand */
.tv-stand-arm {
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #1f2624 0%, #0a0f0d 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tv-stand-base {
  width: 220px;
  height: 10px;
  background: linear-gradient(180deg, #1f2624 0%, #0a0f0d 100%);
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

/* Glow behind TV */
.tv-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70%;
  background:
    radial-gradient(ellipse at center, rgba(5, 150, 105, 0.22) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* Dot Indicators */
.tv-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.tv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  padding: 0;
}

.tv-dot:hover {
  background: var(--text-muted);
}

.tv-dot.is-active {
  width: 32px;
  border-radius: 4px;
  background: var(--color-primary-dark);
}

/* Trust mini label */
.trust-mini-label {
  margin-top: 64px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Metrics inline */
.trust-metrics-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 24px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 500;
}


/* =========================================================
   12. COMPARISON SECTION
   ========================================================= */
.comparison {
  background: var(--bg-white);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-2xl);
  padding: 32px;
  position: relative;
}

.compare-card.manual {
  background: var(--bg-cream);
}

.compare-card.sajda {
  background: linear-gradient(180deg, var(--color-soft-emerald) 0%, var(--bg-white) 60%);
  border-color: var(--color-soft-emerald-2);
  box-shadow: var(--shadow-md);
}

.compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.compare-card.manual .compare-tag {
  background: #FEF3C7;
  color: #92400E;
}

.compare-card.sajda .compare-tag {
  background: var(--color-primary-dark);
  color: var(--color-gold);
}

.compare-card h3 {
  margin-bottom: 8px;
}

.compare-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.compare-image {
  margin-bottom: 24px;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.compare-list .check,
.compare-list .cross {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.compare-list .check {
  background: var(--color-emerald);
  color: #fff;
}

.compare-list .cross {
  background: #FECACA;
  color: #B91C1C;
}

.compare-list svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}


/* =========================================================
   13. TV SHOWCASE CAROUSEL
   ========================================================= */
.showcase {
  background: var(--bg-mist);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.carousel {
  position: relative;
}

.carousel-track {
  position: relative;
  overflow: hidden;
  padding: 12px 4px;
}

.carousel-slides {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-slow);
  will-change: transform;
}

.tv-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-2xl);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tv-card .image-frame {
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
}

.tv-card .tv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-emerald);
  margin-bottom: 6px;
}

.tv-card h3 {
  font-size: 17px;
  margin-bottom: 4px;
}

.tv-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-primary-dark);
}


/* =========================================================
   14. DASHBOARD SHOWCASE
   ========================================================= */
.dashboard-showcase {
  background: var(--bg-white);
}

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

.dash-content .eyebrow {
  margin-bottom: 16px;
  display: inline-block;
}

.dash-content h2 {
  margin-bottom: 20px;
}

.dash-content p {
  margin-bottom: 28px;
}

.dash-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 32px;
}

.dash-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.dash-feature .df-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-soft-emerald);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dash-feature svg {
  width: 11px;
  height: 11px;
  stroke-width: 3;
}

.dash-visual {
  position: relative;
}

.dash-desktop {
  width: 100%;
  border-radius: var(--radius-2xl);
  padding: 14px;
  background: linear-gradient(180deg, #F2F6F4 0%, #E8EFEC 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xl);
}

.dash-desktop .image-frame {
  border-radius: 16px;
}

.dash-mobile {
  position: absolute;
  bottom: -40px;
  right: -170px;
  width: 180px;
  border-radius: 28px;
  padding: 10px;
  background: #0B1A14;
  border: 1px solid #1F3128;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.dash-mobile .image-frame {
  border-radius: 20px;
}


/* =========================================================
   15. PRICING SECTION
   ========================================================= */
.pricing {
  background: var(--bg-cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, #043A2C 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price-card.featured .price-name,
.price-card.featured .price-amount,
.price-card.featured .price-list li {
  color: #fff;
}

.price-card.featured .price-desc,
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.price-card.featured .price-list .pl-icon {
  background: rgba(251, 191, 36, 0.15);
  color: var(--color-gold);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-2));
  color: var(--color-primary-dark);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.price-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.price-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 36px;
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.price-card.featured .price-amount-wrap {
  border-color: rgba(255, 255, 255, 0.12);
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 13px;
  color: var(--text-secondary);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-primary);
  line-height: 1.5;
}

.pl-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-soft-emerald);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pl-icon svg {
  width: 10px;
  height: 10px;
  stroke-width: 3;
}

.price-cta {
  width: 100%;
}

.price-card.featured .btn-secondary {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
}

.price-card.featured .btn-secondary:hover {
  background: var(--color-gold-2);
  color: var(--color-primary-dark);
  border-color: var(--color-gold-2);
}


/* =========================================================
   16. FAQ SECTION
   ========================================================= */
.faq {
  background: var(--bg-white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.open {
  background: var(--bg-white);
  border-color: var(--color-soft-emerald-2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.faq-item.open .faq-icon svg {
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}


/* =========================================================
   17. FINAL CTA
   ========================================================= */
.final-cta {
  padding: 100px 0;
  background: var(--bg-white);
}

.cta-card {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(251, 191, 36, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(5, 150, 105, 0.25) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-primary-dark) 0%, #032A20 100%);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}

.cta-card::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner .badge {
  background: rgba(251, 191, 36, 0.15);
  color: var(--color-gold);
  border-color: rgba(251, 191, 36, 0.3);
  margin-bottom: 20px;
}

.cta-inner .badge-dot {
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
}

.cta-inner h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}


/* =========================================================
   18. FOOTER
   ========================================================= */
.footer {
  background: #051F18;
  color: var(--text-on-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(230, 244, 238, 0.6);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(230, 244, 238, 0.5);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(230, 244, 238, 0.75);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 244, 238, 0.08);
  font-size: 13px;
  color: rgba(230, 244, 238, 0.45);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(230, 244, 238, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
}

.footer-social svg {
  width: 14px;
  height: 14px;
}


/* =========================================================
   19. ANIMATIONS — Scroll Reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }


/* =========================================================
   20. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  :root {
    --section-padding: 88px;
    --section-padding-sm: 64px;
  }

  .hero-grid {
    gap: 40px;
  }

  .tv-mockup-bezel {
    padding: 12px;
  }

  .tv-live-badge,
  .tv-res-chip {
    padding: 6px 10px;
    font-size: 10px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    row-gap: 40px;
  }

  .dash-grid {
    gap: 48px;
  }

  .tv-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --section-padding-sm: 48px;
    --container-padding: 20px;
  }

  .nav-menu,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-primary {
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero {
    padding: 56px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-tv {
    transform: rotate(0);
  }

  .hero-mobile {
    width: 130px;
    bottom: -20px;
  }

  .float-card {
    padding: 10px 14px;
  }

  .float-card .fc-icon {
    width: 30px;
    height: 30px;
  }

  .float-card .fc-value {
    font-size: 14px;
  }

  .trust-strip {
    padding: 72px 0;
  }

  .tv-showcase-sub {
    margin-bottom: 40px;
  }

  .tv-mockup-bezel {
    padding: 8px;
    border-radius: 16px;
  }

  .tv-live-badge,
  .tv-res-chip {
    top: 10px;
    padding: 5px 9px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .tv-live-badge {
    left: 10px;
  }

  .tv-res-chip {
    right: 10px;
  }

  .tv-slide-name {
    font-size: 18px;
  }

  .tv-slide-desc {
    font-size: 11px;
  }

  .tv-stand-base {
    width: 140px;
    height: 8px;
  }

  .trust-metrics-inline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    padding: 24px;
  }

  .dash-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dash-mobile {
    width: 130px;
    right: -10px;
    bottom: -20px;
  }

  .dash-features {
    grid-template-columns: 1fr;
  }

  .tv-card {
    flex: 0 0 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 56px 28px;
    border-radius: 24px;
  }

  .footer {
    padding: 48px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .h-display {
    font-size: 32px;
  }

  .h1 {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}


/* =========================================================
   21. UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}