@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f2f4ef;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --panel: #fbfcf8;
  --text: #0f1720;
  --muted: #53606d;
  --line: rgba(15, 23, 32, 0.1);
  --accent: #bb3e03;
  --accent-soft: #ffd7bf;
  --accent-alt: #0e7490;
  --shadow: 0 24px 80px rgba(15, 23, 32, 0.12);
  --shadow-lg: 0 40px 120px rgba(15, 23, 32, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 48px));
  --nav-height: 84px;
  --transition: 220ms ease;
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(187, 62, 3, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.14), transparent 28%),
    linear-gradient(180deg, #f7f5ef 0%, #eef2ed 52%, #f6f7f2 100%);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(187, 62, 3, 0.16);
}

.site-shell {
  position: relative;
  overflow: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(242, 244, 239, 0.74);
  border-bottom: 1px solid rgba(15, 23, 32, 0.06);
}

.nav-wrap {
  width: var(--container);
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.wordmark {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.83rem;
}

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

.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.18);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid,
.split-grid,
.contact-grid,
.story-grid,
.news-grid,
.policy-layout {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.panel,
.card,
.article-card,
.contact-panel,
.policy-nav,
.policy-panel,
.metric-card,
.value-card,
.service-card,
.update-card,
.faq-card,
.stat-ribbon {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.6));
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 42px;
  overflow: hidden;
}

.hero-copy::before,
.hero-media::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: auto -40px -120px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 62, 3, 0.14), transparent 70%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 20px;
  font-size: clamp(2.4rem, 5.2vw, 4.9rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.22rem;
}

.lead {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.action-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.button {
  background: var(--text);
  color: white;
  box-shadow: 0 16px 38px rgba(15, 23, 32, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border: 1px solid var(--line);
}

.button:hover,
.button-secondary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero-points,
.list-clean,
.policy-list,
.policy-columns,
.inline-facts {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-points li,
.inline-facts li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 32, 0.06);
}

.hero-media {
  min-height: 640px;
  overflow: hidden;
}

.media-stack {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1.1fr 0.9fr;
}

.media-top,
.media-bottom {
  position: relative;
  overflow: hidden;
}

.media-top img,
.media-bottom img,
.page-hero img,
.story-grid img,
.update-card img,
.news-highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-badge,
.floating-note,
.mini-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(15, 23, 32, 0.78);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 48px rgba(15, 23, 32, 0.22);
}

.overlay-badge {
  top: 28px;
  left: 28px;
}

.floating-note {
  right: 28px;
  bottom: 28px;
  max-width: 280px;
}

.hero-media .micro-label {
  font-size: 0.96rem;
}

.hero-media .overlay-badge {
  font-size: 0.95rem;
}

.hero-media .floating-note {
  font-size: 1rem;
  line-height: 1.45;
  max-width: 340px;
}

/* Homepage hero fine-tuning */
.hero-grid .hero-copy h1 {
  font-size: clamp(1.9rem, 3.9vw, 3.7rem);
  line-height: 1.02;
}

.hero .panel h1 {
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.page-hero-copy h1 {
  font-size: clamp(1.85rem, 3.3vw, 3.3rem);
  line-height: 1.02;
}

.hero-grid .media-top img,
.hero-grid .media-bottom img {
  object-fit: contain;
  object-position: center;
}

.hero-grid .media-top,
.hero-grid .media-bottom {
  background: rgba(220, 229, 234, 0.55);
}

.page-hero-image {
  background: rgba(220, 229, 234, 0.52);
}

.page-hero-image img {
  object-fit: contain;
  object-position: center;
}

section {
  padding: 40px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p,
.card p,
.panel p,
.article-card p,
.service-card p,
.value-card p,
.metric-card p,
.update-card p,
.faq-card p,
.contact-panel p,
.policy-panel p,
.policy-nav p,
blockquote {
  color: var(--muted);
  line-height: 1.8;
}

.grid-3,
.grid-4,
.metrics-grid,
.services-grid,
.values-grid,
.update-grid,
.faq-grid,
.footer-grid,
.app-grid,
.news-cards {
  display: grid;
  gap: 20px;
}

.grid-3,
.services-grid,
.values-grid,
.update-grid,
.news-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.metrics-grid,
.app-grid,
.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.value-card,
.metric-card,
.update-card,
.faq-card,
.article-card,
.contact-panel,
.policy-panel {
  padding: 28px;
}

.card svg,
.service-card svg,
.value-card svg,
.metric-card svg {
  width: 42px;
  height: 42px;
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-alt);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.split-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.split-visual,
.page-hero,
.news-highlight {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.split-copy,
.page-hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow);
}

.inline-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inline-facts strong,
.metric-card strong,
.stat-ribbon strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
}

