/* ===== Seyr Intelligence — details.txt palette & structure ===== */
:root {
  /* Dark tech aesthetic (details.txt) */
  --bg: #0B0F14;
  --bg-section: #0F1A1A;
  --bg-card: #151C1C;
  --text: #F2F5F7;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --accent: #1E5945;
  --accent-secondary: #2A7A63;
  --accent-glow: #38BFA3;
  --accent-hover: #2A7A63;
  --accent-muted: rgba(56, 191, 163, 0.15);
  --border: #1f2d2d;
  --gradient-start: #1E5945;
  --gradient-end: #38BFA3;
  --hero-gradient: linear-gradient(160deg, #0B0F14 0%, #0F1A1A 50%, #0B0F14 100%);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.35);
  --glow: 0 0 20px rgba(56, 191, 163, 0.2);
}

[data-theme="light"] {
  --bg: #f5f7f8;
  --bg-section: #ffffff;
  --bg-card: #ffffff;
  --text: #0f1419;
  --text-secondary: #525252;
  --text-muted: #6B7280;
  --border: #e5e7eb;
  --card-shadow: 0 1px 3px rgba(0,0,0,.06);
  --card-shadow-hover: 0 10px 40px -15px rgba(0,0,0,.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ----- Cookie banner ----- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
}

.cookie-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  background: rgba(15, 26, 26, 0.92);
  border: 1px solid rgba(56, 191, 163, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: var(--card-shadow-hover);
}

.cookie-banner-text strong {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.cookie-banner-text p {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-banner .cookie-accept-analytics {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.cookie-banner .cookie-accept-analytics:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions .btn {
    width: 100%;
  }
}

/* ----- Blog ----- */
.blog {
  padding-top: 72px;
}

.blog-hero {
  background: var(--bg);
  padding-top: 120px;
  padding-bottom: 56px;
}

.blog-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.blog-subtitle {
  margin: 0;
  color: var(--text-secondary);
  max-width: 720px;
}

.blog-list-section {
  background: var(--bg-section);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.blog-card:hover {
  box-shadow: var(--card-shadow-hover), var(--glow);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
}

.blog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-muted);
  color: var(--accent-glow);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.75rem;
}

.blog-card-title {
  margin: 0 0 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--accent-glow);
}

.blog-card-excerpt {
  margin: 0 0 14px;
  color: var(--text-secondary);
}

.blog-card-link {
  color: var(--accent-glow);
  text-decoration: none;
  font-weight: 600;
}

.blog-card-link:hover {
  text-decoration: underline;
}

.blog-article {
  background: var(--bg);
  padding-top: 120px;
}

.blog-article-inner {
  max-width: 860px;
}

.blog-back {
  display: inline-block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 18px;
}

.blog-back:hover {
  color: var(--accent-glow);
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.blog-article-title {
  margin: 0 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.blog-article-lead {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.blog-article h2 {
  font-family: 'Outfit', sans-serif;
  margin: 28px 0 10px;
  letter-spacing: -0.02em;
}

.blog-article p,
.blog-article li {
  color: var(--text-secondary);
}

.blog-article strong {
  color: var(--text);
}

.blog-cta {
  margin-top: 32px;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(56, 191, 163, 0.12) 0%, rgba(30, 89, 69, 0.08) 100%);
  border: 1px solid rgba(56, 191, 163, 0.18);
}

.blog-cta h3 {
  margin: 0 0 8px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.blog-cta p {
  margin: 0 0 14px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 15, 20, .6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .2s, border-color .2s, color .2s;
}

.header-over-hero {
  background: transparent;
  border-bottom-color: transparent;
}

.header-over-hero .logo,
.header-over-hero .logo-wordmark,
.header-over-hero .nav a,
.header-over-hero .btn-primary {
  color: #fff;
}

.header-over-hero .nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.header-over-hero .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.header-over-hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.header-over-hero .logo-img {
  color: #fff;
  filter: brightness(0) invert(1);
}

/* Blog + inner pages also use a dark header; keep logo visible */
.header-scrolled .logo-img {
  filter: brightness(0) invert(1);
}

.header-scrolled.header-over-hero {
  background: rgba(15, 26, 26, .95);
  border-bottom-color: var(--border);
}

.header-scrolled.header-over-hero .logo,
.header-scrolled.header-over-hero .logo-wordmark,
.header-scrolled.header-over-hero .nav a,
.header-scrolled.header-over-hero .btn-primary {
  color: var(--text);
}

.header-scrolled.header-over-hero .nav a:hover {
  color: var(--accent-glow);
}

.header-scrolled.header-over-hero .btn-primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.header-scrolled.header-over-hero .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--glow);
}

/* Keep logo light on dark page when scrolled */
.header-scrolled.header-over-hero .logo-img {
  filter: brightness(0) invert(1);
}

.header-over-hero .nav-toggle span {
  background: #fff;
}

.header-scrolled.header-over-hero .nav-toggle span {
  background: var(--text);
}

[data-theme="light"] .header {
  background: rgba(250, 250, 250, .92);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-img {
  height: 32px;
  width: auto;
  color: var(--text);
}

.logo-wordmark {
  display: none;
}

.logo-wordmark.show {
  display: inline;
}

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

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color .2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, box-shadow .2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--border);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-muted);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* Mobile nav open */
@media (max-width: 900px) {
  .nav.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: auto;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--card-shadow-hover);
  }
  .nav.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav.open a:last-child {
    border-bottom: none;
  }
  body.nav-open .header .btn-primary {
    display: inline-flex;
    margin-top: 16px;
    width: 100%;
  }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  opacity: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(37, 99, 235, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, .1) 0%, transparent 70%);
  pointer-events: none;
}

