:root {
  --brand-orange: #fe6d2e;
  --brand-blue: #1a75bb;
  --brand-orange-soft: #fff0e8;
  --brand-blue-soft: #ebf4fb;
  --text-main: #17212b;
  --text-muted: #4a5c6d;
  --border: #d7e6f3;
  --card-bg: #ffffff;
  --page-bg: #f7fbff;
  --shadow: 0 22px 56px rgba(26, 117, 187, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background: var(--page-bg);
  line-height: 1.5;
}

.page {
  width: 100%;
  min-height: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.card {
  width: min(1160px, 100%);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topbar {
  height: 10px;
  background: var(--brand-blue);
}

.content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.hero {
  padding: 42px;
  background: #ffffff;
  border-right: 1px solid var(--border);
}

.logo {
  margin-bottom: 26px;
}

.logo img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

.kicker {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
}

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

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
}

.primary-cta {
  background: var(--brand-orange);
  border: 1px solid #e65b1f;
  color: #fff;
}

.secondary-cta {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand-blue);
}

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

.usp-list li {
  position: relative;
  padding-left: 20px;
  color: #2f4357;
  font-size: 14px;
}

.usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.visual-showcase {
  margin-bottom: 22px;
}

.visual-title {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 18px;
}

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

.visual-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.visual-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.market-title {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--brand-blue);
}

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

.market {
  min-height: 84px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  background: #fff;
  display: grid;
  place-items: center;
}

.market img {
  width: 160px;
  height: 44px;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
}

.video-embed {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.translations {
  padding: 42px;
  background: #ffffff;
}

.translations h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.translations-subtitle {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
}

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

.message {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.message strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flag {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  border: 1px solid var(--border);
  font-size: 16px;
}

.message p {
  margin: 0 0 12px;
  color: #334353;
  line-height: 1.55;
  font-size: 14px;
  flex: 1;
}

.order-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--brand-orange);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #eb5a1a;
  margin-top: auto;
  align-self: flex-start;
}

.company-footer {
  border-top: 1px solid var(--border);
  background: #fbfdff;
  padding: 18px 24px;
}

.trustpilot-fullwidth {
  border-top: 1px solid var(--border);
  background: #ffffff;
  padding: 18px 24px 8px;
}

.company-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #556a7c;
  font-size: 13px;
}

.company-footer-inner strong {
  color: var(--text-main);
}

@media (max-width: 960px) {
  .content {
    grid-template-columns: 1fr;
  }

  .hero {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 720px) {
  .hero,
  .translations {
    padding: 24px;
  }

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

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .grid,
  .market-grid {
    grid-template-columns: 1fr;
  }

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

  .visual-card img {
    height: 180px;
  }

  .logo img {
    width: 180px;
  }

  .company-footer {
    padding: 16px;
  }

  .trustpilot-fullwidth {
    padding: 16px 16px 8px;
  }
}
