:root {
  --surface: rgba(255, 255, 255, 0.82);
  --text: #1f2b2d;
  --muted: #5f6e70;
  --line: rgba(31, 43, 45, 0.1);
  --accent: #bf6d2e;
  --accent-strong: #8e4d1b;
  --accent-soft: #f4ddc8;
  --navy: #1f4f95;
  --navy-strong: #143867;
  --navy-soft: rgba(31, 79, 149, 0.1);
  --shadow: 0 18px 45px rgba(81, 63, 44, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 18%, rgba(31, 79, 149, 0.1), transparent 18%),
    radial-gradient(circle at top right, rgba(191, 109, 46, 0.14), transparent 28%),
    radial-gradient(circle at left center, rgba(232, 197, 165, 0.28), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, #f4ede1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 70%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.topbar {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, opacity 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 138px;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(20, 39, 72, 0.14));
}

.hero h1,
.section-heading h2,
.info-card h3,
.product-card h3,
.contact-card h3,
.offer-list h2,
.cta-box h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.nav a,
.hero-text,
.section-heading p,
.info-card p,
.product-card p,
.contact-card p,
.check-list,
.offer-list p,
.hero-metrics span,
.form-note {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  position: relative;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.lang-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, var(--accent-soft), rgba(31, 79, 149, 0.08));
  color: var(--navy-strong);
}

.quote-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.topbar.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0;
  pointer-events: none;
}

.quote-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: #fffdf9;
  box-shadow: 0 14px 30px rgba(31, 79, 149, 0.2);
  animation: glowPulse 4s ease-in-out infinite;
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.quote-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.lang-btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 44px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-top: 52px;
  transition: opacity 220ms ease;
}

.hero-copy {
  animation: driftIn 850ms ease both;
  will-change: transform, opacity;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(31, 79, 149, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy-strong);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.trust-strip span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(31, 79, 149, 0.24);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}

.hero-metrics li,
.hero-panel,
.about-card,
.info-card,
.product-card,
.cta-box,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-metrics li {
  padding: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-metrics li:hover,
.about-card:hover,
.info-card:hover,
.product-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(81, 63, 44, 0.16);
  border-color: rgba(191, 109, 46, 0.22);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.45rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero-card {
  position: relative;
  padding-top: 24px;
  animation: driftIn 900ms ease 160ms both;
  will-change: transform, opacity;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  will-change: transform;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02) brightness(0.88);
  transform: scale(1.03);
  will-change: transform;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 33, 61, 0.18) 0%, rgba(14, 33, 61, 0.08) 20%, rgba(251, 248, 242, 0.14) 100%),
    linear-gradient(135deg, rgba(31, 79, 149, 0.28), rgba(191, 109, 46, 0.18));
}

.floating-badge {
  position: absolute;
  top: 0;
  right: 26px;
  z-index: 2;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff8ef, rgba(31, 79, 149, 0.08));
  border: 1px solid rgba(31, 79, 149, 0.2);
  color: var(--navy-strong);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(87, 61, 33, 0.16);
  animation: bob 4.6s ease-in-out infinite;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.hero-panel-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  background: rgba(255, 252, 247, 0.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 24%;
  height: 180px;
  background: radial-gradient(circle, rgba(191, 109, 46, 0.16), transparent 70%);
}

.panel-label {
  margin: 0 0 18px;
  font-weight: 800;
  color: var(--navy-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-list {
  display: grid;
  gap: 18px;
}

.offer-list article {
  position: relative;
  padding: 18px 18px 18px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
  transition: transform 220ms ease, background-color 220ms ease;
}

.offer-list article:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.82);
}

.offer-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--navy), var(--accent));
}

.offer-list h2,
.info-card h3,
.product-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.offer-list p,
.info-card p,
.product-card p,
.contact-card p,
.about-card p,
.check-list li {
  line-height: 1.7;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

.section-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 22px;
}

.section-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.section-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.about-visual .section-visual-image {
  object-position: center 28%;
  filter: saturate(0.88) brightness(0.92);
}

.services-visual .section-visual-image {
  object-position: center 46%;
  filter: saturate(0.92) brightness(0.82) contrast(1.04);
}

.services-diagram {
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 79, 149, 0.18), transparent 18%),
    radial-gradient(circle at 80% 30%, rgba(191, 109, 46, 0.18), transparent 16%),
    linear-gradient(135deg, #f6efe3, #eef4fb);
}

.services-diagram-grid {
  position: absolute;
  inset: 0;
}

.services-node,
.services-line {
  position: absolute;
}

.services-node {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18), 0 8px 24px rgba(20, 56, 103, 0.16);
}

.node-one { top: 22%; left: 16%; }
.node-two { top: 48%; left: 34%; }
.node-three { top: 30%; left: 54%; }
.node-four { top: 62%; left: 68%; }
.node-five { top: 24%; left: 82%; }

.services-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 79, 149, 0.55), rgba(191, 109, 46, 0.4));
  transform-origin: left center;
  border-radius: 999px;
  opacity: 0.8;
}

.line-one {
  top: 25.5%;
  left: 18%;
  width: 19%;
  transform: rotate(24deg);
}

.line-two {
  top: 49%;
  left: 35.5%;
  width: 21%;
  transform: rotate(-22deg);
}

.line-three {
  top: 33%;
  left: 56%;
  width: 19%;
  transform: rotate(28deg);
}

.line-four {
  top: 58%;
  left: 55%;
  width: 17%;
  transform: rotate(18deg);
}

.services-diagram .section-visual-copy {
  background: rgba(255, 252, 247, 0.9);
}

.products-visual .section-visual-image {
  object-position: center 64%;
  filter: saturate(0.96) brightness(0.88);
}

.section-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 56, 103, 0.46), rgba(191, 109, 46, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(20, 56, 103, 0.38));
}

.section-visual-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 560px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}

.section-visual-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--navy-strong);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-visual-copy h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.about-card,
.contact-card,
.info-card,
.product-card {
  padding: 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #eab27c);
}

.card-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card-index {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--navy-strong);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.product-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.85)),
    radial-gradient(circle at top right, rgba(31, 79, 149, 0.12), transparent 36%);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.quote-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(191, 109, 46, 0.24);
  border-color: rgba(191, 109, 46, 0.36);
}

.submit-btn {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.details-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 28px;
}

.details-list a {
  color: var(--navy-strong);
  font-weight: 700;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.wide-btn {
  width: 100%;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

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

@keyframes driftIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(31, 79, 149, 0.2);
  }
  50% {
    box-shadow: 0 18px 38px rgba(31, 79, 149, 0.3);
  }
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .hero,
  .about-grid,
  .contact-grid,
  .card-grid,
  .product-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cta-box {
    justify-content: flex-start;
  }

  .trust-strip {
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar {
    position: static;
    margin-top: 10px;
    padding: 14px;
  }

  .nav,
  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    gap: 14px 18px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 4.2rem);
  }

  .brand-logo {
    width: 118px;
  }

  .about-card,
  .contact-card,
  .info-card,
  .product-card,
  .hero-panel,
  .cta-box {
    padding: 22px;
    border-radius: 22px;
  }

  .section-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  .section-visual-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .hero-card {
    padding-top: 18px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-panel-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .floating-badge {
    right: 18px;
  }
}