/* ----- Hero dark (main screen with video / canvas) ----- */
.hero-dark .hero-media {
  position: absolute;
  inset: 0;
}

.hero-dark .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dark .hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-dark .hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 15, 20, 0.82) 0%, rgba(15, 26, 26, 0.78) 50%, rgba(11, 15, 20, 0.88) 100%);
  pointer-events: none;
}

.hero-dark .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-dark .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-dark .hero-badge-new {
  display: inline-block;
  padding: 2px 8px;
  background: #2563eb;
  color: #fff;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-dark .hero-title {
  color: #fff;
  margin: 0 0 12px;
  max-width: none;
  font-size: clamp(2.75rem, 6vw, 4rem);
}

.hero-dark .hero-subline {
  color: var(--accent-glow);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero-dark .hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-dark .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-hero-solid {
  background: var(--accent-glow);
  color: #0B0F14;
  border: none;
  border-radius: 10px;
}

.btn-hero-solid:hover {
  background: #2A7A63;
  color: #fff;
  box-shadow: var(--glow);
}

.hero-trust {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hero-trust-item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 720px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: .9;
}

/* ----- Sections ----- */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.section-subtitle a.contact-email {
  color: var(--accent-glow);
  text-decoration: none;
  font-weight: 600;
}

.section-subtitle a.contact-email:hover {
  text-decoration: underline;
}

/* ----- How We Work ----- */
.how-section {
  background: var(--bg-section);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow .25s, transform .25s;
}

.step-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.step-number {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

.step-metrics,
.step-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.step-metrics li,
.step-tags li {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.step-metrics li:last-child,
.step-tags li:last-child {
  border-bottom: none;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tags li {
  padding: 6px 12px;
  background: var(--accent-muted);
  color: var(--accent);
  border-radius: 8px;
  border: none;
}

/* ----- Solutions ----- */
.solutions-section {
  background: var(--bg);
}

/* Grouped services (3 cards, each contains multiple capabilities) */
.service-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-group-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.service-group-card:hover {
  box-shadow: var(--card-shadow-hover), var(--glow);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
}

.service-group-icon {
  display: none;
}

.service-group-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.service-group-card p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.55;
}

.service-group-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.service-group-list li {
  padding-left: 18px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

.service-group-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: var(--accent-glow);
  box-shadow: 0 0 10px rgba(56, 191, 163, 0.25);
  transform: translateY(-50%);
}

/* Enablement section (training/certification moved out of Services) */
.enablement-section {
  background: var(--bg-section);
}

.enablement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.enablement-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.enablement-card:hover {
  box-shadow: var(--card-shadow-hover), var(--glow);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
}

.enablement-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  background: radial-gradient(circle at 40% 40%, rgba(56, 191, 163, .65) 0%, rgba(56, 191, 163, .12) 45%, rgba(56, 191, 163, 0) 70%),
              linear-gradient(var(--accent-secondary) 0 0) 0 36px / 100% 2px;
  background-repeat: no-repeat;
  opacity: 0.95;
}

.enablement-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.enablement-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.solution-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow .25s, border-color .25s;
}

.solution-card:hover {
  box-shadow: var(--card-shadow-hover), var(--glow);
  border-color: var(--accent-secondary);
}

.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  opacity: .85;
  margin-bottom: 16px;
}

