﻿:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #0b1b2b;
  --muted: #5b6b7b;
  --blue: #0b2c61;
  --blue-deep: #071837;
  --gold: #c59b41;
  --gold-soft: #e7d3a3;
  --surface: #f4f6fb;
  --surface-strong: #eef1f7;
  --line: #e0e6ef;
  --shadow: 0 20px 50px rgba(8, 21, 38, 0.12);
  --shadow-soft: 0 14px 40px rgba(8, 21, 38, 0.08);
  --radius: 24px;
  --theme-duration: 420ms;
  --theme-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(11, 44, 97, 0.08), transparent 55%),
    radial-gradient(circle at 85% 18%, rgba(197, 155, 65, 0.12), transparent 45%),
    #ffffff;
  min-height: 100vh;
  transition: background var(--theme-duration) var(--theme-ease),
    color var(--theme-duration) var(--theme-ease);
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  font: inherit;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.8;
  mix-blend-mode: multiply;
  transition: opacity var(--theme-duration) var(--theme-ease);
}

.glow--one {
  width: 320px;
  height: 320px;
  background: rgba(11, 44, 97, 0.12);
  top: -60px;
  left: -60px;
}

.glow--two {
  width: 260px;
  height: 260px;
  background: rgba(197, 155, 65, 0.18);
  top: 10%;
  right: -80px;
}

.glow--three {
  width: 220px;
  height: 220px;
  background: rgba(11, 44, 97, 0.08);
  bottom: -60px;
  right: 15%;
}

.page-loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(11, 44, 97, 0.12), transparent 52%),
    radial-gradient(circle at 80% 18%, rgba(197, 155, 65, 0.22), transparent 55%),
    var(--bg);
  display: grid;
  place-items: center;
  z-index: 20;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.page-loader__content {
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
}

.page-loader__mark {
  width: 164px;
  height: 164px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
}

.page-loader__mark::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(8, 21, 38, 0.12);
  z-index: 0;
}

.page-loader__mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: conic-gradient(
    from 90deg,
    rgba(197, 155, 65, 0.15),
    rgba(197, 155, 65, 0.85),
    rgba(11, 44, 97, 0.75),
    rgba(197, 155, 65, 0.15)
  );
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 64%);
  mask: radial-gradient(circle, transparent 62%, #000 64%);
  animation: loader-spin 1.2s linear infinite;
  z-index: 1;
}

.page-loader__logo {
  width: 96px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: loader-pulse 1.8s ease-in-out infinite;
}

.page-loader__text {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-loader__bar {
  width: 220px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 44, 97, 0.14);
  overflow: hidden;
}

.page-loader__bar-fill {
  display: block;
  width: 48%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 44, 97, 0),
    rgba(197, 155, 65, 0.85),
    rgba(11, 44, 97, 0.85),
    rgba(11, 44, 97, 0)
  );
  animation: loader-bar 1.1s ease-in-out infinite;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 36, 70, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text {
  font-size: 0.9rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 44, 97, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle__icon {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  display: block;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-open .nav-toggle__icon {
  background: transparent;
}

.site-header.is-open .nav-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background var(--theme-duration) var(--theme-ease),
    color var(--theme-duration) var(--theme-ease), border-color var(--theme-duration) var(--theme-ease);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
}

.btn-secondary {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-ghost {
  border: 1px solid rgba(11, 44, 97, 0.2);
  color: var(--blue);
}

.btn-link {
  color: var(--blue);
  font-weight: 600;
  padding: 0;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 44, 97, 0.2);
  color: var(--blue);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.theme-toggle__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(197, 155, 65, 0.5);
}

.hero {
  padding: 80px 0 70px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.visual-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visual-card--large {
  padding: 20px;
}

.visual-photo {
  border-radius: 16px;
  min-height: 160px;
  background: linear-gradient(135deg, rgba(11, 44, 97, 0.12), rgba(197, 155, 65, 0.22));
  position: relative;
  overflow: hidden;
}

.visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.6), transparent 60%);
}

.visual-photo--meeting {
  min-height: 220px;
  background: linear-gradient(120deg, rgba(11, 44, 97, 0.2), rgba(11, 44, 97, 0.05)),
    linear-gradient(140deg, rgba(197, 155, 65, 0.35), rgba(197, 155, 65, 0.08));
}

.visual-photo--signature {
  background: linear-gradient(120deg, rgba(11, 44, 97, 0.15), rgba(255, 255, 255, 0.2));
}

.visual-photo--conference {
  background: linear-gradient(120deg, rgba(197, 155, 65, 0.3), rgba(255, 255, 255, 0.2));
}

.visual-caption {
  font-size: 0.9rem;
  color: var(--muted);
}

