/* ============================================================
   NAVBAR AI — Modern Dark Theme
   ============================================================ */

.navbar-ai {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-ai__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.navbar-ai__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.navbar-ai__logo:hover {
  opacity: 0.8;
}

.navbar-ai__logo-icon {
  font-size: 1.5rem;
}

.navbar-ai__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

/* Desktop Nav */
.navbar-ai__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.navbar-ai__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-ai__link:hover {
  color: white;
}

/* Actions */
.navbar-ai__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-ai__btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.navbar-ai__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}

.navbar-ai__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.navbar-ai__btn--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.navbar-ai__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile Toggle */
.navbar-ai__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-ai__mobile-toggle span {
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* Mobile Menu */
.navbar-ai__mobile {
  flex-direction: column;
  padding: 1rem 2rem 2rem;
  gap: 0.5rem;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-ai__mobile-link {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.navbar-ai__mobile-link:hover {
  color: white;
}

.navbar-ai__mobile-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}

.navbar-ai__mobile-btn--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-ai__nav {
    display: none;
  }
  
  .navbar-ai__actions {
    display: none;
  }
  
  .navbar-ai__mobile-toggle {
    display: flex;
  }
  
  .navbar-ai__container {
    padding: 1rem;
  }
}
/* Zoeiq 2026 marketing — glass nav, scroll progress, featured + bento. No Sign in / Get started. */

:root {
  --ink: #070b14;
  --ink-2: #1e293b;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --bg: #fbfcfe;
  --bg-soft: #f1f5f9;
  --glass: rgba(255, 255, 255, 0.72);
  --accent: #0b3d6e;
  --accent-2: #1565a8;
  --accent-soft: rgba(11, 61, 110, 0.08);
  --live: #15803d;
  --live-bg: #dcfce7;
  --early: #475569;
  --early-bg: #e2e8f0;
  --shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 18px 50px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --font: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --display: 'Fraunces', Georgia, serif;
  --radius: 18px;
  --nav-h: 4.25rem;
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

.zq {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.zq-shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.zq-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 80;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.1s linear;
}

.zq-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
}
.zq-skip:focus { left: 0.5rem; top: 0.75rem; }

/* Nav */
.zq-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.zq-nav.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}

.zq-nav__inner {
  width: min(100% - 1.25rem, var(--max));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.zq-logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}

.zq-nav__desktop {
  display: none;
  gap: 0.2rem;
  margin-left: 0.75rem;
  flex: 1;
}

.zq-nav__desktop a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.zq-nav__desktop a:hover { background: var(--accent-soft); color: var(--accent); }
.zq-nav__desktop a.is-active { background: var(--accent-soft); color: var(--accent); font-weight: 650; }

.zq-nav__contact {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--accent);
  text-decoration: none;
}
.zq-nav__contact:hover { text-decoration: underline; }

.zq-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0.6rem;
}
.zq-nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}
.zq-nav__toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zq-nav__toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.zq-nav__toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .zq-nav__desktop { display: flex; }
  .zq-nav__toggle { display: none; }
}

.zq-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(100%, 380px);
  height: 100dvh;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem 2rem;
  transform: translateX(105%);
  transition: transform 0.35s var(--ease);
  visibility: hidden;
  pointer-events: none;
}
.zq-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.zq-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  border: 0;
  background: rgba(7, 11, 20, 0.4);
  cursor: pointer;
  animation: zq-fade 0.25s ease;
}
.zq-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.zq-drawer__close {
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.zq-drawer__nav { display: flex; flex-direction: column; gap: 0.25rem; }
.zq-drawer__nav a {
  padding: 0.9rem 0.8rem;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}
.zq-drawer__nav a:hover,
.zq-drawer__nav a.is-active { background: var(--accent-soft); color: var(--accent); }
.zq-drawer__mail { margin-top: 1rem !important; color: var(--accent) !important; }

/* Hero */
.zq-hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem 4rem;
}

.zq-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(21, 101, 168, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 10%, rgba(7, 11, 20, 0.08), transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(21, 101, 168, 0.08), transparent 55%),
    linear-gradient(180deg, #eef3f8 0%, var(--bg) 55%, #fff 100%);
  animation: zq-mesh 16s ease-in-out infinite alternate;
}

.zq-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  text-align: center;
}

.zq-chip {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  animation: zq-up 0.7s var(--ease) both;
}

.zq-hero__title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 1.1rem;
  animation: zq-up 0.8s var(--ease) 0.05s both;
}

