:root {
  --navy-950: #08162b;
  --navy-900: #0b1f3a;
  --navy-800: #16345b;
  --navy-700: #214875;
  --teal-600: #1c8f82;
  --teal-500: #2aa594;
  --teal-100: #ddf6f1;
  --coral-400: #ef7f73;
  --gold-300: #dbc17a;
  --ink-900: #132235;
  --ink-700: #486075;
  --ink-500: #6f8294;
  --surface: #f4f7f8;
  --surface-soft: #eef2f3;
  --white: #ffffff;
  --border: rgba(11, 31, 58, 0.11);
  --shadow-lg: 0 24px 70px rgba(8, 22, 43, 0.12);
  --shadow-md: 0 16px 36px rgba(11, 31, 58, 0.08);
  --shadow-soft: 0 10px 24px rgba(11, 31, 58, 0.06);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top right, rgba(42, 165, 148, 0.08), transparent 24rem),
    linear-gradient(180deg, #fbfcfc 0%, #f7f9fa 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  clip: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 249, 250, 0.76);
  border-bottom: 1px solid rgba(11, 31, 58, 0.07);
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 249, 250, 0.92);
  border-color: rgba(11, 31, 58, 0.1);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.06);
}

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

.brand img {
  width: clamp(132px, 14vw, 180px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.site-nav a,
.lang-btn {
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--navy-900);
}

.site-nav a.is-current {
  color: var(--navy-900);
  position: relative;
}

.site-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-600), var(--navy-800));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.language-switcher {
  display: inline-flex;
  padding: 0.32rem;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.lang-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-btn.is-active {
  background: var(--navy-900);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(2) {
  transform: translateY(-4px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.18) 50%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(11, 31, 58, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy-900);
  border-color: rgba(11, 31, 58, 0.16);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(11, 31, 58, 0.28);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
}

.btn-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 3.8rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 2.4rem;
  background:
    radial-gradient(circle at top right, rgba(42, 165, 148, 0.09), transparent 18rem),
    linear-gradient(180deg, rgba(11, 31, 58, 0.03), transparent);
}

.page-hero-inner {
  display: grid;
  gap: 0.9rem;
}

.page-hero-lead {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-700);
  font-size: 1.04rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(42, 165, 148, 0.14), transparent 18rem),
    radial-gradient(circle at 88% 20%, rgba(239, 127, 115, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(11, 31, 58, 0.03), transparent 48%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
  animation: float 10s ease-in-out infinite;
}

.hero-orb-a {
  width: 18rem;
  height: 18rem;
  top: 7%;
  right: -6rem;
  background: radial-gradient(circle, rgba(28, 143, 130, 0.18), transparent 70%);
}

.hero-orb-b {
  width: 14rem;
  height: 14rem;
  bottom: 8%;
  left: -5rem;
  background: radial-gradient(circle, rgba(33, 72, 117, 0.12), transparent 72%);
  animation-delay: -3s;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.intro-kicker,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--teal-600);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--navy-900);
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 7vw, 6rem);
  max-width: 10.5ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  max-width: 16ch;
  text-wrap: balance;
}

.hero-lead,
.section-intro,
.content-stack p,
.service-card p,
.feature-card p,
.process-card p,
.testimonial-card p,
.contact-copy p,
.footer-grid p {
  color: var(--ink-700);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 50ch;
  margin: 1rem 0 0;
}

.hero-actions,
.cta-banner-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.trust-strip span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(120deg, rgba(42, 165, 148, 0.08), rgba(239, 127, 115, 0.06));
  box-shadow: var(--shadow-lg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 165, 148, 0.12), transparent 68%);
}

.hero-card-primary {
  padding: 2.25rem;
}

.project-image,
.service-card-media {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-project-image {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.4rem;
  background: #eef6f4;
}

.section-project-image {
  aspect-ratio: 16 / 11;
  margin-bottom: 1.25rem;
  background: #eef6f4;
}

.section-project-image,
.hero-project-image {
  object-position: center;
}

.hero-card-primary h2 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4vw, 2.55rem);
  max-width: 12ch;
}

