/* ============ Design tokens ============ */
:root {
  --ink: #11472B;
  /* Dark green */
  --ink-2: #1A5E3A;
  --tower: #12A594;
  /* Kuwait Towers turquoise */
  --tower-dk: #0D7A6E;
  /* accessible text on light */
  --foam: #EDF2F0;
  --paper: #FAFCFB;
  --hazard: #B58E45;
  /* Gold */
  --rust: #C2410C;
  --line: #D9E2DE;
  --text: #193026;
  --muted: #576660;
  --font-display: 'Cairo', 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  --font-body: 'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.85;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased
}

img,
svg {
  max-width: 100%
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  font-weight: 600
}

p {
  margin: 0
}

a {
  color: var(--tower-dk)
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit
}

:focus-visible {
  outline: 3px solid var(--hazard);
  outline-offset: 3px;
  border-radius: 4px
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap
}

.skip {
  position: absolute;
  inset-inline-start: 12px;
  top: -60px;
  background: var(--hazard);
  color: var(--ink);
  padding: .6rem 1rem;
  border-radius: 8px;
  z-index: 100;
  font-weight: 600
}

.skip:focus {
  top: 12px
}

.wrap {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px
}

[data-phone] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .65rem 1.4rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.3;
  transition: background-color .2s, color .2s, border-color .2s
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none
}

.btn--hazard {
  background: var(--hazard);
  color: var(--ink)
}

.btn--hazard:hover {
  background: #ffd93d
}

.btn--wa {
  background: #25D366;
  color: #06301A
}

.btn--wa:hover {
  background: #3ee07d
}

.btn--ink {
  background: var(--ink);
  color: #fff
}

.btn--ink:hover {
  background: var(--ink-2)
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5)
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08)
}

.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink)
}

.btn--line:hover {
  background: var(--ink);
  color: #fff
}

.btn--block {
  width: 100%
}

/* ============ Top bar + header ============ */
.topbar {
  background: var(--ink);
  color: #cfe3df;
  font-size: .88rem
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px
}

.lang {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  border-radius: 999px;
  padding: .1rem .9rem;
  cursor: pointer;
  min-height: 30px
}

.lang:hover {
  background: rgba(255, 255, 255, .1)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 252, 251, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line)
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink)
}

.brand svg {
  width: 42px;
  height: 42px;
  flex: none
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  display: block
}

.brand-sub {
  font-size: .78rem;
  color: var(--muted);
  display: block;
  line-height: 1.3
}

.nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center
}

.nav a {
  display: block;
  padding: .45rem .8rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem
}

.nav a:hover {
  background: var(--foam)
}

.nav .btn {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  padding: .4rem 1.1rem;
  min-height: 42px
}

.nav .btn:hover {
  background: #ffd93d
}

.menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  color: var(--ink)
}

.menu-btn svg {
  width: 24px;
  height: 24px
}

/* ============ Hero ============ */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1.3px, transparent 1.4px);
  background-size: 22px 22px
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.hero::before {
  width: 620px;
  height: 620px;
  inset-inline-end: -200px;
  top: -120px;
  border: 2px solid rgba(245, 197, 24, .28)
}

.hero::after {
  width: 380px;
  height: 380px;
  inset-inline-end: -80px;
  top: 0;
  border: 2px dashed rgba(18, 165, 148, .5)
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
  padding-block: 76px 84px
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.35
}

.hero .lead {
  font-size: 1.15rem;
  color: #d3e6e2;
  margin-top: 1.2rem;
  max-width: 34em
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem
}

.hero-points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: .5rem;
  color: #d3e6e2
}

.hero-points li {
  display: flex;
  gap: .6rem;
  align-items: flex-start
}

.hero-points svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: .3rem;
  color: var(--hazard)
}

.quick {
  background: var(--paper);
  color: var(--text);
  border-radius: 18px;
  padding: 28px;
  border-top: 6px solid var(--hazard)
}

.quick h2 {
  font-size: 1.4rem
}