.zq-hero__title em {
  font-style: italic;
  font-weight: 550;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zq-hero__lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  animation: zq-up 0.85s var(--ease) 0.1s both;
}

.zq-hero__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  animation: zq-up 0.9s var(--ease) 0.15s both;
}

.zq-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.zq-link:hover { text-decoration: underline; }
.zq-link--muted { color: var(--muted); font-weight: 600; }
.zq-link--muted:hover { color: var(--accent); }

/* Products */
.zq-products {
  padding: 4rem 0 5rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.zq-sectionhead { margin-bottom: 1.75rem; max-width: 36rem; }
.zq-sectionhead h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.zq-sectionhead p { color: var(--muted); }

.zq-feature {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(11, 61, 110, 0.05), transparent 40%),
    #fff;
  box-shadow: var(--shadow);
  margin-bottom: 1.15rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
  overflow: hidden;
  animation: zq-up 0.7s var(--ease) both;
}

@media (min-width: 900px) {
  .zq-feature {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
  }
}

.zq-feature__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.zq-feature h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.zq-feature__line {
  font-weight: 650;
  color: var(--ink-2);
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.zq-feature__detail {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 36rem;
}

.zq-feature__visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0b3d6e 0%, #1565a8 55%, #1e293b 100%);
  overflow: hidden;
}

.zq-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 70%);
  top: -30px;
  right: -20px;
  animation: zq-float 8s ease-in-out infinite;
}

.zq-panel-mock {
  position: absolute;
  inset: 18% 12% 14%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.zq-panel-mock__bar {
  height: 10px;
  width: 40%;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
}

.zq-panel-mock__row {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
}
.zq-panel-mock__row--short { width: 62%; }

.zq-panel-mock__grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.zq-panel-mock__grid span {
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.16);
}

.zq-bento {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .zq-bento { grid-template-columns: repeat(3, 1fr); }
}

.zq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s ease;
  animation: zq-up 0.7s var(--ease) both;
}
.zq-card:nth-child(1) { animation-delay: 0.05s; }
.zq-card:nth-child(2) { animation-delay: 0.1s; }
.zq-card:nth-child(3) { animation-delay: 0.15s; }
.zq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.zq-card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.zq-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.zq-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.zq-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 7px;
  background: var(--early-bg);
  color: var(--early);
}
.zq-badge--live { background: var(--live-bg); color: var(--live); }

.zq-card__name {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.zq-card__line { font-weight: 650; color: var(--ink-2); margin-bottom: 0.5rem; }
.zq-card__detail { color: var(--muted); font-size: 0.94rem; margin-bottom: 0.85rem; }

.zq-card__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}
.zq-card__points li {
  font-size: 0.84rem;
  color: var(--ink-2);
  padding-left: 0.8rem;
  position: relative;
}
.zq-card__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.zq-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.zq-card__cta:hover { text-decoration: underline; }
.zq-card:hover .zq-card__cta span { transform: translateX(3px); }
.zq-card__cta span { transition: transform 0.2s var(--ease); }

