:root {
  --navy: #071b34;
  --dark-navy: #031225;
  --blue: #007bff;
  --cyan: #22c7f2;
  --soft-bg: #f5f8fc;
  --white: #ffffff;
  --green: #18a058;
  --text: #0b1f3a;
  --muted: #5f7188;
  --line: #dbe5ef;
  --shadow: 0 24px 70px rgba(7, 27, 52, 0.12);
  --shadow-dark: 0 28px 100px rgba(3, 18, 37, 0.34);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--soft-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  position: fixed;
  padding: 12px 0;
  background: rgba(3, 18, 37, 0.84);
  box-shadow: 0 16px 48px rgba(3, 18, 37, 0.24);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.logo img {
  width: 182px;
  height: 52px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav a {
  position: relative;
  padding: 0 0 9px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--cyan);
  border-color: var(--cyan);
  background: transparent;
}

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

.language-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}

.language-switch a {
  min-width: 38px;
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.language-switch a.is-active {
  color: var(--dark-navy);
  background: var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00b8ff, #0068de);
  box-shadow: 0 18px 34px rgba(0, 119, 255, 0.34);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(34, 199, 242, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle {
  flex-direction: column;
  gap: 5px;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 560px;
  padding: 120px 0 30px;
  color: var(--white);
  overflow: hidden;
  background: url("../images/hero_bg.png") center right / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #001029;
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 14px;
  color: #d7ebff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4.45vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-title-tr > span {
  display: block;
}

.gradient-text {
  display: block;
  color: var(--cyan);
}

.hero-copy,
.page-hero p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #d6e4f5;
  font-size: 18px;
  line-height: 1.6;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.proof-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
}

.device-stage {
  position: relative;
  min-height: 380px;
}

.hero-product-shot {
  position: absolute;
  right: -58px;
  top: -38px;
  width: min(820px, 114%);
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.42));
}

.hero-product-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.device-stage.has-product .dashboard-device,
.device-stage.has-product .tablet-card,
.device-stage.has-product .mobile-card {
  display: none;
}

.dashboard-device {
  position: absolute;
  inset: 20px 0 auto auto;
  width: min(700px, 100%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(22px);
}

.device-screen {
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #f8fbff;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.mock-brand {
  font-weight: 900;
}

.mock-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 336px;
}

.mock-sidebar {
  padding: 18px 14px;
  color: var(--white);
  background: var(--navy);
}

.mock-sidebar span {
  display: block;
  height: 10px;
  margin-bottom: 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.mock-sidebar span:first-child {
  width: 86%;
  background: var(--cyan);
}

.mock-content {
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.metric small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 18px;
}

.mock-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-top: 14px;
}

.line-chart,
.donut-card,
.list-card {
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.line-chart svg {
  width: 100%;
  height: 84px;
}

.donut {
  width: 86px;
  height: 86px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 42%, var(--cyan) 42% 65%, var(--green) 65% 82%, #f6a623 82% 100%);
  position: relative;
}

.donut::after {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.list-card {
  grid-column: 1 / -1;
}

.list-line {
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--line), #edf3f8);
}

.tablet-card,
.mobile-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-dark);
}

.tablet-card {
  right: -8px;
  bottom: 34px;
  width: 230px;
  padding: 16px;
  border-radius: 24px;
}

.approval-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.approval-line span {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
}

.approval-line span:nth-child(-n + 3) {
  background: var(--green);
}

.mobile-card {
  right: 220px;
  bottom: 0;
  width: 126px;
  min-height: 220px;
  padding: 10px;
  border-radius: 24px;
}

.mobile-notch {
  width: 42px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #9badc0;
}

.mobile-row {
  height: 34px;
  margin-top: 9px;
  border-radius: 11px;
  background: #eef5fc;
}

.trust-band {
  padding: 28px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-caption {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logo-pill {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px;
  color: #7c8ba0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
  font-weight: 900;
}

.section {
  padding: 86px 0;
}

.section-white {
  background: var(--white);
}

.home-video-section {
  padding-top: 34px;
  padding-bottom: 24px;
}

.home-video-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--dark-navy);
  box-shadow: 0 24px 70px rgba(7, 27, 52, 0.13);
}

.home-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  border-radius: 24px;
  background: var(--dark-navy);
}

.home-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-dark .section-text {
  color: var(--cyan);
}

.section-title {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.feature-card,
.benefit-card,
.integration-card,
.solution-card,
.testimonial-card,
.form-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(7, 27, 52, 0.06);
}

.feature-card,
.benefit-card,
.solution-card,
.content-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card > *,
.benefit-card > *,
.solution-card > *,
.content-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover,
.benefit-card:hover,
.solution-card:hover,
.content-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 199, 242, 0.5);
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(34, 199, 242, 0.16)),
    rgba(0, 123, 255, 0.1);
  box-shadow: 0 16px 34px rgba(0, 123, 255, 0.15);
  font-size: 30px;
  font-weight: 900;
}

.card-icon i {
  line-height: 1;
}