.quick p.sub {
  color: var(--muted);
  font-size: .93rem;
  margin: .3rem 0 1.1rem
}

.stripe {
  height: 12px;
  background: repeating-linear-gradient(-45deg, var(--hazard) 0 14px, var(--ink) 14px 28px)
}

/* ============ Forms ============ */
.field {
  display: grid;
  gap: .3rem;
  margin-bottom: 1rem
}

.field label {
  font-weight: 600;
  font-size: .93rem;
  color: var(--ink)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: .6rem .9rem;
  border: 1.5px solid #b9cfc9;
  border-radius: 10px;
  background: #fff
}

.field textarea {
  min-height: 96px;
  resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(18, 165, 148, .4);
  border-color: var(--tower-dk)
}

.field .err {
  color: var(--rust);
  font-size: .86rem;
  min-height: 1.2em
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

/* ============ Sections ============ */
.sec {
  padding: 88px 0
}

.sec--foam {
  background: var(--foam)
}

.sec-head {
  max-width: 680px;
  margin-bottom: 44px
}

.sec-head h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.4rem)
}

.sec-head p {
  color: var(--muted);
  margin-top: .7rem
}

/* Trust strip */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line)
}

.trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.trust li {
  padding: 22px 20px;
  border-inline-start: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.trust li:first-child {
  border-inline-start: 0
}

.trust svg {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--tower-dk)
}

.trust strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.5
}

.trust span {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  display: block
}

/* Services: one ruled grid instead of separate cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden
}

.svc {
  background: var(--paper);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: background-color .2s
}

.svc:hover {
  background: var(--foam)
}

.svc-ic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--foam);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1
}

.svc:hover .svc-ic {
  background: #fff
}

.svc h3 {
  font-size: 1.1rem
}

.svc p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1
}

.svc a {
  font-weight: 600;
  font-size: .93rem;
  text-decoration: none;
  border-bottom: 2px solid var(--hazard);
  align-self: flex-start;
  color: var(--ink);
  padding-bottom: 1px
}

.svc a:hover {
  background: var(--hazard)
}

/* Identifier */
.ident {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: start
}

.sym-list {
  display: grid;
  gap: 10px
}

.sym {
  display: flex;
  gap: .8rem;
  align-items: center;
  text-align: start;
  width: 100%;
  padding: .8rem 1rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  line-height: 1.6;
  transition: background-color .15s, border-color .15s, color .15s
}

.sym::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #9db8b2;
  background: #fff center/14px no-repeat
}

.sym:hover {
  border-color: var(--tower-dk)
}

.sym[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.sym[aria-pressed="true"]::before {
  background-color: var(--hazard);
  border-color: var(--hazard);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C2B2E' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E")
}

.result {
  background: #fff;
  border: 1.5px solid var(--line);
  border-inline-start: 6px solid var(--hazard);
  border-radius: 14px;
  padding: 26px;
  position: sticky;
  top: 96px
}

.result h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem
}

.result .hint {
  color: var(--muted)
}

.res-item+.res-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--line)
}

.res-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: .5rem
}

.res-top h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
  font-weight: 600
}

.urg {
  font-size: .78rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .05rem .7rem
}

.u1 {
  background: #dff3ea;
  color: #0a5b46
}

.u2 {
  background: #fdf0c2;
  color: #6b4e00
}

.u3 {
  background: #fbdcd0;
  color: #8a2b06
}

.res-item p {
  font-size: .94rem;
  margin-top: .45rem
}

.res-item p b {
  color: var(--ink)
}

.res-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem
}

.res-actions .btn {
  min-height: 44px;
  padding: .4rem 1.1rem;
  font-size: .94rem
}

/* Steps: a real sequence, so numbered */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: s
}

.steps li {
  position: relative;
  padding-top: 64px;
  counter-increment: s
}

.steps li::before {
  content: counter(s);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--hazard);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  z-index: 1
}

.steps li::after {
  content: "";
  position: absolute;
  top: 22px;
  inset-inline-start: 46px;
  inset-inline-end: -26px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--tower) 0 8px, transparent 8px 14px)
}