.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.page-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(10, 16, 21, 0.92), rgba(26, 40, 48, 0.9));
  color: white;
}

.page-hero-copy {
  background: transparent;
  box-shadow: none;
  padding: 48px;
}

.page-hero-copy p,
.page-hero-copy li,
.page-hero .kicker {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero-copy .kicker {
  background: rgba(255, 255, 255, 0.1);
}

.page-hero-image {
  position: relative;
}

.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 32, 0.08), transparent 22%, transparent 78%, rgba(15, 23, 32, 0.18));
}

.news-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.news-highlight {
  min-height: 100%;
  display: grid;
}

.news-grid .split-copy h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  line-height: 1.03;
}

.contact-grid .contact-panel:first-child h1 {
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  line-height: 1.04;
}

.news-grid .news-highlight {
  background: rgba(220, 229, 234, 0.52);
}

.news-grid .news-highlight img {
  object-fit: contain;
  object-position: left center;
}

.article-meta,
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--accent-alt);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

blockquote {
  margin: 18px 0 0;
  padding-left: 20px;
  border-left: 3px solid rgba(187, 62, 3, 0.28);
  font-size: 1.05rem;
}

.contact-grid,
.policy-layout {
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-grid {
  align-items: stretch;
}

.contact-grid .contact-panel {
  height: 100%;
}

.policy-nav {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  padding: 24px;
  max-height: calc(100vh - var(--nav-height) - 36px);
  overflow: auto;
}

.policy-content {
  min-width: 0;
}

.policy-nav a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(15, 23, 32, 0.06);
}

.policy-nav a:last-child {
  border-bottom: 0;
}

.policy-panel {
  margin-bottom: 22px;
  scroll-margin-top: calc(var(--nav-height) + 28px);
}

.policy-hero h1 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.policy-hero .lead {
  max-width: none;
  width: 100%;
}

.policy-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.policy-panel h3 {
  margin: 22px 0 10px;
}

.policy-list li,
.list-clean li {
  margin-bottom: 14px;
}

.policy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.list-clean {
  display: grid;
  gap: 12px;
}

.footer {
  padding: 36px 0 50px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.94), rgba(22, 31, 38, 0.96));
  color: white;
  box-shadow: var(--shadow);
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links,
.footer-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

.micro-label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 32, 0.06);
  color: var(--muted);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .page-hero,
  .news-grid,
  .contact-grid,
  .grid-3,
  .grid-4,
  .metrics-grid,
  .services-grid,
  .values-grid,
  .update-grid,
  .faq-grid,
  .app-grid,
  .footer-grid,
  .inline-facts,
  .stat-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero-image,
  .policy-nav {
    position: relative;
    top: 0;
    max-height: none;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 100vw - 28px);
    --nav-height: 76px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

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

  .mobile-menu {
    display: grid;
    position: fixed;
    inset: var(--nav-height) 14px auto;
    padding: 16px;
    gap: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 32, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 50;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 23, 32, 0.04);
  }

  .hero,
  section,
  .footer {
    padding: 28px 0;
  }

  .hero-grid,
  .split-grid,
  .page-hero,
  .news-grid,
  .contact-grid,
  .policy-layout,
  .grid-3,
  .grid-4,
  .metrics-grid,
  .services-grid,
  .values-grid,
  .update-grid,
  .faq-grid,
  .app-grid,
  .footer-grid,
  .inline-facts,
  .stat-ribbon,
  .hero-points,
  .policy-columns {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media,
  .page-hero-copy,
  .split-copy,
  .card,
  .service-card,
  .value-card,
  .metric-card,
  .update-card,
  .faq-card,
  .contact-panel,
  .policy-panel,
  .policy-nav,
  .article-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-media {
    min-height: 520px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }
}

