/* ============================================================
   NISHAN WINDING MACHINE — Global Styles
   Brand: indigo navy, orange, yellow, white, charcoal
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #1e2278;
  --navy-deep: #12154d;
  --navy-ink: #0c0e33;
  --indigo: #2b2e8f;
  --orange: #f05a12;
  --orange-deep: #d44508;
  --orange-soft: #ff7a3a;
  --yellow: #ffc400;
  --gold: #ffb300;
  --charcoal: #16181d;
  --ink: #1a1c22;
  --muted: #5d6472;
  --line: #e4e7ee;
  --surface: #f6f4ef;
  --surface-2: #eeece6;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 21, 77, 0.12);
  --shadow-lg: 0 28px 70px rgba(18, 21, 77, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --header: 86px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grad-brand: linear-gradient(135deg, #e03d00 0%, #f05a12 42%, #ffc400 100%);
  --grad-hero: linear-gradient(115deg, rgba(12, 14, 51, 0.92) 0%, rgba(30, 34, 120, 0.72) 55%, rgba(240, 90, 18, 0.28) 100%);
  --page: #ffffff;
  --card: #ffffff;
  --heading: #12154d;
  --text: #1a1c22;
  --header-bg: rgba(255, 255, 255, 0.92);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #0e1118;
  --card: #171b24;
  --heading: #f3efe6;
  --text: #ece8e0;
  --header-bg: rgba(14, 17, 24, 0.94);
  --ink: #ece8e0;
  --muted: #9aa1b0;
  --line: rgba(243, 239, 230, 0.12);
  --surface: #141821;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.48);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--page);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 40px), 1320px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad-brand);
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Outfit", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.display {
  font-size: clamp(2.4rem, 5.4vw, 4.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 700;
}

h3 {
  font-size: 1.28rem;
  font-weight: 700;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--surface {
  background: var(--surface);
}

.section--dark {
  background: var(--navy-ink);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.section-head h2 {
  margin: 12px 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(240, 90, 18, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(240, 90, 18, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.topbar {
  background: var(--navy-ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  padding: 9px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.28s;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--grad-brand);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(18, 21, 77, 0.08);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  color: var(--heading);
  border-radius: 999px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--heading);
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

html[data-theme="dark"] .btn-outline {
  color: var(--heading);
  border-color: rgba(243, 239, 230, 0.35);
}

html[data-theme="dark"] .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

html[data-theme="dark"] .form-success {
  background: #16351f;
  color: #8fe0a8;
}

html[data-theme="dark"] .tl-item::before {
  background: var(--card);
}

html[data-theme="dark"] .socials--ink a {
  border-color: rgba(243, 239, 230, 0.2);
  color: var(--heading);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--navy);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: 0.25s var(--ease);
}

.menu-toggle span {
  top: 22px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 128px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: 8%;
  border-radius: 50%;
  background: var(--grad-brand);
  opacity: 0.22;
  filter: blur(8px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 110px;
  max-width: 760px;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  color: var(--white);
  margin: 16px 0 20px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dcc6f;
  box-shadow: 0 0 0 6px rgba(61, 204, 111, 0.2);
}

.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat-card {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 2.1rem;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-ink);
}

.page-hero .hero-content {
  padding: 120px 0 70px;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 46%;
  height: 46%;
  border-radius: 24px;
  background: var(--grad-brand);
  z-index: -1;
}

.media-chip {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: var(--card);
  color: var(--text);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}

.media-chip strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.checklist {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
}

.checklist li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--grad-brand) center / 10px 10px no-repeat;
  box-shadow: inset 0 0 0 2px rgba(240, 90, 18, 0.2);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 32px rgba(18, 21, 77, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.28s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.icon-orb {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: var(--white);
  margin-bottom: 18px;
  animation: iconPulse 4s ease-in-out infinite;
}

.icon-orb svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card .thumb {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .thumb img {
  transform: scale(1.08);
}

.service-card .body {
  padding: 24px;
}

.service-card .cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.service-card .body .btn {
  margin-top: 18px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.why-card h3 {
  color: var(--white);
}

.why-card p {
  color: rgba(255, 255, 255, 0.72);
}

.num {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: var(--card);
  color: var(--text);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(18, 21, 77, 0.06);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.process-step h3 {
  color: var(--heading);
}

.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 8px;
}

.section--dark .process-step h3 {
  color: var(--heading);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.industry {
  background: var(--card);
  border-radius: 16px;
  padding: 22px 12px;
  text-align: center;
  border: 1px solid var(--line);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--heading);
  transition: 0.25s var(--ease);
}

.industry:hover {
  border-color: transparent;
  color: var(--white);
  background: var(--grad-brand);
  transform: translateY(-4px);
}

.quote-card {
  padding: 32px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.quote-card p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 22px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong {
  display: block;
  font-family: "Outfit", sans-serif;
}

.person span {
  color: var(--muted);
  font-size: 0.86rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 72px 56px;
  background: var(--navy-ink);
  color: var(--white);
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: var(--grad-brand);
  opacity: 0.35;
}

.cta-banner h2,
.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
  max-width: 520px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.info-tile {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-tile svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-tile strong {
  display: block;
  font-family: "Outfit", sans-serif;
}

.site-footer {
  background: var(--navy-ink);
  color: rgba(255, 255, 255, 0.76);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-logo {
  background: var(--white);
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 52px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.site-footer a:hover {
  color: var(--yellow);
}

.site-footer li + li {
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.25s;
}

.socials a:hover {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--white);
}

.socials--ink a {
  border-color: rgba(30, 34, 120, 0.22);
  color: var(--navy);
}

.footer-contact {
  margin-top: 12px;
}

.lead-light {
  color: rgba(255, 255, 255, 0.75);
}

.actions-center {
  justify-content: center;
  margin-top: 36px;
}

.stats-split {
  align-items: center;
  gap: 48px;
}

.stat-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.split-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
}

.form {
  background: var(--card);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--heading);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--card);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(240, 90, 18, 0.12);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #d92d20;
}

.field .error-text {
  display: none;
  color: #d92d20;
  font-size: 0.8rem;
  margin-top: 6px;
}

.field.error .error-text {
  display: block;
}

.form-success {
  display: none;
  background: #eaf8ef;
  color: #0f7a38;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--heading);
}

.faq-item button span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open button span {
  transform: rotate(45deg);
  background: var(--grad-brand);
  color: var(--white);
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s;
  color: var(--muted);
  padding: 0 20px;
}

.faq-item.open .answer {
  max-height: 240px;
  padding: 0 20px 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--heading);
  transition: 0.2s;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-card.is-hidden {
  display: none;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-brand);
}

.tl-item {
  position: relative;
  padding: 0 0 36px 64px;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--orange);
}

.tl-item strong {
  color: var(--orange);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.value-card {
  min-height: 220px;
}

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.map-wrap iframe,
.map-fallback {
  width: 100%;
  height: 360px;
  border: 0;
}

.hours {
  display: grid;
  gap: 8px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
}

.img-zoom {
  overflow: hidden;
  border-radius: 24px;
}

.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.img-zoom:hover img {
  transform: scale(1.07);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.25s var(--ease);
  z-index: 80;
  box-shadow: var(--shadow);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-top:hover {
  background: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.reveal.in {
  animation: fadeUp 0.8s var(--ease) forwards;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
}

.reveal-left.in {
  animation: fadeRight 0.85s var(--ease) forwards;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
}

.reveal-right.in {
  animation: fadeLeft 0.85s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.hero-content .hero-badge,
.hero-content .eyebrow,
.hero-content h1,
.hero-content .lead,
.hero-content .btn-row {
  opacity: 0;
  animation: fadeUp 0.85s var(--ease) forwards;
}

.hero-content .hero-badge { animation-delay: 0.1s; }
.hero-content .eyebrow { animation-delay: 0.2s; }
.hero-content h1 { animation-delay: 0.32s; }
.hero-content .lead { animation-delay: 0.46s; }
.hero-content .btn-row { animation-delay: 0.58s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

@keyframes iconPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.nav-drawer-backdrop {
  display: none;
}

@media (max-width: 1100px) {
  .grid-4,
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .media-frame img {
    height: 420px;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 86px 16px auto;
    background: var(--card);
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s var(--ease);
    z-index: 120;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(12, 14, 51, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
    z-index: 90;
  }

  .nav-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .grid-3,
  .grid-2,
  .feature-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .form {
    padding: 22px;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero-stats-grid,
  .grid-4,
  .industry-grid,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .logo img {
    height: 48px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .media-frame img,
  .split-photo,
  .img-zoom img {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .hero-content .hero-badge,
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content .lead,
  .hero-content .btn-row {
    opacity: 1;
    transform: none;
  }
}