.hero-card-primary p {
  margin: 0.9rem 0 0;
  max-width: 40ch;
}

.hero-mini-grid {
  display: grid;
  gap: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.hero-tags span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.05);
  border: 1px solid rgba(11, 31, 58, 0.08);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--navy-900);
}

.hero-stat {
  padding: 1.5rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy-900);
}

.hero-stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink-700);
}

.section {
  padding: 5.8rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(238, 242, 243, 0.72), rgba(244, 247, 248, 0.9));
}

.section-deep {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(42, 165, 148, 0.16), transparent 18rem),
    linear-gradient(160deg, #0a1d34 0%, #0e2747 60%, #12345c 100%);
}

.section-deep h2,
.section-heading-light p,
.section-deep .process-card p,
.section-deep .process-card h3,
.section-deep .process-card span {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.3rem;
}

.section-heading-centered {
  text-align: center;
  justify-items: center;
}

.section-heading .section-intro {
  max-width: 60ch;
}

.split-preview {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--navy-900);
  font-weight: 800;
}

.text-link::after {
  content: "›";
  font-size: 1.1em;
}

.intro-band {
  padding-top: 1.2rem;
}

.intro-grid,
.service-grid,
.feature-grid,
.industry-grid,
.process-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.intro-grid article,
.service-card,
.feature-card,
.process-card,
.testimonial-card,
.contact-panel,
.contact-list a,
.contact-list div {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.intro-grid article {
  padding: 1.55rem;
}

.intro-grid p {
  margin: 0.7rem 0 0;
  color: var(--ink-700);
}

.two-column {
  display: grid;
  gap: 2.8rem;
}

.content-stack {
  display: grid;
  gap: 0.95rem;
}

.content-stack p {
  margin: 0;
  font-size: 1rem;
  max-width: 58ch;
}

.service-card,
.feature-card,
.process-card,
.testimonial-card {
  padding: 1.75rem;
}

.service-card h3,
.feature-card h3,
.process-card h3,
.testimonial-card strong,
.site-footer h3 {
  font-size: 1.2rem;
  color: var(--navy-900);
}

.service-card p,
.feature-card p,
.process-card p,
.testimonial-card p {
  margin: 0.7rem 0 0;
}

.service-card {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(42, 165, 148, 0.05), transparent 52%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-media {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.15rem;
  background: #eef6f4;
}

.service-card-focused {
  padding-top: 2rem;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(42, 165, 148, 0.04), transparent 45%, rgba(11, 31, 58, 0.03));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-index {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal-600);
}

.process-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.process-card h3 {
  margin-top: 1rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.pill-grid span {
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.product-grid {
  display: grid;
  gap: 1rem;
}

.product-group {
  padding: 1.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at top right, rgba(42, 165, 148, 0.08), transparent 48%);
  box-shadow: var(--shadow-md);
}

.product-group h3 {
  font-size: 1.12rem;
}

.product-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.product-group-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
}

.product-media-pair .product-group-media {
  aspect-ratio: 3 / 4;
  margin-bottom: 0;
}

.product-group ul {
  display: grid;
  gap: 0.62rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-group li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--ink-700);
  line-height: 1.45;
}

.product-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal-600);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  min-height: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
  background:
    linear-gradient(160deg, rgba(8, 22, 43, 0.96), rgba(22, 52, 91, 0.84)),
    radial-gradient(circle at top right, rgba(42, 165, 148, 0.26), transparent 42%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(transparent 52%, rgba(255, 255, 255, 0.08) 100%);
  z-index: 1;
}

.gallery-card::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -3rem;
  top: -3rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  z-index: 1;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.gallery-card.has-image {
  background: var(--navy-900);
}

