/* ==========================================================================
   TalentWebX — Design Tokens
   ========================================================================== */
:root {
  /* Brand colors (from brand kit) */
  --navy-950: #050d1c;
  --navy-900: #0b1f3a;
  --navy-800: #122a4d;
  --navy-700: #1c3760;
  --navy-600: #2a4a7d;
  --slate-400: #8ca0c2;
  --slate-300: #b3c1da;
  --white: #f4f6fa;
  --black: #040b1c;
  --pure-white: #ffffff;
  --orange-500: #ff7a00;
  --orange-400: #ff9633;
  --orange-300: #ffb066;
  --orange-glow: rgba(255, 122, 0, 0.28);

  /* Type */
  --font-display: "Poppins", sans-serif;
  --font-sub: "Inter", sans-serif;
  --font-body: "Open Sans", sans-serif;

  /* Layout */
  --container: 1240px;
  --nav-height: 84px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Grid-line background — for feature/illustration cards
   ========================================================================== */
.grid-bg {
  position: relative;
  overflow: hidden;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(140, 160, 194, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 160, 194, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  /* fades the grid out toward the card edges, like the reference image */
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 40%, transparent 100%);
  pointer-events: none;
}

.grid-bg-accent::before {
  background-image:
    linear-gradient(to right, rgba(255, 122, 0, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 122, 0, 0.10) 1px, transparent 1px);
}

.dot-bg {
  position: relative;
  overflow: hidden;
}

.dot-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(140, 160, 194, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}


/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  /* background: var(--navy-900); */
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--orange-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

.eyebrow {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-400);
}

/* ==========================================================================
   Ambient background — built from the logo's own X facets
   ========================================================================== */
.bg-facets {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-facets span {
  position: absolute;
  filter: blur(70px);
  opacity: 0.35;
}
.facet-chevron {
  width: 620px;
  height: 620px;
  top: -220px;
  right: -180px;
  background: var(--navy-600);
  clip-path: polygon(35% 0%, 65% 0%, 100% 50%, 65% 100%, 35% 100%, 70% 50%);
}
/* .facet-parallelogram {
  width: 460px;
  height: 460px;
  bottom: -220px;
  left: -200px;
  background: var(--orange-500);
  opacity: 0.11;
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
} */

.overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 100px;
  left: -150px;


    /* place a large decorative image toward the top-right without overflowing */
  /* top: -120px;
  right: -120px;
  width: 900px;
  max-width: none;
  height: auto;
  opacity: 0.12;
  pointer-events: none; */

}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  width: 100%;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), position 0.3s var(--ease);
}
.site-header.scrolled {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(5, 13, 28, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(140, 160, 194, 0.15);
}
.site-header.scrolled + main {
  margin-top: var(--nav-height);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo, hand-built in CSS from the brand's X mark */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.logo-mark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--black);
  transition: color 0.3s var(--ease);
}
.site-header.scrolled .logo-mark {
  color: var(--pure-white);
}
.logo-mark .lw {
  color: var(--black);
  transition: color 0.3s var(--ease);
}
.site-header.scrolled .logo-mark .lw {
  color: var(--pure-white);
}
.logo-mark .lx {
  display: inline-block;
  color: var(--orange-500);
  font-style: italic;
  transform: skewX(-6deg) scaleY(1.05);
  margin-left: 1px;
  position: relative;
}
.logo-tagline {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-300);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--orange-500);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pure-white);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--pure-white);
  box-shadow: 0 8px 24px -8px var(--orange-glow);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px var(--orange-glow);
}
.btn-ghost {
  background: transparent;
  color: var(-- --black);
  border-color: var(--black);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--black);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  position: relative;
  padding: 0;
  color: var(--black);
  transition: color 0.3s var(--ease);
}
.site-header.scrolled .nav-toggle {
  color: var(--white);
}
.nav-toggle-icon {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  transition: transform 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  transform: rotate(90deg);
}
.toggle-line-1,
.toggle-line-2,
.toggle-line-3 {
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: 12px 12px;
}
.nav-toggle[aria-expanded="true"] .toggle-line-1 {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .toggle-line-2 {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .toggle-line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  z-index: 1;
  padding: 88px 0;
  /* min-height: calc(100vh - var(--nav-height)); */
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-section {
  padding: 90px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media {
  display: block;
}
.about-image {
  overflow: hidden;

  /* box-shadow: 0 30px 70px -35px rgba(0, 0, 0, 0.28); */
  background: radial-gradient(circle at 60% 40%, var(--orange-glow), transparent 60%);
  
  min-height: 420px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--navy-900);
}
.about-intro,
.about-story {
  font-family: var(--font-body);
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 24px;
}
.about-story {
  display: none;
}
.about-story.is-visible {
  display: block;
}
.about-read-more {
  display: inline-flex;
  margin: 0 0 24px;
}
.about-values {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-value {
  flex: 1 1 240px;
  /* background: rgba(255, 255, 255, 0.95); */
  border: 1px solid rgba(14, 21, 41, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 24px 54px -30px rgba(0, 0, 0, 0.18);
}
.about-value h3 {
  margin: 0 0 12px;
  font-family: var(--font-sub);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.about-value p {
  margin: 0;
  color: var(--slate-400);
  font-size: 0.95rem;
  line-height: 1.8;
}
.features-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}
.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 186, 114, 0.14);
  pointer-events: none;
}
.features-inner {
  position: relative;
  display: grid;
  gap: 48px;
}
.features-copy {
  max-width: 640px;
  margin-bottom: 32px;
}
.features-text {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--navy-900);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--pure-white);
  border: 1px solid rgba(14, 21, 41, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 72px -36px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}
.feature-card figure {
  margin: 0;
  min-height: 240px;
  overflow: hidden;
}
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-card h3 {
  margin: 24px 24px 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--navy-900);
}
.feature-card p {
  margin: 0 24px 24px;
  color: var(--slate-400);
  font-size: 0.96rem;
  line-height: 1.8;
}
.process-section {
  padding: 100px 0 120px;
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-image-placeholder {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.process-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.process-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.3vw, 3.1rem);
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--navy-900);
}
.process-intro {
  font-family: var(--font-body);
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 48px;
}
.process-steps {
  margin-bottom: 36px;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.process-step:last-of-type {
  margin-bottom: 0;
}
.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff7a00, #ff9633);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pure-white);
}
.step-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
}
.step-content p {
  margin: 0;
  color: var(--slate-400);
  font-size: 0.96rem;
  line-height: 1.75;
}
.process-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  color: var(--navy-900);
}
.process-cta p {
  margin: 0;
}