/* =============================================
   TESLA-STYLE RICH ANIMATIONS & INTERACTIONS
   ============================================= */

/* Cursor glow effect */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(187, 62, 3, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* Scrolling progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
}

/* Hero Section Enhancements */
.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orb-float 12s ease-in-out infinite;
}

.hero-bg-orbs .orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(187, 62, 3, 0.18), transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero-bg-orbs .orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: -4s;
}

.hero-bg-orbs .orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 180, 100, 0.1), transparent 70%);
  bottom: 100px;
  left: 30%;
  animation-delay: -8s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Animated gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 40%, var(--accent-alt) 80%, var(--text) 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Floating elements */
.float-badge {
  animation: float-bounce 4s ease-in-out infinite;
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Card hover Tesla style */
.card,
.service-card,
.value-card,
.metric-card,
.faq-card,
.article-card,
.contact-panel {
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}

.card:hover,
.service-card:hover,
.value-card:hover,
.metric-card:hover,
.faq-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 48px 100px rgba(15, 23, 32, 0.18);
  border-color: rgba(255, 255, 255, 0.72);
}

/* Glowing button */
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.button:hover::after {
  opacity: 1;
}

.button:hover,
.button-secondary:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 23, 32, 0.22);
}

/* Number counter animation */
.counter-wrap {
  display: inline-block;
}

/* Animated underline for nav links */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: right;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Stats section with animated numbers */
.stats-band {
  padding: 48px 0;
}

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

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Feature highlight strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.94), rgba(26, 40, 48, 0.96));
  color: white;
  position: relative;
  overflow: hidden;
}

.feature-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(187,62,3,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(14,116,144,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.feature-strip-item {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), border-color var(--transition), transform var(--transition-slow);
}

.feature-strip-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.feature-strip-item h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-strip-item p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.feature-strip-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: var(--accent);
  opacity: 0.9;
}

/* App showcase cards */
.app-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-showcase-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  padding: 28px;
}

.app-showcase-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.app-showcase-card .app-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(187,62,3,0.12), rgba(14,116,144,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.app-showcase-card .app-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.app-showcase-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.app-showcase-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(187,62,3,0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Vision panel */
.vision-panel {
  position: relative;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.96), rgba(26, 40, 48, 0.94));
  color: white;
  overflow: hidden;
  text-align: center;
}

.vision-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(187,62,3,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(14,116,144,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.vision-panel > * {
  position: relative;
  z-index: 1;
}

.vision-panel h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vision-panel p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.9;
}

.vision-panel .eyebrow {
  color: rgba(255,255,255,0.55);
}

/* Product lines section */
.product-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-line-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.product-line-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-line-card.dark {
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.96), rgba(22, 31, 38, 0.94));
  color: white;
}

.product-line-card.light {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.66));
}

.product-line-card.dark::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(187,62,3,0.25), transparent 70%);
  pointer-events: none;
}

.product-line-card.light::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(14,116,144,0.12), transparent 70%);
  pointer-events: none;
}

.product-line-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-line-card.dark h3,
.product-line-card.dark p {
  color: white;
}

.product-line-card.dark p {
  opacity: 0.72;
}

.product-line-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  margin-bottom: 16px;
}

.product-line-card.dark .product-line-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.product-line-card.light .product-line-label {
  background: rgba(187,62,3,0.09);
  color: var(--accent);
}

/* Ticker/marquee enhanced */
.tech-ribbon {
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.94), rgba(22, 31, 38, 0.96));
  padding: 20px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.tech-ribbon-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.tech-ribbon-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tech-ribbon-track span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Timeline for news */
.news-timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.news-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-alt), transparent);
  opacity: 0.3;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
}