.gallery-card.has-image::before {
  background:
    linear-gradient(180deg, rgba(8, 22, 43, 0.06), rgba(8, 22, 43, 0.42)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 52%);
}

.gallery-card em {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-card span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 1.14rem;
  max-width: 14ch;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.8rem;
  right: 1.15rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: rgba(11, 31, 58, 0.08);
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
}

.compact-grid .service-card {
  min-height: 100%;
}

.gallery-preview .gallery-card {
  min-height: 230px;
}

.gallery-grid-full .gallery-card {
  min-height: 340px;
}

.gallery-card-wide {
  grid-column: 1 / -1;
}

.industry-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.1rem;
}

.one-testimonial {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.cta-banner {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.98), rgba(22, 52, 91, 0.95)),
    linear-gradient(90deg, rgba(42, 165, 148, 0.12), transparent);
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  max-width: 15ch;
}

.cta-banner-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.6rem 0 1.3rem;
}

.contact-quick-card {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-quick-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.contact-quick-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.08rem;
  color: var(--navy-900);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.contact-list a,
.contact-list div {
  padding: 1rem 1.15rem;
}

.contact-list span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-600);
}

.contact-list strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--navy-900);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.91)),
    radial-gradient(circle at top right, rgba(42, 165, 148, 0.08), transparent 42%);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.55rem;
}

.form-grid span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

input,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 58, 0.13);
  background: rgba(244, 247, 248, 0.88);
  padding: 0.95rem 1rem;
  color: var(--ink-900);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

input:focus,
textarea:focus,
.site-nav a:focus-visible,
.lang-btn:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible {
  outline: none;
  border-color: rgba(42, 165, 148, 0.65);
  box-shadow: 0 0 0 4px rgba(42, 165, 148, 0.16);
}

.form-note,
.form-feedback {
  margin: 0;
  color: var(--ink-700);
}

.form-feedback {
  min-height: 1.5rem;
  font-weight: 600;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #f0f4f5;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--ink-700);
}

.contact-list strong,
.footer-links a,
.footer-links span,
.product-group li {
  overflow-wrap: anywhere;
}

.footer-bottom {
  padding-top: 1.8rem;
  margin-top: 1.8rem;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-500);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

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

.service-card:hover,
.service-card:focus-within,
.feature-card:hover,
.testimonial-card:hover,
.hero-card:hover,
.gallery-card:hover,
.contact-quick-card:hover,
.contact-list a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(11, 31, 58, 0.12);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@media (min-width: 700px) {
  .hero-grid,
  .cta-banner-inner,
  .contact-grid,
  .two-column,
  .split-preview {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .intro-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-mini-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .feature-grid,
  .industry-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .form-grid .full-width {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 6.3rem;
    padding-bottom: 4.5rem;
  }

  .service-grid,
  .feature-grid,
  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .contact-quick-actions {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(28, 143, 130, 0.08);
  }
}

@media (max-width: 699px) {
  :root {
    --header-height: 84px;
  }

  .section {
    padding: 4.4rem 0;
  }

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

  .header-actions {
    justify-content: flex-end;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    order: -1;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  h2 {
    max-width: none;
  }

  .hero-section {
    padding-top: 4.7rem;
    padding-bottom: 3rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-card-primary,
  .service-card,
  .feature-card,
  .process-card,
  .testimonial-card,
  .contact-panel {
    padding: 1.3rem;
  }

  .hero-card-primary {
    padding: 1.45rem;
  }

  .hero-actions,
  .cta-banner-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    gap: 0.6rem;
  }

  .trust-strip span,
  .hero-tags span,
  .pill-grid span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gallery-card {
    min-height: 200px;
  }

  .gallery-card span {
    max-width: 11ch;
  }

  .contact-list a,
  .contact-list div {
    padding: 0.95rem 1rem;
  }

  .lang-btn {
    min-width: 56px;
    justify-content: center;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
