:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #53636f;
  --line: #d8e3e8;
  --paper: #f7fbfc;
  --surface: #ffffff;
  --teal: #05b9cf;
  --teal-dark: #023f52;
  --cyan-soft: #dffaff;
  --gold: #bf8a22;
  --coral: #c65a42;
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(247, 251, 252, 0.94);
  border-bottom: 1px solid rgba(217, 225, 229, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 250px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: #02060c;
  box-shadow: 0 0 0 3px rgba(5, 185, 207, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: #334148;
  font-size: 0.95rem;
}

.main-nav a,
.header-action {
  text-decoration: none;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-toggle {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.language-option {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-option.active {
  color: white;
  background: var(--ink);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-action,
.primary-button {
  color: #001014;
  background: var(--teal);
}

.secondary-button {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.93) 0%, rgba(7, 17, 31, 0.78) 43%, rgba(7, 17, 31, 0.16) 100%),
    linear-gradient(0deg, rgba(2, 63, 82, 0.34), rgba(7, 17, 31, 0.05));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-inline-start: clamp(18px, 6vw, 82px);
  padding: clamp(44px, 8vw, 96px) 0;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.7rem);
  line-height: 0.96;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.65;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 44px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border-inline-start: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics dt {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 850;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.intro-strip > div {
  min-height: 220px;
  padding: 34px;
  background: var(--surface);
}

.icon,
.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--teal);
}

.intro-strip h2,
.category-card h3,
.delivery-panel h3,
.account-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.1rem;
}

.intro-strip p,
.category-card p,
.account-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-heading p:last-child,
.split-section > div > p,
.quote-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

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

.category-card,
.account-grid article,
.delivery-panel,
.quote-form,
.quote-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 32, 38, 0.03);
}

.category-card {
  display: flex;
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: white;
  border-bottom: 1px solid var(--line);
}

.category-card h3,
.category-card p {
  padding-inline: 20px;
}

.category-card h3 {
  margin-top: 20px;
}

.category-card p {
  flex: 1;
  padding-bottom: 22px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
  background: var(--cyan-soft);
}

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

.check-list li {
  position: relative;
  padding-inline-start: 30px;
  color: #26343a;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--teal);
}

.check-list li::after {
  content: "";
  position: absolute;
  inset-inline-start: 6px;
  top: 7px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.delivery-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.delivery-panel h3 {
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.timeline span {
  color: var(--coral);
  font-weight: 850;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.account-band {
  background: var(--ink);
  color: white;
}

.account-band .section-heading p:last-child,
.account-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.account-grid article {
  min-height: 178px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(5, 185, 207, 0.24);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.shop-section {
  background: white;
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: stretch;
}

.shop-details {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.shop-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-details p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.shop-map-link {
  width: fit-content;
  margin-top: 4px;
}

.map-embed {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cyan-soft);
}

.quote-summary {
  margin-top: 28px;
  padding: 24px;
}

.quote-summary span,
.quote-summary small {
  display: block;
  color: var(--muted);
}

.quote-summary strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: #314047;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d3d8;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(5, 185, 207, 0.2);
  border-color: var(--teal);
}

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

.form-button {
  width: 100%;
  min-height: 50px;
  font-size: 1rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.74);
  background: #02060c;
}

.site-footer p,
.site-footer address {
  margin: 0;
}

.site-footer address {
  max-width: 520px;
  font-style: normal;
  line-height: 1.6;
}

.site-footer strong {
  color: white;
}

.site-footer a {
  color: white;
}

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(680px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(5, 185, 207, 0.32);
  border-radius: 8px;
  color: white;
  background: rgba(7, 17, 31, 0.96);
  box-shadow: var(--shadow);
}

.consent-banner.hidden {
  display: none;
}

.consent-banner p {
  margin: 0;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.primary-consent,
.secondary-consent {
  min-height: 38px;
  border-radius: 8px;
  padding: 0 13px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary-consent {
  border: 1px solid var(--teal);
  color: #001014;
  background: var(--teal);
}

.secondary-consent {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: white;
  background: transparent;
}

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

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(7, 17, 31, 0.93) 0%, rgba(7, 17, 31, 0.78) 43%, rgba(7, 17, 31, 0.16) 100%),
    linear-gradient(0deg, rgba(2, 63, 82, 0.34), rgba(7, 17, 31, 0.05));
}

[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea {
  text-align: right;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 780px;
  }

  .intro-strip,
  .category-grid,
  .account-grid,
  .split-section,
  .quote-section,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .account-grid article {
    min-height: auto;
  }

}

@media (max-width: 620px) {
  .site-header {
    position: static;
    gap: 10px;
    min-height: auto;
    padding: 10px 14px;
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

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

  .header-action {
    padding: 0 12px;
    font-size: 0.88rem;
    min-height: 38px;
  }

  .language-option {
    min-width: 34px;
    min-height: 30px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 44px 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.93), rgba(7, 17, 31, 0.72)),
      linear-gradient(0deg, rgba(2, 63, 82, 0.32), rgba(7, 17, 31, 0.1));
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-metrics div {
    padding: 10px;
  }

  .hero-metrics dt {
    font-size: 1.05rem;
  }

  .hero-metrics dd {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-strip > div,
  .section {
    padding-top: 38px;
    padding-bottom: 38px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-strip {
    gap: 1px;
  }

  .intro-strip > div {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 12px;
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .intro-strip .icon {
    width: 32px;
    height: 32px;
    grid-row: span 2;
  }

  .intro-strip h2 {
    margin: 0 0 4px;
    font-size: 0.98rem;
  }

  .intro-strip p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .split-section h2,
  .quote-copy h2 {
    font-size: 1.85rem;
    line-height: 1.08;
  }

  .section-heading p:last-child,
  .split-section > div > p,
  .quote-copy > p {
    margin-top: 12px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

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

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

  .category-card img {
    aspect-ratio: 1.18 / 1;
  }

  .category-card h3 {
    margin: 0;
    padding: 11px 10px 12px;
    font-size: 0.86rem;
    line-height: 1.18;
  }

  .category-card p {
    display: none;
  }

  .split-section {
    gap: 24px;
  }

  .check-list {
    gap: 9px;
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .delivery-panel,
  .quote-form,
  .quote-summary,
  .shop-details {
    padding: 18px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 12px;
  }

  .account-grid {
    gap: 10px;
  }

  .account-grid article {
    padding: 18px;
  }

  .quote-summary {
    margin-top: 18px;
  }

  .quote-summary strong {
    font-size: 1.9rem;
  }

  .map-embed {
    min-height: 250px;
  }

  .site-footer {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 0.9rem;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: 0.9rem;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .primary-consent,
  .secondary-consent {
    flex: 1;
  }
}