.feature-card h3,
.benefit-card h3,
.solution-card h3,
.content-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-card p,
.benefit-card p,
.solution-card p,
.content-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-tight {
  padding-top: 56px;
  padding-bottom: 34px;
}

.home-showcase {
  padding-top: 26px;
  padding-bottom: 28px;
}

.stats-section {
  padding-top: 0;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, var(--soft-bg) 0%, #eef5fb 48%, #f8fbff 100%);
}

.testimonials-section {
  padding-top: 34px;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card.compact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  min-height: 166px;
  padding: 24px;
  background:
    radial-gradient(circle at 94% 94%, rgba(34, 199, 242, 0.2), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f7fbff 46%, #eef7ff 100%);
}

.feature-card.compact::after {
  content: attr(data-card-icon);
  position: absolute;
  right: -8px;
  bottom: -32px;
  z-index: 0;
  color: rgba(0, 123, 255, 0.1);
  font-family: "Font Awesome 6 Free";
  font-size: 132px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
}

.feature-card.compact .card-icon {
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 20px;
  font-size: 30px;
}

.feature-card.compact h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.25;
}

.feature-card.compact p {
  font-size: 13.5px;
  line-height: 1.55;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.showcase-card {
  min-height: 285px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(7, 27, 52, 0.07);
}

.integrations-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  padding: 30px;
}

.showcase-card h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 24px;
}

.showcase-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.showcase-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.integration-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.integration-logo-grid span {
  display: grid;
  min-width: 0;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  overflow: hidden;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.integration-logo-grid img {
  display: block;
  width: 100%;
  max-width: min(112px, 100%);
  max-height: 34px;
  object-fit: contain;
}

.sustainability-card {
  position: relative;
  display: grid;
  align-items: center;
  padding: 30px;
  min-height: 290px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 253, 248, 0.94) 0%, rgba(244, 253, 248, 0.74) 42%, rgba(244, 253, 248, 0.08) 72%),
    url("../images/SustainableTravelBetterFuture.png") center right / cover;
}

.sustainability-copy {
  max-width: 390px;
  padding: 22px;
  border: 1px solid rgba(24, 160, 88, 0.14);
  border-radius: 18px;
  
  box-shadow: 0 18px 55px rgba(7, 27, 52, 0.12);

}

.sustainability-card h3 {
  color: #087a42;
}

.sustainability-card p {
  color: #1d4b39;
}

.sustainability-card .check-list {
  margin-bottom: 20px;
}

.sustainability-card .check-list li {
  color: #123f30;
}

.sustainability-card .check-list li::before {
  color: var(--green);
  background: rgba(24, 160, 88, 0.1);
}

.sustainability-card a {
  color: #087a42;
}

.co2-floating-card {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 170px;
  padding: 18px;
  border: 1px solid rgba(24, 160, 88, 0.22);
  border-radius: 18px;
  background: rgba(247, 255, 250, 0.9);
  box-shadow: 0 18px 60px rgba(7, 27, 52, 0.18);
  backdrop-filter: blur(12px);
}

.co2-floating-card small,
.co2-floating-card span {
  display: block;
  color: #2f6d52;
  font-size: 12px;
}

.co2-floating-card strong {
  display: block;
  margin: 8px 0;
  color: #087a42;
  font-size: 31px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c9d5e1;
}

.slider-dots span.is-active {
  width: 28px;
  background: var(--cyan);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.integration-card {
  padding: 26px;
}

.integration-card h3 {
  margin: 0 0 20px;
  color: var(--text);
}

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

.integration-items span,
.mini-chip {
  min-height: 44px;
  padding: 12px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfdff;
  font-size: 13px;
  font-weight: 800;
}

.integration-map-trigger {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: zoom-in;
  box-shadow: 0 14px 36px rgba(7, 27, 52, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.integration-map-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 199, 242, 0.55);
  box-shadow: 0 18px 44px rgba(7, 27, 52, 0.14);
}

.integration-map-trigger img {
  width: 100%;
  height: auto;
}

.hotel-integration-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.own-contract-card,
.integration-logo-card {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
}

.own-contract-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--text);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(34, 199, 242, 0.06);
}

.own-contract-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 28px rgba(0, 119, 255, 0.22);
}

.own-contract-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integration-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.integration-logo-card img {
  width: min(100%, 260px);
  max-height: 82px;
  object-fit: contain;
}

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

.coming-soon-item {
  display: grid;
  min-height: 104px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 16px 12px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(34, 199, 242, 0.08), rgba(0, 123, 255, 0.03)),
    #fbfdff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(7, 27, 52, 0.05);
}

.coming-soon-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--cyan);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(7, 27, 52, 0.08);
}

.coming-soon-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(3, 18, 37, 0.78);
  backdrop-filter: blur(8px);
}

.map-modal:target,
.map-modal.is-open {
  display: flex;
}

.map-modal img {
  width: min(94vw, 1240px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-dark);
}

.map-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--dark-navy);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 18, 37, 0.26);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.dashboard-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.image-card.tall img {
  min-height: 420px;
}