.zq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}
.zq-btn:hover { background: #083056; transform: translateY(-1px); }

/* Company */
.zq-company {
  padding: 4rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.zq-company__grid { display: grid; gap: 2rem; }
@media (min-width: 800px) {
  .zq-company__grid { grid-template-columns: 1.1fr 1fr; gap: 3rem; }
}
.zq-company h2 {
  font-family: var(--display);
  font-size: 1.85rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}
.zq-company p { color: var(--muted); max-width: 28rem; }
.zq-company__list {
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.zq-company__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.zq-company__list li:last-child { border-bottom: 0; }
.zq-company__list span { color: var(--muted); font-weight: 500; }
.zq-company__list a { color: var(--accent); font-weight: 700; text-decoration: none; }
.zq-company__list a:hover { text-decoration: underline; }

.zq-footer {
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 1.75rem;
  background: #fff;
}
.zq-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.zq-footer nav { display: flex; gap: 1rem; flex: 1; }
.zq-footer nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.zq-footer nav a:hover { color: var(--accent); }
.zq-footer p { color: var(--muted); font-size: 0.85rem; margin-left: auto; }

@keyframes zq-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zq-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes zq-mesh {
  from { transform: scale(1) translate3d(0,0,0); }
  to { transform: scale(1.04) translate3d(1%, 2%, 0); }
}
@keyframes zq-float {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-12px, 10px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
/* ========================================
   INDUSTRY PAGE - DARK THEME
   ======================================== */

.industry-page {
  min-height: 100vh;
  background: #0a0f1e;
  padding-top: 72px;
}

/* Hero Section */
.industry-hero {
  background: linear-gradient(180deg, #0a0f1e 0%, #141b2d 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 252, 60, 0.08), transparent);
  pointer-events: none;
}

.industry-hero-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.industry-badge {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1;
}

.industry-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.industry-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 3rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.industry-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-lg,
.btn-outline-lg,
.btn-primary-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  letter-spacing: -0.01em;
  border: none;
}

.btn-primary-lg {
  background: #d4fc3c;
  color: #0a0f1e;
}

.btn-primary-lg:hover {
  background: #c8f020;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 252, 60, 0.3);
}

.btn-outline-lg {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-lg:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  background: #d4fc3c;
  color: #0a0f1e;
}

.btn-primary-xl:hover {
  background: #c8f020;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 252, 60, 0.4);
}

/* Stats Section */
.industry-stats {
  padding: 4rem 2rem;
  background: #0f1623;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4fc3c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
}

/* Features Section */
.industry-features {
  padding: 6rem 2rem;
  background: #0a0f1e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2rem;
  letter-spacing: -0.03em;
}

.features-list,
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item,
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child,
.benefit-item:last-child {
  border-bottom: none;
}

.feature-check {
  color: #d4fc3c;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-icon {
  color: #d4fc3c;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* CTA Section */
.industry-cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #141b2d 0%, #0a0f1e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.industry-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(212, 252, 60, 0.06), transparent);
  pointer-events: none;
}

.industry-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2.5rem;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 768px) {
  .industry-title {
    font-size: 2.5rem;
  }

  .industry-description {
    font-size: 1.125rem;
  }

  .industry-stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .industry-features-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .btn-primary-lg,
  .btn-outline-lg {
    width: 100%;
  }
}
/* Global Shell Styles - Professional SaaS Color Scheme */
:root {
  /* Primary Brand Colors - Modern Indigo/Purple Gradient */
  --primary-color: #6366F1;
  --primary-hover: #4F46E5;
  --primary-light: #818CF8;
  --secondary-color: #8B5CF6;
  --secondary-hover: #7C3AED;
  --accent-color: #EC4899;
  --accent-hover: #DB2777;
  
  /* Status Colors */
  --success-color: #10B981;
  --success-light: #D1FAE5;
  --danger-color: #EF4444;
  --danger-light: #FEE2E2;
  --warning-color: #F59E0B;
  --warning-light: #FEF3C7;
  --info-color: #3B82F6;
  --info-light: #DBEAFE;
  
  /* Background Colors */
  --dark-bg: #0F172A;
  --dark-bg-secondary: #1E293B;
  --light-bg: #FFFFFF;
  --light-bg-secondary: #F8FAFC;
  --border-color: #E2E8F0;
  --border-color-light: #F1F5F9;
  
  /* Text Colors */
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-tertiary: #94A3B8;
  --text-on-dark: #F8FAFC;
  
  /* Layout */
  --nav-height: 64px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-accent: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  color: var(--text-primary);
  line-height: 1.6;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-shell--marketing {
  background: #fbfcfe;
}

.app-content {
  flex: 1;
  /* Navigation spacing handled by body padding-top (72px) in NavigationRippling.css */
}

.app-content--flush {
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Global Navigation */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--gradient-dark);
  color: white;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.nav-logo {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  transition: transform 0.2s;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 400;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  margin-left: -0.25rem;
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
  flex: 1;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
  background-color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
}

.nav-icon {
  font-size: 1.1rem;
}

/* Dropdown Menus */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
  margin-left: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  color: var(--text-primary);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 0.5rem;
  min-width: 280px;
  animation: dropdownFadeIn 0.2s ease-out;
  z-index: 1001;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background-color: #f7fafc;
  color: var(--primary-color);
}

.item-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
  border-radius: 8px;
  flex-shrink: 0;
}

.item-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dropdown-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.25rem;
}

.dropdown-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 0.5rem 0;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.user-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.user-email {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* User Menu */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-menu {
  position: relative;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1rem;
}

.user-avatar:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-hover);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Landing Page */
.landing-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.hero {
  text-align: center;
  margin-bottom: 5rem;
  padding: 3rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Landing Sections */
.landing-section {
  margin-bottom: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

/* Frameworks Grid */
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.framework-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--border-color-light);
}

.framework-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.framework-content {
  flex: 1;
}

.framework-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
}