/* ==========================================================================
   Capabilities / Dashboard Section
   ========================================================================== */
.capabilities-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.capabilities-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 150, 51, 0.08));
  z-index: 0;
}

.capabilities-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.capabilities-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.3vw, 3.1rem);
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--navy-900);
}

.capabilities-intro {
  font-family: var(--font-body);
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 48px;
}

.capabilities-items {
  margin-bottom: 0;
}

.capability-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.capability-item:last-of-type {
  margin-bottom: 0;
}

.capability-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff7a00, #ff9633);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pure-white);
}

.capability-text h3 {
  margin: 0 0 8px;
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.capability-text p {
  margin: 0;
  color: var(--slate-400);
  font-size: 0.96rem;
  line-height: 1.75;
}

.capabilities-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: visible;
}

.capabilities-visual::after {
  content: "";
  position: absolute;
  right: -800px;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: -1;
}

.dashboard-mockup {
  position: relative;
  /* width: 100%; */
  max-width: 800px;
  margin-right: -320px;
}

.dashboard-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.14) 0%, transparent 38%),
    linear-gradient(180deg, #fefefe 0%, #f7f9fc 100%);
  background-repeat: no-repeat;
  background-position: top right;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.contact-copy {
  max-width: 560px;
}

.contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 2.6vw, 3.4rem);
  line-height: 1.02;
  margin: 18px 0 22px;
  color: var(--navy-900);
}

.contact-copy p {
  font-family: var(--font-body);
  color: var(--navy-700);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 32px;
}

.contact-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-pill {
  padding: 20px 22px;
  background: var(--pure-white);
  border-radius: var(--radius-sm);
  /* box-shadow: 0 20px 40px rgba(4, 11, 28, 0.05); */
  border: 1px solid rgba(11, 27, 57, 0.06);
}

.contact-pill strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--navy-900);
}

