﻿:root {
  --bg: #f8f6f0;
  --surface: #ffffff;
  --surface-2: #edf4ef;
  --ink: #071d35;
  --muted: #68757a;
  --line: #d9e2dc;
  --green: #096b5d;
  --green-2: #064d45;
  --mint: #e2f1eb;
  --gold: #c99a4a;
  --gold-soft: #f7ead0;
  --navy: #071d35;
  --blue: #0874bd;
  --shadow: 0 22px 58px rgba(7, 29, 53, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
#top {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green);
  color: white;
  font-weight: 800;
}

.brand-logo {
  width: 58px;
  height: 42px;
  border: 1px solid rgba(7, 29, 53, 0.08);
  border-radius: var(--radius);
  background: white;
  object-fit: contain;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.nav-trigger:hover {
  color: var(--green);
}

.nav a,
.nav-trigger,
.btn,
.lang-toggle,
.trust-strip a,
.category-list span,
.contact-buttons a,
.contact-links a,
.contact-dock .contact-icon,
.contact-dock button {
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  transform-origin: center;
}

.nav a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(9, 107, 93, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.nav a:hover,
.nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.btn:hover,
.btn:focus-visible,
.lang-toggle:hover,
.lang-toggle:focus-visible,
.trust-strip a:hover,
.trust-strip a:focus-visible,
.category-list span:hover,
.contact-buttons a:hover,
.contact-buttons a:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible,
.contact-dock .contact-icon:hover,
.contact-dock .contact-icon:focus-visible,
.contact-dock button:hover,
.contact-dock button:focus-visible {
  transform: scale(1.14) translateX(-4px);
  box-shadow: 0 16px 36px rgba(15, 73, 59, 0.22);
}

.nav a:hover,
.nav a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  transform: translateY(-1px);
  box-shadow: none;
  border-color: rgba(9, 107, 93, 0.22);
  background: var(--mint);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 60;
  display: none;
  width: min(520px, calc(100vw - 40px));
  min-width: 360px;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  padding: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu a {
  display: grid;
  min-height: 64px;
  padding: 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.mega-menu strong {
  color: var(--green);
  font-size: 15px;
}

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

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

.lang-toggle {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn:hover {
  background: var(--green);
}

.btn-outline {
  background: transparent;
  color: var(--green);
}

.btn-outline:hover {
  background: var(--surface-2);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(650px, calc(100vh - 116px));
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px) 34px;
}

.rfq-hero {
  align-items: center;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-text {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip a,
.category-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 9px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-rfq {
  display: grid;
  min-height: 560px;
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 53, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo {
  margin: 0;
  min-height: 240px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.rfq-card {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.quote-preview {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f7f3 100%);
}

.quote-preview strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.quote-preview p {
  margin: 0;
  color: var(--muted);
}

.quote-preview .btn {
  justify-self: start;
}

.hero-copy,
.hero-rfq,
.card,
.proof-list > div,
.process-flow li,
.visual-grid article {
  animation: rise-in 520ms ease both;
}

.card:nth-child(2),
.proof-list > div:nth-child(2),
.process-flow li:nth-child(2),
.visual-grid article:nth-child(2) {
  animation-delay: 80ms;
}

.card:nth-child(3),
.proof-list > div:nth-child(3),
.process-flow li:nth-child(3),
.visual-grid article:nth-child(3) {
  animation-delay: 140ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-intro strong {
  color: var(--navy);
  font-size: 20px;
}

.form-intro p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(46px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.section h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.section p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card,
.service,
.visual-grid article,
.blog-card,
.proof-list > div,
.quote-form,
.assistant-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card,
.service {
  min-height: 190px;
  padding: 24px;
}

.compact-home {
  background: #fffdf8;
}

.rfq-section {
  background: #edf4ef;
}

.rfq-section .section-head {
  max-width: 820px;
}

.request-form {
  max-width: 980px;
  box-shadow: var(--shadow);
}

.rfq-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.rfq-modal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 29, 53, 0.42);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(780px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(7, 29, 53, 0.28);
  animation: modal-in 180ms ease both;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 24px 24px 8px;
}

.modal-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.modal-head p:last-child {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.modal-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.modal-card .quote-form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.compact-proof {
  background: #edf4ef;
}

.service-matrix .service {
  min-height: 190px;
}

.visual-proof {
  background: #fffdf8;
}

.visual-proof .section-head {
  max-width: 1120px;
}

.visual-proof h2 {
  max-width: 1080px;
  font-size: clamp(30px, 3vw, 40px);
  text-wrap: balance;
}

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

.visual-grid article {
  overflow: hidden;
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.visual-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.visual-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-grid h3,
.visual-grid p {
  padding-left: 20px;
  padding-right: 20px;
}

.visual-grid h3 {
  margin-top: 18px;
}

.visual-grid p {
  padding-bottom: 20px;
}

.icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  background: var(--surface-2);
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list > div {
  padding: 20px;
}

.proof-list strong {
  color: var(--green);
  font-size: 18px;
}

.process-lite {
  background: #fffdf8;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-flow li {
  position: relative;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 52px 16px 18px;
  counter-increment: process;
}

.process-flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--green);
  font-weight: 900;
  transform: translateY(-50%);
}

.process-flow li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--gold);
  font-weight: 900;
}

.process-flow strong,
.process-flow span {
  display: block;
}

.process-flow strong {
  color: var(--navy);
  line-height: 1.2;
}

.process-flow span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.categories {
  background: var(--green);
  color: white;
}

.categories .eyebrow,
.categories h2 {
  color: white;
}

.categories .category-list span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.deliverables {
  background: #fbfcfa;
}

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

.deliverable-grid div {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  color: var(--green);
  font-weight: 850;
}

.trust-strip a:hover,
.trust-strip a:focus-visible {
  border-color: rgba(15, 73, 59, 0.42);
  background: white;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 230px;
  padding: 64px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  counter-increment: step;
}

.faq {
  background: var(--surface-2);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.blog-seo {
  background: #fbfcfa;
}

.blog-card {
  overflow: hidden;
  background: var(--surface);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card h3,
.blog-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.blog-card h3 {
  margin-top: 18px;
}

.blog-card p {
  padding-bottom: 20px;
}

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

.countries .eyebrow,
.countries h2 {
  color: white;
}

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

.country-grid span {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-weight: 900;
  text-align: center;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  background: #edf4ef;
}

.about-band p {
  margin: 0;
  font-size: 18px;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--gold);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.contact-links {
  display: grid;
  max-width: 520px;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: grid;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px 14px;
  color: var(--ink);
}

.contact-links strong {
  color: var(--green);
  font-weight: 800;
}

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

.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-details h3 {
  margin-top: 0;
  color: var(--green);
}

.contact-details dl,
.contact-details dd {
  margin: 0;
}

.contact-details dl {
  display: grid;
  gap: 16px;
}

.contact-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  color: var(--ink);
  font-weight: 800;
  word-break: break-word;
}

.small-note {
  font-size: 13px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote-form label,
.quote-form .full {
  grid-column: span 1;
}

.quote-form label.full,
.quote-form .form-intro.full,
.quote-form .btn.full,
.form-status {
  grid-column: 1 / -1;
}

.quote-form span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

input[type="file"] {
  min-height: 50px;
  padding: 10px;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

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

.contact-dock {
  position: fixed;
  right: 18px;
  bottom: 74px;
  z-index: 30;
  display: grid;
  gap: 14px;
}

.contact-item {
  position: relative;
}

.contact-dock .contact-icon,
.contact-dock button {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(15, 73, 59, 0.22);
  cursor: pointer;
  list-style: none;
}

.contact-dock .contact-item:nth-child(1) .contact-icon {
  background: #25d366;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.26);
}

.contact-dock .contact-item:nth-child(2) .contact-icon {
  background: #1877f2;
  color: white;
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.24);
}

.contact-dock svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-pop {
  position: absolute;
  right: 62px;
  top: 50%;
  display: none;
  width: 218px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-item:hover .contact-pop,
.contact-item:focus-within .contact-pop {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.assistant-fab {
  position: fixed;
  right: 252px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  box-shadow: none;
  cursor: pointer;
  font-weight: 900;
  padding: 0;
}

.assistant-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(7, 29, 53, 0.2));
}

.contact-pop p {
  margin: 6px 0 10px;
  color: var(--muted);
  word-break: break-word;
}

.contact-pop img {
  width: 104px;
  height: 104px;
  margin: 8px 0;
  border: 1px solid var(--line);
}

.contact-pop a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
}

.assistant-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end end;
  padding: 20px;
  background: rgba(10, 20, 16, 0.12);
}

.assistant-panel[hidden] {
  display: none !important;
}

.assistant-card {
  display: grid;
  width: min(420px, 100%);
  height: min(620px, calc(100vh - 40px));
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.assistant-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.assistant-head small {
  display: block;
  color: var(--muted);
}

.assistant-head button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.assistant-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  background: #f6f8f5;
}

.msg {
  max-width: 86%;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
}

.msg.bot {
  align-self: flex-start;
  background: white;
  border: 1px solid var(--line);
}

.msg.user {
  align-self: flex-end;
  background: var(--green);
  color: white;
}

.assistant-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.assistant-input button {
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
  font-weight: 900;
  padding: 0 14px;
}

.footer {
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--muted);
}

.footer a,
.footer p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.rich-footer {
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  align-items: start;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-size: 14px;
  letter-spacing: 0;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact p {
  margin-top: 8px;
  color: white;
  font-weight: 900;
}

.footer-contact span,
.footer-contact small {
  color: rgba(255, 255, 255, 0.72);
}

.qr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qr-row figure {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.qr-row img {
  width: 86px;
  height: 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

[dir="rtl"] body {
  font-family: Tahoma, Arial, ui-sans-serif, system-ui, sans-serif;
}

[dir="rtl"] .steps li::before {
  left: auto;
  right: 22px;
}

[dir="rtl"] .process-flow li:not(:last-child)::after {
  right: auto;
  left: -13px;
  content: "←";
}

[dir="rtl"] .assistant-panel {
  place-items: end start;
}

[dir="rtl"] .contact-dock {
  right: auto;
  left: 18px;
}

[dir="rtl"] .assistant-fab {
  right: auto;
  left: 252px;
}

[dir="rtl"] .contact-pop {
  right: auto;
  left: 62px;
  transform: translate(-10px, -50%);
}

[dir="rtl"] .contact-item:hover .contact-pop,
[dir="rtl"] .contact-item:focus-within .contact-pop {
  transform: translate(0, -50%);
}

[dir="rtl"] .msg.bot {
  align-self: flex-end;
}

[dir="rtl"] .msg.user {
  align-self: flex-start;
}

@media (max-width: 1040px) {
  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .hero {
    min-height: auto;
  }

  .grid.four,
  .grid.three,
  .visual-grid,
  .deliverable-grid,
  .process-flow,
  .country-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow li:not(:last-child)::after {
    display: none;
  }

  .about-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-actions,
  .trust-strip {
    margin-top: 16px;
  }

  .hero {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 20px;
  }

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

  .trust-strip a,
  .category-list span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .hero-rfq {
    min-height: 0;
    grid-template-rows: 124px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 124px;
  }

  .quote-preview {
    display: none;
  }

  .grid.four,
  .grid.three,
  .visual-grid,
  .deliverable-grid,
  .process-flow,
  .country-grid,
  .steps,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form label,
  .quote-form .full {
    grid-column: 1 / -1;
  }

  .hero-media img {
    min-height: 300px;
  }

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

  body {
    padding-bottom: 72px;
  }

  .contact-dock {
    right: 12px;
    bottom: 18px;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 44px);
    gap: 12px;
    transform: none;
  }

  .contact-dock .contact-icon,
  .contact-dock button {
    width: 44px;
    height: 44px;
  }

  .contact-dock svg {
    width: 21px;
    height: 21px;
  }

  .contact-pop {
    right: 0;
    top: auto;
    bottom: 58px;
    width: min(230px, calc(100vw - 28px));
    transform: translateY(8px);
  }

  .contact-item:hover .contact-pop,
  .contact-item:focus-within .contact-pop {
    transform: translateY(0);
  }

  .assistant-fab {
    right: 150px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .assistant-icon {
    width: 58px;
    height: 58px;
  }

  .mega-menu {
    position: fixed;
    top: 132px;
    left: 14px;
    min-width: 0;
    width: calc(100vw - 28px);
  }
}
