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

:root {
  --navy: #0a1628;
  --navy-mid: #132039;
  --navy-light: #1a2d4d;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --blue: #3b82f6;
  --blue-deep: #1e40af;
  --teal: #0ea5e9;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f1f3f8;
  --gray-100: #e2e6ef;
  --gray-200: #c8ceda;
  --gray-400: #8892a4;
  --gray-600: #4a5568;
  --gray-800: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-soft: 0 4px 24px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.2);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
section[id] { scroll-margin-top: 90px; }
img { max-width: 100%; height: auto; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}
@keyframes company-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes counter-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== GRAIN OVERLAY ==================== */
.grain-overlay::before {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
  z-index: 1;
}

/* ==================== NAVBAR ==================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo img {
  height: 70px;
  border-radius: 6px;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.6);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.5) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    var(--navy) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.hero-badge .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse-ring 1.5s ease infinite;
}
.hero-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
  letter-spacing: -0.02em;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.3s both;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary-hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-family: "DM Serif Display", serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* Decorative elements */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  background: var(--gold);
  top: -200px;
  right: -100px;
}
.hero-glow-2 {
  background: var(--blue);
  bottom: -200px;
  left: -100px;
}

/* ==================== HERO PROMPT CARD ==================== */
.hero-prompt-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s ease 0.45s both;
}
.prompt-input-area {
  padding: 1.4rem 1.6rem 0.6rem;
}
.prompt-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.05rem;
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
  resize: none;
  min-height: 40px;
}
.prompt-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.prompt-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem 1rem 1.2rem;
  gap: 0.6rem;
}
.prompt-chips {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  flex: 1;
}
.prompt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: #f1f3f8;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.prompt-chip:hover {
  background: var(--gold-muted);
  color: var(--navy);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-1px);
}
.prompt-chip-add {
  width: 34px;
  height: 34px;
  padding: 0;
  justify-content: center;
  background: #e8eaef;
  color: var(--gray-600);
  border-radius: 50%;
  font-size: 0.95rem;
}
.prompt-chip-add:hover {
  background: var(--gold);
  color: var(--navy);
}
.prompt-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8eaef;
  color: var(--gray-400);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.prompt-send:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile chip dropdown */
.prompt-chips-mobile {
  display: none;
  position: relative;
  flex: 1;
}
.prompt-chip-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: #e8eaef;
  color: var(--gray-600);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all var(--transition);
}
.prompt-chip-dropdown:hover {
  background: var(--gold-muted);
  color: var(--navy);
}
.prompt-chip-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 0.5rem;
  min-width: 200px;
  z-index: 10;
  flex-direction: column;
}
.prompt-chip-menu.open {
  display: flex;
}
.prompt-chip-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}
.prompt-chip-menu a:hover {
  background: var(--gold-muted);
  color: var(--navy);
}

@media (max-width: 768px) {
  .prompt-chips { display: none; }
  .prompt-chips-mobile { display: block; }
  .hero-prompt-card { margin: 0 0.5rem; border-radius: 20px; }
  .prompt-input-area { padding: 1.2rem 1.2rem 0.4rem; }
  .prompt-input { font-size: 0.95rem; }
}

/* ==================== MARQUEE (TRUSTED BY) ==================== */
.trust-section {
  padding: 4rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 2rem;
}
.company-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.company-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: company-scroll 40s linear infinite;
}
.company-marquee:hover .company-track {
  animation-play-state: paused;
}
.company-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.company-chip img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter var(--transition);
}
.company-chip:hover img {
  filter: grayscale(0) opacity(1);
}

/* ==================== ABOUT ==================== */
.about-section {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.about-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: var(--text-primary);
}
.about-title .highlight {
  color: var(--blue-deep);
}
.about-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.about-features li .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-features li .check-icon i {
  font-size: 0.6rem;
  color: var(--navy);
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-deep);
  transition: gap var(--transition);
}
.about-link:hover { gap: 0.9rem; }

