:root {
  --color-sail-white: #efedec;
  --color-wind-blue: #00527f;
  --color-deep-sea: #00435a;
  --color-gold: #ae874d;
  --color-text: #183244;
  --color-text-soft: #536a78;
  --color-white: #ffffff;
  --color-border: rgba(0, 67, 90, 0.12);
  --color-border-light: rgba(255, 255, 255, 0.16);
  --bg-light: #f7f5f2;
  --bg-light-alt: #f2efeb;
  --bg-dark: #0d3649;
  --bg-dark-2: #0a2a39;
  --shadow-soft: 0 16px 40px rgba(0, 43, 64, 0.08);
  --shadow-card: 0 18px 50px rgba(0, 43, 64, 0.1);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1240px;
  --container-narrow: 860px;
  --transition: 280ms ease;
  --header-height: 84px;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-accent: "Playfair Display", "Times New Roman", serif;
  --logo-zh-size: 1.02rem;
  --hero-copy-max: 720px;
  --hero-title-font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  --hero-title-letter-spacing: 0.01em;
  --hero-title-max: 700px;
  --hero-description-max: 640px;
  --vision-tagline-zh-font: "Playfair Display", "Times New Roman", serif;
  --vision-tagline-zh-size: clamp(1.05rem, 1.8vw, 1.35rem);
  --vision-tagline-zh-letter-spacing: 0.08em;
  --vision-tagline-zh-transform: uppercase;
  --hero-copy-max-1100: 620px;
  --hero-title-max-820: 560px;
  --hero-title-size-820: clamp(2.8rem, 9vw, 4.5rem);
  --hero-description-max-820: 540px;
  --hero-title-size-560: clamp(2.2rem, 11vw, 3.8rem);
  --hero-title-line-560: 1.08;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-sail-white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

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

.text-center {
  text-align: center;
}

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

.section-light-alt {
  background: var(--bg-light-alt);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  color: rgba(255, 255, 255, 0.92);
}

section {
  position: relative;
  padding: 128px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-description {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--color-text-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.section-description-centered {
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-wind-blue);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(0, 82, 127, 0.18);
}

.btn-primary:hover {
  background: var(--color-deep-sea);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.section-light .btn-secondary,
.section-light-alt .btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-wind-blue);
  border-color: rgba(0, 82, 127, 0.14);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-deep-sea);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(239, 237, 236, 0.04);
  backdrop-filter: blur(0px);
  transition:
    background 280ms ease,
    backdrop-filter 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(239, 237, 236, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(0, 67, 90, 0.08);
  box-shadow: 0 8px 24px rgba(0, 43, 64, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-logo-image {
  height: 78px;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo-zh {
  font-size: var(--logo-zh-size);
  font-weight: 700;
  color: var(--color-deep-sea);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.site-logo-en {
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  color: var(--color-gold);
  line-height: 1.2;
}

.site-nav {
  justify-self: end;
  margin-right: 18px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  font-size: 1rem;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-list a:hover {
  color: var(--color-deep-sea);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 67, 90, 0.14);
  background: rgba(255, 255, 255, 0.48);
  color: var(--color-deep-sea);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 280ms ease;
}

.lang-switch:hover {
  border-color: var(--color-gold);
  color: var(--color-deep-sea);
  background: rgba(255, 255, 255, 0.72);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(0, 82, 127, 0.92);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 82, 127, 0.16);
}

.header-cta:hover {
  background: #00435a;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--color-deep-sea);
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle::after {
  top: 28px;
}

.nav-toggle.is-active span {
  opacity: 0;
}

.nav-toggle.is-active::before {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-active::after {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: #0d3649;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-overlay,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02);
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(
      to right,
      rgba(239, 237, 236, 0.82) 0%,
      rgba(239, 237, 236, 0.58) 22%,
      rgba(239, 237, 236, 0.24) 42%,
      rgba(8, 27, 38, 0.08) 72%,
      rgba(8, 27, 38, 0.2) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(0, 0, 0, 0.06) 52%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

.hero-gradient {
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.12) 0 120px, transparent 121px),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.06) 0 100px, transparent 101px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: var(--hero-copy-max);
  padding: 148px 0 96px;
}

.hero-eyebrow {
  margin: 0 0 22px;
  color: #ae874d;
  font-family: var(--font-accent);
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

.hero-title {
  margin: 0;
  color: #003a52;
  font-family: var(--font-heading);
  font-size: var(--hero-title-font-size);
  line-height: 1.04;
  letter-spacing: var(--hero-title-letter-spacing);
  max-width: var(--hero-title-max);
}

.hero-description {
  margin: 28px 0 0;
  max-width: var(--hero-description-max);
  color: rgba(24, 50, 68, 0.9);
  font-size: 1.08rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-actions .btn-primary {
  background: #00527f;
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(0, 82, 127, 0.2);
}

.hero-actions .btn-primary:hover {
  background: #00435a;
  box-shadow: 0 18px 36px rgba(0, 67, 90, 0.24);
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.26);
  color: #00435a;
  border: 1px solid rgba(0, 67, 90, 0.14);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
  border-color: #ae874d;
  color: #00435a;
  background: rgba(255, 255, 255, 0.4);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 6;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.88));
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

.vision-tagline-en {
  margin: 18px 0 0;
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: italic;
}

.vision-tagline-zh {
  margin: 10px 0 0;
  font-family: var(--vision-tagline-zh-font);
  font-size: var(--vision-tagline-zh-size);
  color: var(--color-deep-sea);
  letter-spacing: var(--vision-tagline-zh-letter-spacing);
  text-transform: var(--vision-tagline-zh-transform);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.split-intro {
  position: sticky;
  top: 120px;
}

.framework-steps {
  display: grid;
  gap: 22px;
}

.framework-item {
  padding: 28px 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.framework-number {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.framework-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-deep-sea);
}

.framework-text {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 30px 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(174, 135, 77, 0.3);
}

.value-en {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.value-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.38rem;
  color: var(--color-deep-sea);
}

.value-text {
  margin: 0;
  color: var(--color-text-soft);
}

.services-section .eyebrow,
.services-section .section-title {
  color: var(--color-white);
}

.services-section .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.services-section .section-description {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card-inner {
  height: 100%;
  padding: 34px 28px 30px;
  border: 1px solid var(--color-border-light);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.service-card-inner:hover {
  transform: translateY(-4px);
  border-color: rgba(174, 135, 77, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.service-tag {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-white);
}

.service-target,
.service-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-target {
  font-size: 0.96rem;
  line-height: 1.85;
}

.service-text {
  margin-top: 16px;
  line-height: 1.9;
}

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

.service-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 1px;
  background: var(--color-gold);
}

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

.why-card {
  padding: 30px 28px;
  border-top: 1px solid rgba(174, 135, 77, 0.42);
  background: rgba(255, 255, 255, 0.38);
  border-radius: 0 0 22px 22px;
}

.why-number {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.why-title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.42rem;
  color: var(--color-deep-sea);
}

.why-text {
  margin: 0;
  color: var(--color-text-soft);
}

.about-layout {
  align-items: center;
}

.about-content {
  max-width: 720px;
}

.about-text {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1.05rem;
  line-height: 2;
}

.about-actions {
  margin-top: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-section .eyebrow,
.contact-section .section-title {
  color: var(--color-white);
}

.contact-section .section-description {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form-wrap {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(174, 135, 77, 0.8);
  box-shadow: 0 0 0 4px rgba(174, 135, 77, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-actions {
  padding-top: 6px;
}

.site-footer {
  background: #082431;
  color: rgba(255, 255, 255, 0.84);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 42px;
}

.footer-logo {
  height: 74px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-name {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
}

.footer-brand-tagline {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 1.06rem;
  font-style: italic;
}

.footer-brand-text,
.footer-contact p,
.footer-nav a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-link {
  color: rgba(255, 255, 255, 0.72);
  transition: color 280ms ease;
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
}

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

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

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
}

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

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

@media (max-width: 1100px) {
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-intro {
    position: static;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .why-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: var(--hero-copy-max-1100);
  }
}

@media (max-width: 980px) {
  .site-logo-text {
    display: none;
  }

  .site-logo-image {
    height: 68px;
  }
}

@media (max-width: 820px) {
  section {
    padding: 96px 0;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .site-nav,
  .header-cta,
  .lang-switch {
    display: none;
  }

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

  .mobile-nav {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(239, 237, 236, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 67, 90, 0.08);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 99;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 16px 24px 22px;
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    display: block;
    padding: 10px 0;
    color: var(--color-deep-sea);
    font-weight: 600;
  }

  .site-logo-image {
    height: 64px;
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero-copy {
    max-width: none;
    padding: 132px 0 84px;
  }

  .hero-title {
    max-width: var(--hero-title-max-820);
    font-size: var(--hero-title-size-820);
  }

  .hero-description {
    max-width: var(--hero-description-max-820);
    font-size: 1rem;
  }

  .hero-eyebrow {
    font-size: 1.14rem;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to right,
        rgba(239, 237, 236, 0.84) 0%,
        rgba(239, 237, 236, 0.62) 44%,
        rgba(8, 27, 38, 0.14) 100%
      ),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.16));
  }

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

  .contact-form-wrap {
    padding: 22px;
  }

  .footer-inner {
    padding-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .site-logo-image {
    height: 54px;
  }

  .hero-section {
    min-height: 88vh;
  }

  .hero-copy {
    padding: 116px 0 76px;
  }

  .hero-eyebrow {
    font-size: 1.08rem;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: var(--hero-title-size-560);
    line-height: var(--hero-title-line-560);
    max-width: 100%;
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.88;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(239, 237, 236, 0.82) 0%,
        rgba(239, 237, 236, 0.58) 42%,
        rgba(8, 27, 38, 0.24) 100%
      ),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
  }

  .hero-scroll {
    display: none;
  }

  .framework-item,
  .value-card,
  .service-card-inner,
  .contact-form-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description,
  .about-text,
  .framework-text,
  .service-text,
  .why-text {
    font-size: 0.98rem;
  }

  .footer-logo {
    height: 62px;
  }
}