.steps li:last-child::after {
  display: none
}

.steps h3 {
  font-size: 1.12rem;
  margin-bottom: .35rem
}

.steps p {
  font-size: .94rem;
  color: var(--muted)
}

/* Videos */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.vid-card video {
  width: 100%;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover
}

.vid-card video.landscape {
  aspect-ratio: 16/9
}

/* Sectors */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px
}

.sector {
  border-top: 3px solid var(--ink);
  padding: 18px 0 34px
}

.sector h3 {
  font-size: 1.15rem;
  margin-bottom: .35rem
}

.sector p {
  color: var(--muted);
  font-size: .95rem
}

.biz {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  margin-top: 14px
}

.biz-in {
  padding: 34px 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap
}

.biz h3 {
  color: #fff;
  font-size: 1.4rem
}

.biz p {
  color: #cfe3df;
  margin-top: .4rem;
  max-width: 44em
}

/* Calendar */
.cal-scroll {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff
}

table.cal {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
  font-size: .92rem
}

.cal th,
.cal td {
  padding: 10px 6px;
  text-align: center;
  border-bottom: 1px solid var(--line)
}

.cal thead th {
  background: var(--foam);
  font-weight: 600;
  color: var(--ink);
  font-size: .85rem
}

.cal thead th.now {
  background: var(--ink);
  color: var(--hazard)
}

.cal tbody th {
  text-align: start;
  padding-inline: 16px;
  font-weight: 600;
  white-space: nowrap;
  position: sticky;
  inset-inline-start: 0;
  background: #fff;
  color: var(--ink)
}

.cal tbody tr:last-child th,
.cal tbody tr:last-child td {
  border-bottom: 0
}

.cal td {
  width: 7%
}

.cal td span:first-child {
  display: block;
  height: 26px;
  border-radius: 6px;
  margin-inline: 2px
}

.h0 span:first-child {
  background: #eef4f2
}

.h1 span:first-child {
  background: #b9e3d8
}

.h2 span:first-child {
  background: #f6d961
}

.h3 span:first-child {
  background: #e0663a
}

.legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: .88rem;
  color: var(--muted);
  align-items: center
}

.legend i {
  display: inline-block;
  width: 18px;
  height: 14px;
  border-radius: 4px;
  vertical-align: -2px;
  margin-inline-end: 6px
}

.note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 10px
}

/* Prep guide */
.guide {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: start
}

.tabs {
  display: inline-flex;
  background: var(--foam);
  border-radius: 12px;
  padding: 5px;
  gap: 4px;
  margin-bottom: 20px
}

.tab {
  border: 0;
  background: transparent;
  padding: .55rem 1.3rem;
  border-radius: 9px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  min-height: 44px
}

.tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff
}

.check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px
}

.check label {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .85rem 1rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  line-height: 1.7
}

.check input {
  width: 22px;
  height: 22px;
  margin-top: .25rem;
  accent-color: var(--tower-dk);
  flex: none
}

.check input:checked+span {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, .25)
}

.prog {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--ink)
}

.bar {
  flex: 1;
  height: 10px;
  background: var(--foam);
  border-radius: 99px;
  overflow: hidden
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--tower);
  border-radius: 99px;
  transition: width .3s
}

.alert {
  background: var(--ink);
  color: #e6f2ef;
  border-radius: 14px;
  padding: 26px;
  border-top: 6px solid var(--hazard)
}

.alert h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: .6rem
}

.alert p+p {
  margin-top: .6rem
}

.alert b {
  color: var(--hazard)
}

/* Areas */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 36px
}

.gov h3 {
  font-size: 1.1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: .8rem
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.chip {
  border: 1px solid #b9cfc9;
  background: #fff;
  border-radius: 99px;
  padding: .15rem .85rem;
  cursor: pointer;
  font-size: .9rem;
  min-height: 34px
}

.chip:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

/* FAQ */
.faq {
  max-width: 820px
}

.faq details {
  border-bottom: 1px solid var(--line)
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "+";
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  font-family: var(--font-body);
  transition: transform .2s, background-color .2s
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  background: var(--hazard)
}

.faq details p {
  padding: 0 0 22px;
  color: var(--muted);
  max-width: 46em
}

/* Booking */
.book {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line)
}

