@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,500;6..72,600;6..72,700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --gold: #bf9f64;
  --gold-hover: #a8884f;
  --gold-deep: #8f7340;
  --gold-soft: #f4ead4;
  --gold-wash: rgba(191, 159, 100, 0.12);
  --navy: #122033;
  --navy-deep: #0c1624;
  --navy-mid: #1b2d44;
  --ink: #1c2733;
  --text: #33404d;
  --muted: #5e6b78;
  --soft: #f7f4ee;
  --soft-blue: #f3f6f8;
  --line: #e4ddd0;
  --white: #ffffff;
  --danger: #9a3d36;
  --ok: #2f6b4f;
  --container: 1180px;
  --header-h: 92px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 44px rgba(18, 32, 51, 0.08);
  --shadow-hover: 0 22px 40px rgba(18, 32, 51, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: Outfit, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  background: var(--soft-blue);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-light {
  color: var(--gold-soft);
}

.eyebrow-light::before {
  background: var(--gold);
}

.lead {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.section-intro > p:last-child {
  margin-top: 16px;
  color: var(--muted);
}

.section-intro.centered .lead {
  margin-inline: auto;
}

h1,
h2,
.display {
  color: var(--navy);
  font-family: Newsreader, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.15rem, 4.8vw, 4.05rem);
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
}

h3 {
  color: var(--navy);
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #b3904a;
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(143, 115, 64, 0.28);
}

.button-primary:hover {
  background: var(--gold-hover);
}

.button-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.button-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
}

.text-link:hover {
  color: var(--gold-deep);
}

.text-link span,
.learn-more span {
  color: var(--gold);
  transition: transform 0.2s ease;
}

.text-link:hover span,
.learn-more:hover span {
  transform: translateX(3px);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--gold-wash);
  color: var(--gold-deep);
  flex-shrink: 0;
}

.icon svg {
  width: 20px;
  height: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

body.home .site-header {
  background: rgba(247, 244, 238, 0.72);
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(18, 32, 51, 0.05);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-brand img {
  width: 64px;
  height: 64px;
}

.brand strong {
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-deep);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--gold-hover);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.home-hero {
  position: relative;
  padding: 36px 0 88px;
  background:
    radial-gradient(ellipse at 88% 12%, rgba(191, 159, 100, 0.16), transparent 42%),
    linear-gradient(180deg, #f7f4ee 0%, #fff 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.hero-copy h1 span {
  color: var(--gold-deep);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--soft-blue);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(18, 32, 51, 0.28) 100%);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: min(500px, 58vh);
  object-fit: cover;
  object-position: center 32%;
}

.hero-accent {
  position: absolute;
  right: -14px;
  bottom: -14px;
  z-index: -1;
  width: 72%;
  height: 72%;
  border: 1px solid var(--gold);
  border-radius: 24px;
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.float-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.float-card span {
  color: var(--muted);
  font-size: 0.74rem;
}

.float-1 { left: -28px; top: 42px; }
.float-2 { right: -18px; top: 92px; }
.float-3 { left: -10px; bottom: 92px; }
.float-4 { right: 8px; bottom: 28px; }

.page-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(191, 159, 100, 0.14), transparent 40%),
    linear-gradient(180deg, #f7f4ee 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
}

.trust-strip {
  padding: 0 0 20px;
  margin-top: -36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 10px 12px;
}