.timeline-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(187,62,3,0.12), rgba(14,116,144,0.1));
  border: 2px solid rgba(187,62,3,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-dot svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.timeline-content {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.timeline-content:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

/* Glowing accent line headings */
.section-head h2,
.split-copy h2,
.page-hero-copy h1 {
  position: relative;
}

/* Scroll-triggered count-up numbers */
[data-count] {
  display: inline-block;
}

/* Page transition overlay */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--text);
  z-index: 999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

/* Reveal animation variants */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hero animated tagline */
.hero-tagline {
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
}

.tagline-cycle {
  display: flex;
  flex-direction: column;
  animation: tagline-scroll 8s ease infinite;
}

.tagline-cycle span {
  display: block;
  padding: 2px 0;
}

@keyframes tagline-scroll {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(-1.4em); }
  50%, 70% { transform: translateY(-2.8em); }
  75%, 95% { transform: translateY(-4.2em); }
  100% { transform: translateY(0); }
}

/* Image glow effect */
.glow-image-wrap {
  position: relative;
}

.glow-image-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(187,62,3,0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Service steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step-counter;
}

.process-step {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  counter-increment: step-counter;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-step::before {
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Sora', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  opacity: 0.05;
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Animated SVG decoration */
.deco-circle {
  animation: spin-slow 30s linear infinite;
}

.deco-arc {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-arc 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes draw-arc {
  to { stroke-dashoffset: 0; }
}

/* Testimonial / quote highlight */
.quote-block {
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.94), rgba(26, 40, 48, 0.96));
  color: white;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: 'Sora', sans-serif;
  font-size: 10rem;
  line-height: 1;
  color: rgba(187,62,3,0.18);
  pointer-events: none;
}

.quote-block blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  position: relative;
  z-index: 1;
}

.quote-block cite {
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-style: normal;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Icon row */
.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(15,23,32,0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(15,23,32,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.icon-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,23,32,0.1);
}

.icon-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* Dark ribbon section */
.dark-section {
  background: linear-gradient(135deg, rgba(15, 23, 32, 0.96), rgba(22, 31, 38, 0.94));
  color: white;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(187,62,3,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(14,116,144,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.dark-section > .container {
  position: relative;
  z-index: 1;
}

.dark-section .eyebrow {
  color: rgba(255,255,255,0.48);
}

.dark-section h2 {
  color: white;
}

.dark-section p,
.dark-section li {
  color: rgba(255,255,255,0.68);
}

/* Horizontal scroll feature row */
.h-scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.h-scroll-row::-webkit-scrollbar {
  height: 4px;
}

.h-scroll-row::-webkit-scrollbar-track {
  background: rgba(15,23,32,0.06);
  border-radius: 4px;
}

.h-scroll-row::-webkit-scrollbar-thumb {
  background: rgba(15,23,32,0.18);
  border-radius: 4px;
}

.h-scroll-item {
  min-width: 280px;
  scroll-snap-align: start;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

/* FAQ accordion */
.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 8px 24px rgba(15,23,32,0.06);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 16px 40px rgba(15,23,32,0.1);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--muted);
}

.faq-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body.is-open {
  max-height: 600px;
}

.faq-body-inner {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

/* Map / location embed placeholder */
.location-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 300px;
  position: relative;
  background: linear-gradient(135deg, rgba(15,23,32,0.94), rgba(26,40,48,0.96));
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-inner {
  text-align: center;
  color: white;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.location-inner h3 {
  color: white;
  margin-bottom: 12px;
}

.location-inner p {
  color: rgba(255,255,255,0.68);
  margin: 0;
}

.location-pin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(187,62,3,0.2);
  border: 2px solid rgba(187,62,3,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: pulse-ring 2s ease infinite;
}

.location-pin svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(187,62,3,0.2); }
  50% { box-shadow: 0 0 0 16px rgba(187,62,3,0); }
}

/* Grid layout enhancements for responsive */
@media (max-width: 1100px) {
  .stats-band .container,
  .process-steps,
  .app-showcase,
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-lines {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .stats-band .container,
  .process-steps,
  .app-showcase,
  .feature-strip,
  .product-lines {
    grid-template-columns: 1fr;
  }

  .vision-panel {
    padding: 36px 24px;
  }

  .quote-block {
    padding: 32px 24px;
  }

  .news-timeline::before {
    display: none;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
  }

  .timeline-dot {
    display: none;
  }
}

/* Tesla-style cursor glow */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,62,3,0.14), rgba(187,62,3,0.02), transparent);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0.6;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #bb3e03, #0e7490);
  width: 0%;
  z-index: 50;
  transition: width 100ms ease;
  box-shadow: 0 0 20px rgba(187,62,3,0.4);
}

/* Hero background animated orbs */
.hero-bg-orbs {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(187,62,3,0.18), transparent 70%);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,116,144,0.14), transparent 70%);
  top: 50%;
  right: -5%;
  animation-delay: -2s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(187,62,3,0.1), transparent 70%);
  bottom: -20%;
  left: 30%;
  animation-delay: -4s;
}