.about-visual {
  position: relative;
}
.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-stat-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-stat-overlay .stat-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.about-stat-overlay .stat-val {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.about-accent-border {
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 2px solid var(--gold-muted);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ==================== MODULES ==================== */
.modules-section {
  padding: 7rem 0;
  background: var(--off-white);
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}
.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text-primary);
}
.section-title .accent { color: var(--blue-deep); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.module-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.module-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.module-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.module-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.3));
}
.module-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.module-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-muted);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.module-card-icon i {
  font-size: 1.1rem;
  color: var(--gold);
}
.module-card-tag {
  display: inline-flex;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--gold-muted);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  width: fit-content;
}
.module-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.module-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.module-card-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-100);
}
.module-card-footer a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.module-card-footer a:hover { gap: 0.8rem; }

/* ==================== WHY EXIMIUM ==================== */
.why-section {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.why-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}
.why-card h4 {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 0.6rem;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0 0 0.8rem;
}
.why-card a {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.why-card a:hover { gap: 0.7rem; }

.why-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-phone-wrap {
  position: relative;
}
.why-phone-wrap img {
  max-height: 500px;
  width: auto;
  border-radius: 28px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.4));
  animation: float 6s ease-in-out infinite;
}
.why-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ==================== ANALYTICS DASHBOARD ==================== */
.analytics-section {
  padding: 7rem 0;
  background: var(--white);
}
.analytics-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.dashboard-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.dashboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.dashboard-dots {
  display: flex;
  gap: 6px;
}
.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #f59e0b; }
.dashboard-dots span:nth-child(3) { background: #22c55e; }
.dashboard-url {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.dashboard-body {
  padding: 2rem;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.dashboard-header h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
}
.dashboard-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}
.dashboard-btns {
  display: flex;
  gap: 0.5rem;
}
.dash-btn {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dash-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.dash-btn.primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--gold-muted);
  box-shadow: var(--shadow-soft);
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}
.stat-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.stat-value {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  color: var(--text-primary);
}
.stat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}
.stat-badge.neutral {
  background: rgba(100, 116, 139, 0.1);
  color: var(--gray-600);
}

.chart-container {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem 0;
}
.chart-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}
.chart-wrap {
  width: 100%;
  height: 320px;
  padding: 0.5rem 1.5rem 1.5rem;
}

/* ==================== INDUSTRIES ==================== */
.industries-section {
  padding: 7rem 0;
  background: var(--off-white);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.industry-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  cursor: pointer;
}
.industry-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  background: var(--gold-muted);
}
.industry-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.industry-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

/* ==================== PLATFORM TABS ==================== */
.platform-section {
  padding: 7rem 0;
  background: var(--white);
}
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  padding: 0 2rem;
  list-style: none;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.tab-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tab-btn i { font-size: 0.9rem; }

.tab-panel {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.tab-panel.active { display: block; }
.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tab-body h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  color: var(--text-primary);
}
.tab-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.tab-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  transition: gap var(--transition);
}
.tab-body a:hover { gap: 0.9rem; }
.tab-video-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.tab-video-card video {
  width: 100%;
  display: block;
}

/* ==================== CTA ==================== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}
.cta-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 2rem;
  line-height: 1.7;
}
.cta-form {
  display: flex;
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.cta-form input::placeholder {
  color: rgba(255,255,255,0.35);
}
.cta-form input:focus {
  border-color: var(--gold);
}
.cta-form button {
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.cta-form button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h5 {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  margin: 0 0 0.8rem;
  color: var(--text-primary);
}
.footer-brand h5 span { color: var(--gold); }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gray-50);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover {
  background: var(--navy);
  color: #fff;
}
.footer-col h6 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0 0 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  display: none;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-center { order: -1; margin-bottom: 2rem; }
  .why-col { flex-direction: row; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 0.5rem;
  }
  .nav-links.open a {
    padding: 0.8rem 0;
    border-radius: 0;
  }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-value { font-size: 1.8rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .tab-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .why-col { flex-direction: column; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-form { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
}

/* hidden utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Loading spinner */
.loading-spinner { display: none; }
.loading-spinner.active { display: inline-block; }

/* Alert messages */
#landing-newsletter-message .alert {
  border-radius: 100px;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border: none;
}
.alert-success { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.alert-danger { background: rgba(239, 68, 68, 0.15); color: #dc2626; }