.trust-item h3 {
  margin: 14px 0 8px;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-layout,
.contact-layout,
.split-plain {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.media-frame {
  position: relative;
}

.media-frame img,
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.media-frame::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 18px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 22px;
  z-index: -1;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-top: 28px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.why-list i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.tech-card,
.industry-card,
.diff-card,
.stat-card,
.support-card {
  min-width: 0;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.service-card.featured h3,
.service-card.featured .learn-more {
  color: var(--white);
}

.service-card.featured p {
  color: #c5ced8;
}

.service-card.featured .card-index,
.service-card.featured .icon {
  color: var(--gold);
  background: rgba(191, 159, 100, 0.14);
}

.stat-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.stat-facts .stat {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.stat-facts .num {
  color: var(--navy);
  font-family: Newsreader, Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.stat-facts .label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.claim-banner {
  margin-bottom: 32px;
  padding: 36px 32px;
  border: 1px solid rgba(191, 159, 100, 0.24);
  border-radius: 20px;
  background: var(--navy);
}

.claim-banner h3 {
  color: var(--white);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.claim-banner p {
  max-width: 720px;
  margin-top: 14px;
  color: #c5ced8;
}

.service-card:hover,
.tech-card:hover,
.industry-card:hover,
.diff-card:hover,
.support-card:hover {
  transform: translateY(-4px);
  border-color: #d8c9a6;
  box-shadow: var(--shadow-hover);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.card-index {
  color: var(--gold-deep);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.service-card h3,
.tech-card h3,
.diff-card h3,
.industry-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.tech-card p,
.diff-card p,
.industry-card p,
.quality-col p,
.process-step p,
.stat-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.difference {
  background: var(--navy-deep);
  color: #d7dee6;
}

.difference-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.difference h2,
.quality h2,
.cta-band h2,
.dark-copy h2 {
  color: var(--white);
}

.difference .lead,
.quality .lead,
.cta-band p,
.dark-copy p {
  color: #c5ced8;
}

.statement {
  margin-top: 28px;
  color: var(--white);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
}

.block-title {
  margin-top: 28px;
}

.tech-card h3,
.industry-card h3 {
  margin-top: 18px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.diff-card {
  background: var(--navy);
  border-color: rgba(191, 159, 100, 0.18);
}

.diff-card h3 {
  color: var(--white);
}

.diff-card p {
  color: #b7c2ce;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), #e4ddd0);
}

.process-step {
  position: relative;
  padding-right: 28px;
}

.process-num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 8px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quality {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(191, 159, 100, 0.16), transparent 36%),
    var(--navy);
  color: #d7dee6;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.quality-col {
  padding-top: 22px;
  border-top: 2px solid var(--gold);
}

.quality-col h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--soft);
  border-color: transparent;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industry-card {
  min-height: 220px;
}

.cta-band {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(191, 159, 100, 0.16), rgba(191, 159, 100, 0.08)),
    var(--navy-deep);
}

.cta-content {
  max-width: 760px;
}

.cta-content .button-row {
  margin-top: 28px;
}

.contact-layout {
  align-items: start;
}

.contact-detail {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-detail strong {
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a:hover {
  color: var(--gold-deep);
}

.contact-detail address,
.footer-address {
  font-style: normal;
  line-height: 1.5;
}

.contact-detail strong + address {
  color: var(--text);
}

.contact-detail strong:not(:first-child) {
  margin-top: 14px;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fcfbf8;
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-wash);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.78rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--ok);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  padding-top: 64px;
  background: var(--navy-deep);
  color: #c9d2db;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 42px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  max-width: 320px;
  margin-top: 14px;
  font-size: 0.92rem;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #93a0ad;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a:hover {
  color: var(--gold-soft);
}

.narrow-content {
  max-width: 820px;
}

.principle-list,
.detail-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.principle-list > div,
.detail-block {
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.principle-list strong,
.detail-block h3 {
  display: block;
  margin-bottom: 6px;
}

.content-columns,
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.service-detail {
  display: grid;
  gap: 18px;
}

.service-detail h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.service-detail article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service-detail article:last-child {
  border-bottom: 1px solid var(--line);
}

.service-spotlight {
  padding: 40px 0 80px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.spotlight-copy {
  padding: 36px 40px;
  border-radius: 24px;
  background: var(--navy);
  color: #d7dee6;
}

.spotlight-copy h2,
.spotlight-copy .eyebrow {
  color: var(--white);
}

.spotlight-copy .eyebrow::before {
  background: var(--gold);
}

.spotlight-copy .lead,
.spotlight-copy p {
  color: #c5ced8;
}

.spotlight-copy .button {
  margin-top: 24px;
}

.service-stack {
  display: grid;
  gap: 22px;
}

.service-band {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.service-band:nth-child(even) {
  background: var(--soft);
}

.service-band-mark {
  color: var(--gold);
  font-family: Newsreader, Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
}

.service-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.service-band p {
  max-width: 620px;
  color: var(--muted);
}

.service-band .icon {
  width: 56px;
  height: 56px;
}

.service-band .icon svg {
  width: 24px;
  height: 24px;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  list-style: disc;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1200px) {
  .hero-frame img {
    height: 420px;
  }

  .media-frame img,
  .about-image img {
    height: 480px;
  }

  .float-1 { left: -8px; }
  .float-2 { right: 0; }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-layout,
  .contact-layout,
  .split-plain,
  .difference-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-frame img {
    height: 340px;
  }

  .media-frame img,
  .about-image img {
    height: 420px;
  }

  .hero-accent {
    display: none;
  }

  .float-card {
    position: static;
    min-width: 0;
  }

  .float-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .trust-grid,
  .stats-grid,
  .quality-grid,
  .industries-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .process-track::before {
    display: none;
  }

  .tech-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-band {
    grid-template-columns: 80px 1fr;
  }

  .service-band .icon {
    display: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(var(--header-h) + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 10px;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section,
  .cta-band {
    padding: 72px 0;
  }

  .home-hero {
    padding: 20px 0 56px;
  }

  .page-hero {
    padding: 48px 0 44px;
  }

  .trust-strip {
    margin-top: 8px;
  }

  .trust-grid,
  .why-list,
  .services-grid,
  .diff-grid,
  .process-track,
  .tech-grid,
  .quality-grid,
  .stats-grid,
  .industries-grid,
  .form-row,
  .content-columns,
  .value-grid,
  .footer-grid,
  .float-board {
    grid-template-columns: 1fr;
  }

  .hero-frame img {
    height: 260px;
  }

  .media-frame img,
  .about-image img {
    height: 300px;
  }

  .service-detail article {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .spotlight-grid,
  .service-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .spotlight-copy,
  .service-band {
    padding: 26px 22px;
  }

  .service-band-mark {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .stat-facts,
  .claim-banner {
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

  .contact-form,
  .trust-grid {
    padding: 18px;
  }

  .service-card,
  .tech-card,
  .diff-card,
  .industry-card {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .service-card,
  .tech-card,
  .diff-card,
  .industry-card,
  .support-card,
  .text-link span,
  .learn-more span,
  .menu-toggle span {
    transition: none;
  }

  .button:hover,
  .service-card:hover,
  .tech-card:hover,
  .diff-card:hover,
  .industry-card:hover,
  .support-card:hover {
    transform: none;
  }
}