.visual-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--surface-strong);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold);
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.tih-inline {
  padding: 18px;
  border-radius: 16px;
  background: rgba(197, 155, 65, 0.12);
  border: 1px solid rgba(197, 155, 65, 0.35);
  color: var(--blue);
}

.pillars {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.pillars h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
}

.offer-card h3 {
  font-size: 1.25rem;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.6;
}

.offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(11, 44, 97, 0.1);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.offer-icon svg {
  width: 32px;
  height: 32px;
}

.offer-meta {
  font-weight: 600;
  color: var(--blue);
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--muted);
  line-height: 1.6;
}

.tih {
  background: linear-gradient(120deg, rgba(11, 44, 97, 0.08), rgba(197, 155, 65, 0.2));
}

.tih-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.tih-content {
  display: grid;
  gap: 16px;
  color: var(--blue-deep);
}

.tih-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 44, 97, 0.12);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.guarantee-card {
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.guarantee-card h3 {
  margin-bottom: 8px;
}

.guarantee-card p {
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  background: var(--surface-strong);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-content {
  display: grid;
  gap: 16px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
}

.contact-details span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.contact-details strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--blue-deep);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: var(--surface);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(11, 44, 97, 0.3);
  border-color: rgba(11, 44, 97, 0.4);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.calendar-block {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.calendar-head h2 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.cal-embed {
  width: 100%;
  height: 720px;
  border-radius: 18px;
  background: #41414100;
  border: 1px solid var(--line);
  overflow: hidden;
}

#my-cal-inline-30min {
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 40px 0 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.85s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.is-preload [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition: none;
}

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-bar {
  0% {
    transform: translateX(-120%);
  }
  60% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(120%);
  }
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a1224;
  --ink: #f5f7fc;
  --muted: rgba(245, 247, 252, 0.65);
  --blue: #9bb6ff;
  --blue-deep: #e8ecff;
  --gold: #e0c07a;
  --surface: rgba(18, 27, 46, 0.9);
  --surface-strong: rgba(12, 18, 33, 0.95);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.35);
  background:
    radial-gradient(circle at 12% 8%, rgba(115, 145, 255, 0.2), transparent 55%),
    radial-gradient(circle at 85% 18%, rgba(224, 192, 122, 0.2), transparent 45%),
    #0a1224;
}

body[data-theme="dark"] .site-header {
  background: rgba(10, 18, 36, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold);
  background: rgba(15, 22, 40, 0.8);
}

body[data-theme="dark"] .nav-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold);
  background: rgba(15, 22, 40, 0.8);
}

body[data-theme="dark"] .header-panel {
  background: rgba(7, 12, 24, 0.92);
}

body[data-theme="dark"] .pill,
body[data-theme="dark"] .offer-card,
body[data-theme="dark"] .pillars,
body[data-theme="dark"] .why-card,
body[data-theme="dark"] .guarantee-card,
body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .calendar-block,
body[data-theme="dark"] .visual-card {
  background: rgba(15, 22, 40, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .btn-secondary,
body[data-theme="dark"] .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--gold);
}

body[data-theme="dark"] .btn-primary {
  background: #1f3766;
  color: #ffffff;
}

body[data-theme="dark"] .page-loader__mark::before {
  background: rgba(12, 18, 33, 0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

body[data-theme="dark"] .page-loader__bar {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    position: relative;
    z-index: 12;
  }

  .brand {
    order: 1;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
    position: relative;
    z-index: 12;
  }

  .header-panel {
    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    min-height: 100vh;
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 96px 20px 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-header.is-open .header-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav {
    display: grid;
    gap: 12px;
    font-size: 1rem;
    color: var(--blue-deep);
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .nav a::after {
    display: none;
  }

  .header-actions {
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .header-actions .btn,
  .header-actions .theme-toggle {
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .about-grid,
  .tih-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 72px 0 44px;
  }

  .hero-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
  }

  .hero-visual {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-visual > * {
    scroll-snap-align: start;
  }

  .visual-stack {
    display: contents;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-highlights {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .pill {
    flex: 0 0 auto;
  }

  .section {
    padding: 46px 0;
  }

  .section-alt,
  .contact,
  .tih {
    background: transparent;
  }

  .section .container {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
  }

  .tih .container {
    background: linear-gradient(135deg, rgba(11, 44, 97, 0.12), rgba(197, 155, 65, 0.22));
  }

  .offer-grid,
  .why-grid,
  .guarantee-grid {
    grid-template-columns: 86%;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .offer-card,
  .why-card,
  .guarantee-card {
    scroll-snap-align: start;
  }

  .btn {
    width: 100%;
  }

  .cal-embed {
    height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__logo {
    animation: none;
  }
}