.book-info {
  background: var(--ink);
  color: #d3e6e2;
  padding: 40px 34px
}

.book-info h2 {
  color: #fff;
  font-size: 1.7rem
}

.book-info p {
  margin-top: .7rem
}

.book-info ul {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 14px
}

.book-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.book-info li svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--hazard);
  margin-top: .3rem
}

.book-info a {
  color: #fff;
  font-weight: 600
}

.book-form {
  background: #fff;
  padding: 40px 34px
}

.done {
  display: none;
  background: var(--foam);
  border: 1.5px solid var(--tower);
  border-radius: 12px;
  padding: 18px;
  margin-top: 6px
}

.done.show {
  display: block
}

.done h3 {
  font-size: 1.1rem;
  margin-bottom: .3rem
}

.done .btn {
  margin-top: .8rem;
  min-height: 42px;
  padding: .3rem 1rem
}

/* Footer */
footer {
  background: var(--ink);
  color: #b9d1cc;
  padding-top: 56px;
  font-size: .95rem
}

.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px
}

footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: .8rem
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem
}

footer a {
  color: #dcebe8;
  text-decoration: none
}

footer a:hover {
  color: var(--hazard);
  text-decoration: underline
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-block: 20px;
  font-size: .84rem;
  color: #8fada8
}

/* Floating contact dock */
.dock {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  font-weight: 600;
  min-height: 54px;
  border-radius: 99px;
  padding: 0 20px;
  box-shadow: 0 6px 18px rgba(12, 43, 46, .3)
}

.dock svg {
  width: 24px;
  height: 24px
}

.dock .d-wa {
  background: #25D366;
  color: #06301A
}

.dock .d-tel {
  background: var(--ink);
  color: #fff
}

/* ============ Responsive ============ */
@media (max-width:1000px) {

  .hero .wrap,
  .ident,
  .guide,
  .book {
    grid-template-columns: 1fr
  }

  .hero .wrap {
    gap: 40px;
    padding-block: 56px 64px
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust ul {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust li:nth-child(3) {
    border-inline-start: 0
  }

  .trust li:nth-child(n+3) {
    border-top: 1px solid var(--line)
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px
  }

  .steps li:nth-child(2)::after {
    display: none
  }

  .sectors,
  .areas,
  .vid-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .foot {
    grid-template-columns: 1fr 1fr
  }

  .result {
    position: static
  }
}

@media (max-width:820px) {
  .menu-btn {
    display: grid;
    place-items: center
  }

  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 10px 20px 18px
  }

  .nav.open {
    display: block
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px
  }

  .nav a {
    padding: .8rem
  }
}

@media (max-width:640px) {
  .sec {
    padding: 64px 0
  }

  .svc-grid,
  .sectors,
  .areas,
  .steps,
  .trust ul,
  .foot,
  .row2,
  .vid-grid {
    grid-template-columns: 1fr
  }

  .trust li {
    border-inline-start: 0;
    border-top: 1px solid var(--line)
  }

  .trust li:first-child {
    border-top: 0
  }

  .steps li::after {
    display: none
  }

  .book-info,
  .book-form {
    padding: 28px 22px
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between
  }

  .dock {
    inset-inline: 0;
    bottom: 0;
    flex-direction: row;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 8px 10px;
    gap: 8px
  }

  .dock a {
    flex: 1;
    border-radius: 10px;
    min-height: 50px;
    box-shadow: none;
    padding: 0 8px
  }

  body {
    padding-bottom: 76px
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  * {
    transition: none !important;
    animation: none !important
  }
}

@media print {

  .topbar,
  .site-header,
  .dock,
  .hero::before,
  .hero::after {
    display: none
  }

  .sec {
    padding: 24px 0
  }
}