.image-card.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.image-stack {
  display: grid;
  gap: 16px;
}

.dashboard-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(34, 199, 242, 0.16);
  background: #001029;
  box-shadow: 0 24px 70px rgba(0, 16, 41, 0.24);
}

.stat {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 27px;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.sustainability-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(24, 160, 88, 0.18);
  border-radius: 30px;
  background: linear-gradient(135deg, #effaf4, var(--white));
  box-shadow: var(--shadow);
}

.co2-card {
  padding: 24px;
  border: 1px solid rgba(24, 160, 88, 0.18);
  border-radius: 24px;
  background: var(--white);
}

.co2-value {
  margin: 16px 0 6px;
  color: var(--green);
  font-size: 48px;
  font-weight: 900;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 170px;
  margin-top: 22px;
}

.bar-chart span {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(24, 160, 88, 0.35));
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  font-weight: 800;
}

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

.testimonial-card {
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.author strong {
  display: block;
}

.author span {
  color: var(--muted);
  font-size: 13px;
}

.cta-section {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 18, 37, 0.96), rgba(3, 18, 37, 0.82)),
    url("../images/03.png") center / cover;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 62px 0;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.cta-box p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  color: var(--white);
  background: var(--dark-navy);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.7fr) 1fr;
  gap: 34px;
}

.footer-logo {
  width: 178px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.footer-about p,
.footer-col a,
.newsletter p,
.copyright {
  color: rgba(255, 255, 255, 0.68);
}

.footer-about p {
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4,
.newsletter h4 {
  margin: 0 0 16px;
  font-size: 14px;
}

.footer-col a {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  color: var(--white);
  background: transparent;
  padding: 0 14px;
  outline: none;
}

.newsletter-form button {
  width: 46px;
  border: 0;
  color: var(--dark-navy);
  background: var(--cyan);
  font-weight: 900;
  cursor: pointer;
}

.copyright {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  text-align: center;
}

.page-hero {
  position: relative;
  padding: 150px 0 80px;
  color: var(--white);
  overflow: hidden;
  background: url("../images/02.png") center / cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #001029;
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(7, 27, 52, 0.06);
}

.feature-row h2 {
  margin: 0;
  font-size: 30px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

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

.contact-details-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(34, 199, 242, 0.15), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.contact-detail-group + .contact-detail-group {
  margin-top: 18px;
}

.contact-detail-group strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 13px;
}

.contact-detail-group a {
  color: var(--blue);
  font-weight: 800;
}

.form-card {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
  padding: 13px 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 199, 242, 0.13);
}

.form-message {
  margin: 16px 0 0;
  color: var(--green);
  font-weight: 800;
}

.visual-showcase {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.visual-showcase img {
  width: 100%;
  object-fit: cover;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .header-inner {
    padding: 0;
  }

  .header-actions .btn {
    display: none;
  }

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

  .nav {
    position: fixed;
    inset: 96px 20px auto;
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 22px;
    background: var(--dark-navy);
    box-shadow: var(--shadow-dark);
    transition: max-height 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  }

  .menu-open .nav {
    max-height: 540px;
    padding: 14px;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .nav a {
    padding: 14px;
    border-bottom: 0;
    border-radius: 12px;
  }

  .hero-grid,
  .split-grid,
  .sustainability-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .device-stage {
    min-height: 460px;
  }

  .hero-product-shot {
    left: 0;
    right: auto;
    width: min(760px, 100%);
  }

  .section-head,
  .feature-row,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .logo-grid,
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid,
  .home-feature-grid,
  .home-video-card,
  .showcase-grid,
  .testimonial-grid,
  .payment-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrations-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    min-height: 60px;
    border-radius: 0;
  }

  .logo img {
    width: 142px;
    height: 40px;
  }

  .language-switch {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 118px;
  }

  .hero {
    background: url("../images/hero_bg.png") 62% center / cover;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-proof,
  .metric-row,
  .mock-panels,
  .logo-grid,
  .home-video-card,
  .home-feature-grid,
  .showcase-grid,
  .integration-logo-grid,
  .card-grid,
  .stats-bar,
  .testimonial-grid,
  .payment-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .device-stage {
    min-height: 380px;
  }

  .dashboard-device {
    inset: 8px auto auto 0;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .tablet-card {
    right: 0;
    bottom: 42px;
    width: 190px;
  }

  .hero-product-shot {
    inset: 12px 0 auto;
  }

  .hero-product-shot img {
    height: 320px;
  }

  .feature-card.compact {
    grid-template-columns: auto 1fr;
  }

  .integrations-card,
  .sustainability-card {
    padding: 22px;
  }

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

  .mobile-card {
    left: 12px;
    right: auto;
    bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .integration-items {
    grid-template-columns: 1fr;
  }

  .map-modal {
    width: calc(100vw - 28px);
  }

  .map-modal-close {
    top: -14px;
    right: -10px;
  }

  .feature-row {
    padding: 24px;
  }

  .cta-actions,
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