.contact-pill p {
  margin: 0;
  color: var(--slate-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 24px 26px;
background-color: var(--pure-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(102, 120, 151, 0.12);
  /* box-shadow: 0 28px 60px rgba(4, 11, 28, 0.04); */
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-500);
}

.contact-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--navy-900);
}

.contact-form-card {
  position: relative;
  padding: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), #ffffff 100%);
  border-radius: 20px;
  border: 1px solid rgba(11, 27, 57, 0.08);
  /* box-shadow: 0 40px 80px rgba(4, 11, 28, 0.08); */
}

.contact-form-card::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.1);
  z-index: -1;
}

.contact-form-header .eyebrow {
  color: var(--orange-500);
  margin-bottom: 16px;
}

.contact-form-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 16px;
  color: var(--navy-900);
}

.contact-form-header p {
  margin: 0 0 32px;
  color: var(--slate-400);
  font-size: 0.98rem;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--navy-900);
}

.contact-field span {
  color: var(--navy-900);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(102, 120, 151, 0.16);
  border-radius: 16px;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--navy-900);
  background: #ffffff;
  outline: none;
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  padding: 16px 28px;
}

.contact-feedback {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-feedback.success {
  color: var(--green-700);
}

.contact-feedback.error {
  color: var(--red-700);
}

.contact-form-meta {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-form-meta div {
  padding: 20px 22px;
  background: rgba(5, 13, 28, 0.03);
  border-radius: 18px;
}

.contact-form-meta strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-sub);
  color: var(--navy-900);
}

.contact-form-meta p {
  margin: 0;
  color: var(--slate-400);
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.faq-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 32px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.faq-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 2.6vw, 3.4rem);
  line-height: 1.04;
  margin: 22px 0 24px;
  color: var(--navy-900);
}

.faq-copy p {
  font-family: var(--font-body);
  color: var(--navy-700);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 640px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  border: 1px solid rgba(11, 27, 57, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange-500);
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item[open] summary::after {
  content: "–";
  background: rgba(255, 122, 0, 0.18);
}

.faq-item p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--navy-700);
  line-height: 1.85;
  font-family: var(--font-body);
  font-size: 0.98rem;
}

.faq-cta {
  margin-top: 28px;
}

.faq-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
}

.faq-cta .btn::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.faq-cta .btn:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 80px 0 36px;
  background: #050d1c;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 460px;
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.footer-tagline {
  margin-top: 14px;
  font-family: var(--font-sub);
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 420px;
}

.footer-column h3 {
  margin: 0 0 22px;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-300);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-services a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: var(--orange-300);
}

.footer-contact-item {
  margin-bottom: 20px;
}

.footer-contact-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-item p,
.footer-contact-item a {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
}

.social-link i {
  font-size: 1rem;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  margin-top: 54px;
  padding: 28px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid white;
  /* background: rgba(255, 122, 0, 0.08); */
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-eyebrow span:last-child {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
  color: var(--black);
}
.hero h1 .accent {
  color: var(--orange-500);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 10px;
}

.hero-sub {
  font-family: var(--font-sub);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--black);
  max-width: 520px;
  margin: 0 0 38px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  /* margin-bottom: 52px; */
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-left: -10px;
  display: grid;
  place-items: center;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy-900);
}
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-avatars span:nth-child(1) { background: var(--orange-400); }
.hero-proof-avatars span:nth-child(2) { background: var(--slate-300); }
.hero-proof-avatars span:nth-child(3) { background: var(--white); }
.hero-proof p {
  margin: 0;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--slate-400);
}
.hero-proof strong { color: var(--white); }

/* ---- Carousel: styled browser-mockup previews of the work itself ---- */
.hero-visual {
  position: relative;
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 700 / 450;
  height: auto;
  border-radius: var(--radius-lg);
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}
.carousel-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.browser-card {
  height: 100%;
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  /* border: 1px solid var(--navy-600); */
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
}


.browser-shot {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--navy-800);
}
.browser-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  /* transform: scale(0.95); */
}
.carousel-slide.is-active .browser-shot img {
  animation: kenburns 6.5s var(--ease) forwards;
}
/* @keyframes kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
} */