.solution-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
}

.solution-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ----- Case ----- */
.case-section {
  background: var(--bg-section);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.case-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.case-visual {
  height: 140px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-muted) 0%, rgba(56, 191, 163, .15) 100%);
  margin-bottom: 16px;
}

.case-result {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ----- Benefits ----- */
.benefits-section {
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.benefit-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.benefit-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ----- Testimonials ----- */
.testimonials-section {
  background: var(--bg);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}

.testimonial-author strong {
  color: var(--text);
}

.testimonial-author span {
  color: var(--text-muted);
}

/* ----- Pricing ----- */
.pricing-section {
  background: var(--bg-section);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow .25s, border-color .25s;
}

.pricing-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
}

.pricing-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pricing-amount .currency {
  font-size: 1.25rem;
}

.pricing-amount .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-custom {
  font-size: 1.75rem;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ----- Comparison ----- */
.comparison-section {
  background: var(--bg);
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-col {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.comparison-new {
  border-color: var(--accent-secondary);
  background: var(--accent-muted);
}

.comparison-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.comparison-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.comparison-col li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.comparison-col li:last-child {
  border-bottom: none;
}

.comparison-vs {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
}

/* ----- FAQ ----- */
.faq-section {
  background: var(--bg-section);
}

.faq-intro {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 32px;
}

.faq-intro a {
  color: var(--accent);
  text-decoration: none;
}

.faq-intro a:hover {
  text-decoration: underline;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Why Seyr Intelligence ----- */
.why-section {
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow .25s, border-color .25s;
}

.why-card:hover {
  box-shadow: var(--card-shadow-hover), var(--glow);
  border-color: var(--accent-secondary);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  margin-bottom: 16px;
  opacity: 0.9;
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* ----- Technology ----- */
.technology-section {
  background: var(--bg-section);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.tech-item {
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow .25s, border-color .25s;
}

.tech-item:hover {
  border-color: var(--accent-secondary);
  box-shadow: var(--glow);
}

.tech-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ----- Contact ----- */
.contact-section {
  background: var(--bg);
  padding: 100px 0 120px;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.contact-form .form-row {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.contact-form .btn:hover {
  box-shadow: var(--glow);
}

/* Honeypot (anti-spam) field should stay hidden */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: 6px 0 0;
  min-height: 1.25em;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-status.is-loading {
  color: var(--text-secondary);
}

.form-status.is-success {
  color: rgba(56, 191, 163, 1);
}

.form-status.is-error {
  color: rgba(255, 121, 121, 1);
}

/* ----- Footer ----- */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer .logo {
  color: var(--text);
}

.footer .logo-img {
  filter: brightness(0) invert(1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.footer-email {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-glow);
  text-decoration: none;
  font-weight: 600;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--accent-glow);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 4px 0;
}

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

.footer-copy {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.footer-copy-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-copy-links a:hover {
  color: var(--accent-glow);
  text-decoration: underline;
}

.footer-copy-sep {
  opacity: 0.6;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-vs {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

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

/* ----- Scroll-triggered fade (optional, enhanced by JS) ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