.framework-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--border-color-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}

.badge-secondary {
  background: var(--border-color);
  color: var(--text-primary);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-primary);
  border-radius: 24px;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.btn-large {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

/* Dashboard */
.dashboard-page {
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-header {
  margin-bottom: 2rem;
}

.dashboard-header h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .nav-menu {
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .logo-tagline {
    display: none;
  }

  .products-grid,
  .frameworks-grid,
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
    gap: 1rem;
  }

  .nav-menu {
    display: none; /* Mobile menu to be implemented */
  }

  .nav-icon {
    display: none;
  }

  .dropdown-menu {
    max-width: 260px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .products-grid,
  .frameworks-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .landing-page {
    padding: 2rem 1rem 4rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .app-content {
    padding: 1rem;
  }

  .hero {
    margin-bottom: 3rem;
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-large {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

.stat-card h3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Loading & Error States */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.error-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.error-container h2 {
  color: var(--danger-color);
  margin-bottom: 1rem;
}

.error-container p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .app-content {
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   MODERN SAAS LANDING PAGE
   ========================================== */

.landing-page-modern {
  background: #ffffff;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8rem 2rem 6rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #48bb78;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.375rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.95;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.btn-hero-primary {
  background: white;
  color: var(--primary-color);
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.btn-hero-primary:hover .btn-arrow,
.btn-hero-secondary:hover .btn-icon {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: #f7fafc;
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card-modern {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  border: 1px solid #e2e8f0;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
  border-color: var(--primary-color);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea20 0%, #764ba240 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon-large {
  font-size: 2rem;
}

.feature-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-desc-modern {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Products Showcase - Enhanced 2025 */
.products-section {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.products-showcase {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: clamp(2rem, 3vw, 2.5rem);
}

.product-card-showcase {
  background: white;
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.product-card-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.02), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card-showcase:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  border-color: currentColor;
}

.product-card-showcase:hover::before {
  opacity: 1;
}

.product-header {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: var(--product-spacing-lg);
  position: relative;
  z-index: 1;
}

.product-icon-large {
  width: clamp(64px, 10vw, 80px);
  height: clamp(64px, 10vw, 80px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.product-card-showcase:hover .product-icon-large {
  transform: scale(1.1) rotate(-5deg);
}

.product-header-text {
  flex: 1;
}

.product-name {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.product-tagline {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.product-description {
  color: #64748b;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  margin-bottom: var(--product-spacing-xl);
  position: relative;
  z-index: 1;
}

.product-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.875rem, 2vw, 1rem);
  margin-bottom: var(--product-spacing-xl);
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-item-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  color: #1e293b;
  font-weight: 500;
}

.check-icon {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  flex-shrink: 0;
}

.product-cta-btn {
  width: 100%;
  padding: clamp(0.875rem, 2vw, 1.125rem) 2rem;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.product-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Benefits Section - Enhanced 2025 */
.benefits-section {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.05), transparent 60%);
  pointer-events: none;
}

.benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.benefit-card-large {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.3s;
}

.benefit-card-large:hover {
  transform: translateY(-8px);
}

.benefit-icon-circle {
  width: clamp(80px, 12vw, 96px);
  height: clamp(80px, 12vw, 96px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 5vw, 3rem);
  margin: 0 auto var(--product-spacing-lg);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.25);
  transition: all 0.3s;
}

.benefit-card-large:hover .benefit-icon-circle {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 16px 40px rgba(102, 126, 234, 0.35);
}

.benefit-title-large {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--product-spacing-md);
  letter-spacing: -0.01em;
}

.benefit-description-large {
  font-size: clamp(1.0625rem, 2vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 2rem;
  background: white;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: #f7fafc;
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.author-role {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Final CTA - Modern 2025 */
.cta-section-final {
  padding: clamp(4rem, 10vw, 8rem) 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-content-final {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title-final {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-subtitle-final {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0.95;
  line-height: 1.6;
}

.cta-actions-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.btn-cta-primary-final {
  background: white;
  color: #667eea;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-cta-primary-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-cta-primary-final:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cta-primary-final:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary-final .btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.btn-cta-primary-final:hover .btn-arrow {
  transform: translateX(6px);
}

.cta-note {
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  opacity: 0.9;
  position: relative;
  z-index: 1;
  margin-top: var(--product-spacing-sm);
}

/* Responsive - Modern Landing 2025 */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(3rem, 6vw, 3.5rem);
  }

  .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .products-showcase {
    grid-template-columns: 1fr;
  }

  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-features-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
  .hero-section {
    padding: clamp(4rem, 10vw, 6rem) 1.5rem clamp(3rem, 8vw, 4rem);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.125rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: clamp(0.75rem, 2vw, 1rem);
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: clamp(0.875rem, 2vw, 1rem) 2rem;
  }

  .features-grid-modern,
  .benefits-container {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .products-showcase {
    gap: 1.5rem;
  }

  .product-card-showcase {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .product-features-list {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
  }

  .cta-title-final {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .cta-subtitle-final {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
  }

  .btn-cta-primary-final {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1rem 2rem;
  }

  .hero-badge {
    font-size: 0.8125rem;
    padding: 0.4375rem 1rem;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  .feature-card-modern,
  .product-card-showcase {
    padding: 1.25rem;
  }

  .product-icon-large {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }

  .check-icon {
    font-size: 1.125rem;
  }

  .benefit-icon-circle {
    width: 72px;
    height: 72px;
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .section-subtitle {
    font-size: 0.9375rem !important;
  }

  .cta-title-final {
    font-size: 1.75rem !important;
  }

  .cta-subtitle-final {
    font-size: 1rem !important;
  }

  .btn-cta-primary-final {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem !important;
  }
}

/* Small Mobile - 360px */
@media (max-width: 360px) {
  .hero-section {
    padding: 2.5rem 0.875rem 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }

  .product-features-list {
    gap: 0.5rem;
  }

  .feature-item-check {
    font-size: 0.875rem;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .product-card-showcase:hover,
  .feature-card-modern:hover,
  .benefit-card-large:hover {
    transform: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .product-card-showcase,
  .feature-card-modern {
    border: 2px solid currentColor;
  }

  .btn-hero-primary,
  .btn-cta-primary-final {
    border: 3px solid currentColor;
  }
}
/* ============================================
   MODERN LANDING PAGE STYLES - PROFESSIONAL SAAS
   ============================================ */

/* Landing Page Container */
.landing-page-modern {
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section - Modern Gradient */
.hero-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 8rem 2rem 6rem;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.hero-section .hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero-section .hero-description {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.hero-section .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-section .hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: white;
}

.features-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.features-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-section .section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.features-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card-modern {
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  border: 2px solid var(--border-color-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card-modern p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Products Section */
.products-section {
  padding: 6rem 2rem;
  background: var(--light-bg-secondary);
}

.products-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.products-section .section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.products-grid-modern {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.product-card-showcase {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.product-card-showcase:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.product-card-showcase:hover::before {
  opacity: 0.03;
}

.product-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.product-card-showcase h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.product-card-tagline {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.product-card-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-features-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.product-features-list li::before {
  content: '✓';
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.product-card-button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.product-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 2rem;
  background: white;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.benefit-card-large {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 24px;
  border: 2px solid var(--border-color-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-large:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl);
}

.benefit-icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.benefit-card-large h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefit-card-large p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 2rem;
  background: var(--light-bg-secondary);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color-light);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -1rem;
  top: -0.5rem;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.testimonial-role {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.testimonial-company {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 2rem;
  background: white;
  text-align: center;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: var(--gradient-primary);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-button-white {
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button-outline {
  padding: 1rem 2.5rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
}

/* Responsive Design for Modern Landing */
@media (max-width: 1024px) {
  .hero-section .hero-title {
    font-size: 3.5rem;
  }

  .products-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 5rem 1.5rem 4rem;
  }

  .hero-section .hero-title {
    font-size: 2.5rem;
  }

  .hero-section .hero-description {
    font-size: 1.25rem;
  }

  .hero-section .hero-stats {
    gap: 2rem;
  }

  .hero-stat-value {
    font-size: 2rem;
  }

  .features-section h2,
  .products-section h2 {
    font-size: 2.25rem;
  }

  .features-grid-modern,
  .products-grid-modern,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-card h2 {
    font-size: 2.25rem;
  }

  .cta-card p {
    font-size: 1.125rem;
  }

  .cta-button-white,
  .cta-button-outline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section .hero-title {
    font-size: 2rem;
  }

  .product-card-showcase {
    padding: 2rem;
  }

  .feature-card-modern {
    padding: 1.75rem;
  }
}