@keyframes float-orb {
  0%, 100% { opacity: 0.1; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.25; transform: translate(15px, -20px) scale(1.08); }
}

/* Smooth fade-in reveal animations */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.delay-1 { --delay: 80ms; }
.delay-2 { --delay: 160ms; }
.delay-3 { --delay: 240ms; }

.reveal.delay-1, .reveal-up.delay-1 {
  transition-delay: 80ms;
}

.reveal.delay-2, .reveal-up.delay-2 {
  transition-delay: 160ms;
}

.reveal.delay-3, .reveal-up.delay-3 {
  transition-delay: 240ms;
}

/* Enhanced floating badges */
.float-badge, .overlay-badge, .floating-note, .mini-chip {
  animation: gentle-float 4s ease-in-out infinite;
}

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

/* Smooth card hover with glow */
.card:hover, .service-card:hover, .value-card:hover, .app-showcase-card:hover {
  box-shadow: 
    var(--shadow-lg),
    0 0 40px rgba(187, 62, 3, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Dark section fade effect */
.dark-section {
  position: relative;
  background: linear-gradient(180deg, rgba(16,24,30,0.96), rgba(16,24,30,0.98));
  color: #f2f4ef;
}

.dark-section h2, .dark-section h3 {
  color: rgba(255, 255, 255, 0.94);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.7);
}

/* Text gradient effect */
.gradient-text {
  background: linear-gradient(135deg, #bb3e03 0%, #0e7490 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced marquee scroll effect */
.marquee-track, .tech-ribbon-track {
  display: flex;
  overflow: hidden;
  gap: 40px;
  animation: scroll-marquee 40s linear infinite;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track:hover, .tech-ribbon-track:hover {
  animation-play-state: paused;
}

/* Mobile menu smooth transitions */
.mobile-menu {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(242,244,239,0.98) 100%);
  border-top: 1px solid rgba(15,23,32,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.is-open {
  max-height: 500px;
}

.mobile-menu a {
  display: block;
  padding: 16px 24px;
  color: var(--text);
  border-bottom: 1px solid rgba(15,23,32,0.06);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: rgba(187, 62, 3, 0.08);
  color: var(--accent);
}

/* Button primary hover effect */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  font-weight: 600;
  border: 2px solid var(--text);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(15,23,32,0.15);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(15,23,32,0.25);
  background: rgba(15,23,32,0.9);
}

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

/* Button secondary style */
.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--line);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: rgba(187, 62, 3, 0.06);
  color: var(--accent);
}

/* FAQ accordion smooth expand */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: color var(--transition);
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.faq-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body.is-open {
  max-height: 400px;
}

.faq-body-inner {
  padding: 16px 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

/* Policy layout responsive */
.policy-layout {
  grid-template-columns: 200px 1fr;
  gap: 48px;
}

.policy-nav {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  height: fit-content;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.6));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
}

.policy-nav h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.policy-nav a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.85rem;
  transition: color var(--transition);
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
}

.policy-nav a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

.policy-panel {
  margin-bottom: 40px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.policy-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.8;
}

.policy-list li::before {
  content: '→';
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* Dark mode ready (future expansion) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1720;
    --text: #f2f4ef;
    --muted: #a3aeb5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