.shot-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 13, 28, 0.55) 40%, rgba(5, 13, 28, 0.96) 100%);
}
.browser-tag {
  align-self: flex-start;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-400);
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.35);
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.browser-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--pure-white);
  margin: 0;
}
.browser-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--slate-300);
  margin: 0;
  max-width: 92%;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--navy-600);
  padding: 0;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}
.carousel-dots button.is-active {
  background: var(--orange-500);
  width: 26px;
  border-radius: 5px;
}

.hero-visual-glow {
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(circle at 60% 40%, var(--orange-glow), transparent 60%);
  filter: blur(30px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; justify-items: center; }
  .hero-copy { text-align: center; width: 100%; max-width: 720px; margin-inline: auto; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }

  .logo-tagline{
    font-size: 0.4rem;
  }
  .logo-mark{
    font-size: 1.2rem;
  }

  .features-inner {
    gap: 42px;
  }
  .features-copy {
    text-align: center;
    margin-inline: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card figure {
    min-height: 240px;
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-visual {
    order: -1;
  }
  .process-image-placeholder {
    max-width: 320px;
    margin-inline: auto;
  }
  .process-content {
    text-align: center;
  }
  .process-intro {
    margin-bottom: 36px;
  }


  .capabilities-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .capabilities-section::before {
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 0;
  }
  .capabilities-visual {
    order: -1;
  }
  .dashboard-mockup {
    max-width: 320px;
    margin-inline: auto;
    margin-left: 0;
  }
  .capabilities-content {
    text-align: center;
  }
  .capabilities-intro {
    margin-bottom: 36px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-section::before {
    right: -80px;
    width: 320px;
    height: 320px;
  }
  .contact-copy {
    text-align: center;
    margin-inline: auto;
  }
  .contact-highlights {
    grid-template-columns: 1fr;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 32px;
  }
  .contact-form-meta {
    grid-template-columns: 1fr;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-copy {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
  }
  .faq-list {
    gap: 20px;
  }
  .faq-cta {
    text-align: center;
  }

  .process-cta {
    justify-content: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-media {
    grid-template-columns: 1fr;
  }
  .about-media {
    max-width: 720px;
    margin-inline: auto;
  }
  .about-image {
    min-height: 320px;
  }
  .about-content {
    text-align: center;
  }
  .about-values {
    flex-direction: column;
  }

  .btn-sm { padding: 7px 15px; font-size: 0.65rem; }
  /* Hide large background overlay on smaller screens to avoid overflow */
  .overlay-img { display: none; }

  /* Reduce hero height on smaller viewports so content remains visible */
  .hero { min-height: auto; padding-top: 48px; padding-bottom: 56px; }

  /* Make the mobile menu cover the full viewport width and sit below the header */
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    min-width: 100vw;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-950);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s var(--ease);
    z-index: 60;
  }
  .nav-links.is-open { max-height: 420px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(140, 160, 194, 0.08);
  }
  .nav-links a::after { display: none; }

  .nav-toggle { display: block; }
  .btn-ghost.nav-cta { display: none; }
}

@media (max-width: 560px) {
  .about-section { padding: 64px 0 80px; }
  .about-image--large,
  .about-image--small { min-height: 220px; }
  .about-content { text-align: left; }
  .about-values { gap: 16px; }

  .container { padding-inline: 20px; }
  .hero { padding: 48px 0 64px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .btn-ghost.nav-cta { display: none; }

  .contact-section { padding: 64px 0 80px; }
  .contact-inner { gap: 32px; }
  .contact-form-card {
    padding: 24px;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .contact-form-card::before { display: none; }
  .contact-copy h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .contact-highlights { gap: 14px; }
  .contact-form-meta { gap: 14px; }
  .faq-section { padding: 48px 0 60px; }
  .faq-item {
    border-radius: 22px;
  }
  .faq-item summary {
    padding: 20px 22px;
  }
  .faq-item p {
    padding: 0 22px 20px;
  }
  .faq-cta { margin-top: 22px; }

  /* Slightly shorter header on very small screens */
  :root { --nav-height: 64px; }
  .site-header { height: var(--nav-height); }
  .nav-links { top: var(--nav-height); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel-slide { transition: opacity 0.4s linear; transform: none !important; }
  * { animation-duration: 0.001ms !important; }
}