:root {
  --bg: #f5f0e8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #172028;
  --muted: #596473;
  --accent: #2d6c83;
  --accent-strong: #17495c;
  --border: rgba(23, 32, 40, 0.1);
  --shadow: 0 24px 60px rgba(20, 32, 42, 0.12);
  --hero-overlay: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.06)
  );
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top right,
      color-mix(in srgb, var(--accent) 12%, transparent),
      transparent 26%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.75),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      var(--bg),
      color-mix(in srgb, var(--bg), #ffffff 18%)
    );
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  max-width: 240px;
}

.brand-logo {
  width: min(140px, 40vw);
  height: auto;
}

.controls {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}

.lang-switch {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.lang-switch.is-active {
  color: #ffffff;
  background: var(--accent);
}

.hero {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: var(--hero-overlay), var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-grid,
.content-grid,
.split-card,
.contact-card,
.hero-trust,
.feature-grid,
.benefit-grid,
.process-grid,
.contact-panel,
.reasons-layout,
.clients-layout,
.clients-visual {
  display: grid;
  gap: 24px;
}

.hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.hero-copy {
  padding: 12px 0;
}

.eyebrow,
.section-tag {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  max-width: none;
}

.lead {
  max-width: 56ch;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points p {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
  font-weight: 600;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--accent-strong);
  outline: none;
  transform: translateY(-1px);
}

.hero-media img,
.gallery img {
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
}

.hero-media img {
  aspect-ratio: 4 / 5;
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  background: rgba(24, 37, 28, 0.74);
  color: #f7fbf6;
  backdrop-filter: blur(16px);
}

.floating-label,
.floating-value {
  margin: 0;
}

.floating-label {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 251, 246, 0.72);
}

.floating-value {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

.hero-trust {
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.trust-item p {
  margin: 0;
}

.section {
  padding: 84px 0 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.highlights {
  position: relative;
}

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

.feature-card,
.benefit-card,
.process-step {
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.85);
}

.accent-card {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 18%, #ffffff),
      #ffffff
    );
}

.feature-number {
  margin: 0 0 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.feature-card p:last-child,
.benefit-card p:last-child,
.process-step p:last-child {
  margin-bottom: 0;
}

.card p:first-child,
.card ul:first-child,
.card dl:first-child {
  margin-top: 0;
}

.card p:last-child,
.card ul:last-child,
.card dl:last-child {
  margin-bottom: 0;
}

.card ul {
  margin: 0;
  padding-left: 20px;
}

.card li + li {
  margin-top: 10px;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
}

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

.gallery img:first-child {
  grid-column: 1 / -1;
}

.gallery img {
  min-height: 220px;
}

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

.gallery.tall img {
  min-height: 100%;
}

.emphasis {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent) 14%, #ffffff),
      #ffffff
    );
}

.emphasis-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.benefit-card {
  min-height: 152px;
  padding: 24px;
  background: var(--surface-strong);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 34%, transparent);
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.14;
}

.reasons-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
  align-items: stretch;
}

.reasons-intro {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(
      150deg,
      color-mix(in srgb, var(--accent) 20%, #ffffff),
      rgba(255, 255, 255, 0.92)
    );
  box-shadow: var(--shadow);
}

.reasons-intro h3 {
  margin-top: 22px;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.06;
  max-width: 11ch;
}

.reasons-intro p {
  max-width: 34ch;
  margin-bottom: 0;
  font-size: 1.04rem;
  color: var(--muted);
}

.benefit-mark {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.clients-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.clients-copy {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding: 34px;
  background:
    linear-gradient(
      155deg,
      color-mix(in srgb, var(--accent) 10%, #ffffff),
      rgba(255, 255, 255, 0.96)
    );
}

.clients-copy-inner {
  width: 100%;
  max-width: 29ch;
  padding-top: 110px;
}

.clients-copy p {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.48rem);
  line-height: 1.42;
}

.clients-visual {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.44fr);
  align-items: end;
}

.clients-photo-large,
.clients-photo-small {
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.clients-photo-large {
  grid-column: 1 / -1;
  aspect-ratio: 1.18 / 1;
}

.clients-photo-small {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1.08;
  justify-self: start;
  margin-top: -108px;
  border: 8px solid color-mix(in srgb, var(--bg) 74%, #ffffff);
}

.process {
  position: relative;
}

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

.process-step {
  position: relative;
  padding: 26px 24px 24px;
  background: rgba(255, 255, 255, 0.76);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 16%, #ffffff);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.contact-intro {
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      var(--accent-strong),
      color-mix(in srgb, var(--accent) 82%, #0b1710)
    );
  color: #f7fbf6;
  box-shadow: var(--shadow);
}

.contact-kicker {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 251, 246, 0.72);
}

.contact-title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.cta-light {
  margin-top: 22px;
  background: #f7fbf6;
  color: var(--accent-strong);
}

.cta-light:hover,
.cta-light:focus-visible {
  background: #ffffff;
}

.split-card {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
}

.intro {
  margin-bottom: 12px;
  font-weight: 700;
}

.note {
  padding: 22px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--accent) 12%, #ffffff);
}

.callout {
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-card {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  min-height: 100%;
}

.company-name {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-list {
  margin: 0;
}

.contact-list div + div {
  margin-top: 18px;
}

.contact-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-list dd {
  margin: 0;
  font-weight: 600;
}

[hidden] {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .benefit-card,
  .cta,
  .lang-switch {
    transition: none;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .content-grid,
  .split-card,
  .contact-card,
  .hero-trust,
  .feature-grid,
  .process-grid,
  .contact-panel,
  .reasons-layout,
  .clients-layout {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-media {
    order: -1;
  }

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

  .reasons-intro h3,
  .reasons-intro p,
  .benefit-card h3 {
    max-width: none;
  }

  .clients-copy-inner {
    max-width: none;
    padding-top: 0;
  }

  .clients-visual {
    grid-template-columns: 1fr 0.72fr;
  }

  .clients-photo-small {
    margin-top: -72px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .hero,
  .card,
  .contact-intro {
    padding: 20px;
    border-radius: 24px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .controls {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    flex: 1;
  }

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

  .gallery img:first-child {
    grid-column: auto;
  }

  .gallery img {
    min-height: auto;
  }

  .hero-points {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

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

  .benefit-card {
    min-height: auto;
  }

  .clients-copy {
    padding: 20px;
  }

  .clients-visual {
    grid-template-columns: 1fr;
  }

  .clients-photo-small {
    max-width: none;
    margin-top: 0;
    border-width: 0;
  }
}
