.tp-reviews__card {
  background: #f8f8f8;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .tp-reviews__card {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
  }
}

@media (max-width: 899px) {
  .tp-reviews__card {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
  }
}

@media (max-width: 599px) {
  .tp-reviews__card {
    flex: 0 0 100%;
    min-width: 0;
    height: auto;
  }
}

:root {
  --color-primary:        #df2b2f;
  --color-primary-dark:   #b3000e;
  --color-primary-light:  #ff4d57;
  --color-secondary:      #1a1a1a;
  --color-accent:         #f5a623;

  --color-white:          #ffffff;
  --color-off-white:      #f8f8f8;
  --color-light-grey:     #e8e8e8;
  --color-mid-grey:       #9e9e9e;
  --color-dark-grey:      #4a4a4a;
  --color-black:          #111111;

  --font-primary:   'Gotham', 'Gotham SSm', 'Arial', sans-serif;
  --font-heading:   'Gotham', 'Gotham SSm', 'Arial', sans-serif;
  --font-mono:      'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.5rem;
  --text-4xl:   3.25rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-black:  900;

  --line-tight:  1.2;
  --line-normal: 1.5;
  --line-loose:  1.75;

  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  --container-max:  1200px;
  --container-wide: 1440px;
  --gutter:         1.5rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --z-below:    -1;
  --z-base:      0;
  --z-above:    10;
  --z-dropdown: 200;
  --z-sticky:   300;
  --z-overlay:  400;
  --z-modal:    500;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-family: var(--font-primary);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-normal);
  line-height: var(--line-normal);
  color: var(--color-secondary);
  background-color: var(--color-white);
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

article, aside, figcaption, figure, footer,
header, hgroup, main, nav, section { display: block; }

[tabindex="-1"]:focus { outline: 0 !important; }

hr { box-sizing: content-box; height: 0; overflow: visible; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--line-tight);
  color: var(--color-secondary);
}

p { margin-top: 0; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

abbr[title] { text-decoration: underline dotted; cursor: help; border-bottom: 0; }
address { margin-bottom: 1rem; font-style: normal; line-height: inherit; }

ol, ul, dl { margin-top: 0; margin-bottom: 1rem; list-style: none; padding-left: 0; }
ol ol, ul ul, ol ul, ul ol { margin-bottom: 0; }
blockquote { margin: 0 0 1rem; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }

sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-primary); }
a:not([href]):not([tabindex]) { color: inherit; text-decoration: none; }
a:not([href]):not([tabindex]):focus { outline: 0; }

pre, code, kbd, samp { font-family: var(--font-mono); font-size: 1em; }
pre { margin-top: 0; margin-bottom: 1rem; overflow: auto; }
figure { margin: 0 0 1rem; }

img, svg, video { display: block; max-width: 100%; vertical-align: middle; border-style: none; }
svg { overflow: hidden; vertical-align: middle; }

table { border-collapse: collapse; }
th { text-align: inherit; }
label { display: inline-block; margin-bottom: 0.5rem; }

button {
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; }

input, button, select, optgroup, textarea {
  margin: 0; font-family: inherit; font-size: inherit; line-height: inherit;
}
button, input { overflow: visible; }
button, select { text-transform: none; }

button, html [type="button"], [type="reset"], [type="submit"] {
  appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner { padding: 0; border-style: none; }

input[type="radio"], input[type="checkbox"] { box-sizing: border-box; padding: 0; }
textarea { overflow: auto; resize: vertical; }

fieldset { min-width: 0; padding: 0; margin: 0; border: 0; }
legend {
  display: block; width: 100%; max-width: 100%;
  padding: 0; margin-bottom: 0.5rem;
  font-size: 1.5rem; line-height: inherit;
  color: inherit; white-space: normal;
}

progress { vertical-align: baseline; }
[type="search"] { outline-offset: -2px; appearance: none; }
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { font: inherit; -webkit-appearance: button; }
output { display: inline-block; }
summary { display: list-item; cursor: pointer; }
template { display: none; }
[hidden] { display: none !important; }

h1 { font-size: var(--text-4xl); font-weight: var(--fw-black); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-md); }

.text-red    { color: var(--color-primary); }
.text-dark   { color: var(--color-secondary); }
.text-grey   { color: var(--color-mid-grey); }
.text-white  { color: var(--color-white) !important; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-sm     { font-size: var(--text-sm); }
.text-lg     { font-size: var(--text-lg); }
.text-bold   { font-weight: var(--fw-bold); }
.text-upper  { text-transform: uppercase; letter-spacing: 0.08em; }
.highlight   { color: var(--color-primary); }

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }

.section     { padding-block: var(--space-16); }
.section--sm { padding-block: var(--space-10); }
.section--lg { padding-block: var(--space-24); }
.section--grey { background-color: var(--color-off-white); }
.section--red  { background-color: var(--color-primary); color: var(--color-white); }
.section--dark { background-color: var(--color-secondary); color: var(--color-white); }

.section__title    { margin-bottom: var(--space-4); text-align: center; }
.section__subtitle {
  font-size: var(--text-md);
  color: var(--color-dark-grey);
  max-width: 640px;
  margin-inline: auto;
}

.grid    { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap   { flex-wrap: wrap; }
.gap-4       { gap: var(--space-4); }
.gap-6       { gap: var(--space-6); }

.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }

.hidden   { display: none !important; }
.sr-only  {
  border: 0; clip-path: inset(50%); height: 1px;
  margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--color-white);
  box-shadow: inset 0 -3px 0 var(--color-primary);
}

.header-topbar {
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-light-grey);
  padding-block: var(--space-2);
}

.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-6);
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-secondary);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.topbar-link svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-primary); }
.topbar-link:hover { color: var(--color-primary); }

.header-nav { padding-block: var(--space-4); }

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; display: block; }

.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 26px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Gotham', 'Gotham SSm', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}
.nav-book-btn:hover { background: var(--color-primary-dark); color: var(--color-white); }
.nav-book-btn svg   { width: 16px; height: 16px; flex-shrink: 0; }

.mobile-book-strip {
  display: none;
  background: var(--color-primary);
  text-align: center;
  padding: var(--space-3);
}
.mobile-book-strip a { color: var(--color-white); font-size: var(--text-sm); font-weight: var(--fw-semi); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary > li { position: relative; }

.nav-primary > li > a,
.nav-primary > li > button {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-family: 'Gotham', 'Gotham SSm', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav-primary > li > a:hover,
.nav-primary > li > a.is-active {
  background: var(--color-off-white);
  color: var(--color-primary);
}

.nav-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.nav-primary > li:hover .nav-chevron { transform: rotate(180deg); }

.nav-search-btn {
  display: flex;
  align-items: center;
  padding: var(--space-2);
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}
.nav-search-btn:hover { color: var(--color-primary); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  min-width: 580px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--color-primary);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base),
              visibility var(--transition-base);
  z-index: var(--z-dropdown);
}

.nav-primary > li:hover .nav-dropdown,
.nav-primary > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-col h5 {
  font-family: 'Gotham', 'Gotham SSm', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding-bottom: 20px;
  color: var(--color-secondary);
  margin-bottom: 0;
}

.dropdown-col a {
  display: block;
  padding: var(--space-2) 0;
  font-family: 'Gotham', 'Gotham SSm', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark-grey);
  border-bottom: 1px solid var(--color-light-grey);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.dropdown-col a:last-child { border-bottom: none; }
.dropdown-col a:hover { color: var(--color-primary); padding-left: var(--space-2); }

.dropdown-col .sub-links { display: block; }

.dropdown-promo {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  grid-column: span 2;
  border-left: 4px solid var(--color-primary);
}
.dropdown-promo h4 { font-size: var(--text-md); margin-bottom: var(--space-2); }
.dropdown-promo p  { font-size: var(--text-sm); color: var(--color-dark-grey); margin-bottom: var(--space-4); }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}
.search-overlay.is-open { opacity: 1; visibility: visible; }

.search-overlay__inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  width: 100%;
  max-width: 560px;
  margin-inline: var(--gutter);
  position: relative;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 2px solid var(--color-light-grey);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5);
  transition: border-color var(--transition-fast);
}
.search-overlay__form:focus-within { border-color: var(--color-primary); }
.search-overlay__form input { flex: 1; border: none; outline: none; font-size: var(--text-md); background: none; }

.search-overlay__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2);
  color: var(--color-mid-grey);
  transition: color var(--transition-fast);
}
.search-overlay__close:hover { color: var(--color-secondary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  font-family: var(--font-primary);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  transition: background var(--transition-base), color var(--transition-base),
              border-color var(--transition-base), box-shadow var(--transition-base),
              transform var(--transition-fast);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg    { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary {
  background-color: #df2b2f;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 26px;
  border-radius:4px;
  border-color: #df2b2f;
}
.btn--primary:hover {
  background-color: #c1232b;
  border-color: #c1232b;
  color: #fff;
  box-shadow: 0 4px 16px rgba(227,6,19,.35);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover { background: var(--color-primary); color: var(--color-white); }

.btn--ghost,
.btn--white {
 background: var(--color-white); color: var(--color-primary); border-color: var(--color-primary);
}
.btn--ghost:hover,
.btn--white:hover { background: var(--color-white); color: var(--color-primary); }

.btn--dark {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.btn--dark:hover { background: #333; border-color: #333; color: var(--color-white); }

.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-md); }

.hero {
  background: var(--color-white);
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: stretch;
  position: relative;
  min-height: 520px;
  padding-right: 0;
  overflow: visible;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 3rem 0;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.hero__subtitle-block {
  font-size: 31px;
  font-weight: 900;
  color: #000;
  line-height: 66px;
  margin-bottom: 1rem;
  overflow: visible;
  position: relative;
}

.hero__cycling-wrap {
  display: block;
  position: relative;
  height: 66px;
  overflow: hidden;
}

.hero__cycling-text {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transition: bottom 0.4s ease, opacity 0.4s ease;
}

.hero__desc {
  font-size: 18px;
  color: var(--color-dark-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 27px;
  color: var(--color-primary);
  transition: color 0.15s;
}
.hero__phone:hover { color: var(--color-primary); }
.hero__phone svg   { width: 24px; height: 24px; flex-shrink: 0; stroke: var(--color-primary); }

.hero__blobs {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow: visible;
}

.hero__blobs::before {
  content: '';
  position: absolute;
  width: 72%;
  height: 92%;
  top: 0;
  right: 0;
  background: var(--color-primary);
  border-radius: 0 0 0 100%;
  z-index: 0;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}
@keyframes blob-float-2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(-1deg); }
  66%       { transform: translateY(5px) rotate(0.5deg); }
}
@keyframes blob-float-3 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}
@keyframes blob-float-4 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-9px) rotate(1.2deg); }
  80%       { transform: translateY(4px) rotate(-0.5deg); }
}
@keyframes blob-float-5 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes blob-float-6 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  45%       { transform: translateY(8px) rotate(-1deg); }
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  border: none;
  will-change: transform;
}
.hero__blob img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__blob--1 { width: 38%; height: 0; padding-bottom: 38%; top: 8%; right: 28%; z-index: 2; animation: blob-float-1 4s ease-in-out infinite; }
.hero__blob--2 { width: 24%; height: 0; padding-bottom: 24%; top: -6%; right: 5%; z-index: 3; animation: blob-float-2 5.5s ease-in-out infinite; }
.hero__blob--3 { width: 19%; height: 0; padding-bottom: 19%; top: 28%; right: 2%; z-index: 2; animation: blob-float-3 3.8s ease-in-out infinite; animation-delay: 0.6s; }
.hero__blob--4 { width: 22%; height: 0; padding-bottom: 22%; top: 46%; right: 30%; z-index: 2; animation: blob-float-4 4.8s ease-in-out infinite; animation-delay: 1.2s; }
.hero__blob--5 { width: 16%; height: 0; padding-bottom: 16%; top: 56%; right: 10%; z-index: 3; animation: blob-float-5 4.2s ease-in-out infinite; animation-delay: 0.3s; }
.hero__blob--6 { width: 18%; height: 0; padding-bottom: 18%; top: 67%; right: 20%; z-index: 1; animation: blob-float-6 5.1s ease-in-out infinite; animation-delay: 0.9s; }

.trustpilot-bar {
  background: var(--color-white);
  padding-block: var(--space-3);
}
.trustpilot-bar .container {
  display: flex;
  justify-content: center;
}
.trustbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: var(--color-secondary);
}
.trustbar__label { font-weight: 400; }
.trustbar__excellent { font-weight: 700; }
.trustbar__stars {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.trustbar__star {
  width: 20px;
  height: 20px;
}
.trustbar__rating { font-weight: 400; }
.trustbar__count { color: var(--color-secondary); text-decoration: underline; }
.trustbar__count:hover { color: var(--color-primary); }
.trustbar__tp-logo {
  display: inline-flex;
  align-items: center;
}
.trustbar__tp-logo svg {
  width: auto;
  height: 20px;
}
.trustbar__tp-name {
  font-weight: 700;
  color: var(--color-secondary);
}
.trustbar__tp-name:hover { color: var(--color-primary); }

@media (max-width: 768px) {
  .trustbar__label,
  .trustbar__excellent,
  .trustbar__rating,
  .trustbar__count,
  .trustbar__tp-name { display: none; }
  .trustbar { gap: 6px; }
}

.roadmap-section {
  background: #f8f8f8;
  overflow: hidden;
  padding-block: 4rem;
}

.roadmap__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 3.5rem;
  color: var(--color-secondary);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.2;
}

.roadmap__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.roadmap__road-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.roadmap__road-svg--mobile {
  display: none;
}

.roadmap__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}
.roadmap__card--alt {
  flex-direction: row;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0;
}

.roadmap__content {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 400px;
  flex-direction: column;
  justify-content: center;
  margin-left: -80px;
  padding-left: 100px;
}
.roadmap__card--alt .roadmap__content {
  margin-left: 0;
  margin-right: -80px;
  padding-left: 1.5rem;
  padding-right: 100px;
  text-align: left;
}

.roadmap__img-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 3;
}
.roadmap__circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.roadmap__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.roadmap__card--2 .roadmap__circle {
  width: auto;
  height: auto;
  max-width: 300px;
  border-radius: 0;
  overflow: visible;
  background: none;
}
.roadmap__card--2 .roadmap__circle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}
.roadmap__card--2 .roadmap__img-area::before {
  display: none;
}

.roadmap__img-area::before {
  display: none;
}

.roadmap__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-80px, -4px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.roadmap__content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
  line-height: 1.25;
}
.roadmap__content p {
  font-size: 0.875rem;
  color: var(--color-dark-grey);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.roadmap__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap 0.15s;
}
.roadmap__cta:hover { gap: 0.625rem; }

.roadmap__app-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.75rem;
}
.roadmap__app-btns img { height: 36px; width: auto; }

.roadmap__qr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.roadmap__qr-label {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
}
.roadmap__qr img {
  width: 72px;
  height: 72px;
  border-radius: 4px;
}

.roadmap__app-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  transition: background 0.2s;
  width: fit-content;
}
.roadmap__app-link:hover {
  background: rgba(227,6,19,0.04);
}

@media (max-width: 768px) {
  .roadmap-section { padding-block: 2.5rem; }
  .roadmap__title { font-size: 1.5rem; margin-bottom: 2rem; }

  .roadmap__road-svg { display: none; }
  .roadmap__road-svg--mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .roadmap__card,
  .roadmap__card--alt {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: 0;
    max-width: 250px;
    align-items: center;
  }

  .roadmap__card { margin-left: 1rem; margin-right: auto; }
  .roadmap__card--alt { margin-left: auto; margin-right: 1rem; }

  .roadmap__card--alt .roadmap__img-area { order: -1; }
  .roadmap__card--alt .roadmap__content  { order: 1; }
  .roadmap__img-area { justify-content: center; position: relative; z-index: 3; margin: 0; padding: 0; }
  .roadmap__circle { width: 180px; height: 180px; }
  .roadmap__card--2 .roadmap__circle { max-width: 180px; }
  .roadmap__number {
    transform: translate(-84px, -4px);
  }

  .roadmap__content {
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 20px;
    padding-top: calc(170px + 1rem);
    margin-top: -170px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    max-width: 100%;
    max-height: none;
    align-items: center;
  }
  .roadmap__card--alt .roadmap__content {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0 0 16px 16px;
    padding: 20px;
    padding-top: calc(170px + 1rem);
    align-items: center;
  }
  .roadmap__content h4 { font-size: 1.05rem; }
  .roadmap__app-btns { justify-content: center; }
  .roadmap__card--alt .roadmap__app-btns { justify-content: center; }
  .roadmap__app-link { justify-content: center; font-size: 0.65rem; }
  .roadmap__qr { display: none; }
}

.trustpilot-carousel-section {
  background: var(--color-white);
  padding-block: var(--space-8);
}
.trustpilot-carousel-section .container {
  max-width: 960px;
}

.tp-reviews {
  background: var(--color-white);
  padding-block: var(--space-10);
}
.tp-reviews__box {
  border: 1px solid var(--color-light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
}
.tp-reviews__inner {
  display: flex;
  gap: var(--space-6);
  align-items: stretch;
  padding: var(--space-6);
  background: var(--color-white);
  overflow: visible;
}
.tp-reviews__summary {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  border-right: 1px solid var(--color-light-grey);
  padding-right: var(--space-6);
  z-index: 2;
  background: var(--color-white);
}
.tp-reviews__excellent {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin: 0;
}
.tp-reviews__stars-big {
  display: flex;
  gap: 3px;
}
.tp-reviews__stars-big svg {
  width: 28px;
  height: 28px;
}
.tp-reviews__based {
  font-size: 12px;
  color: var(--color-dark-grey);
  margin: 0;
}
.tp-reviews__based a { color: var(--color-secondary); text-decoration: underline; }
.tp-reviews__based a:hover { color: var(--color-primary); }
.tp-reviews__tp-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.tp-reviews__tp-logo-svg {
  width: auto;
  height: 22px;
}
.tp-reviews__carousel-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.tp-reviews__track {
  display: flex;
  gap: var(--space-4);
  flex: 1;
  min-width: 0;
  scroll-behavior: smooth;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: visible;
}
.tp-reviews__card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  max-width: none;
  height: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #f8f8f8;
  border-radius: 10px;
  box-sizing: border-box;
}
.tp-reviews__card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}
.tp-reviews__card-stars svg {
  width: 18px;
  height: 18px;
}
.tp-reviews__card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tp-reviews__card-text {
  font-size: 12px;
  color: var(--color-dark-grey);
  line-height: 1.4;
  margin: 0 0 6px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tp-reviews__card-author {
  font-size: 11px;
  color: var(--color-mid-grey);
  margin: 0;
}
.tp-reviews__arrow {
  width: 32px;
  height: 32px;
  z-index: 10;
  border-radius: 50%;
  border: 1px solid var(--color-light-grey);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--color-mid-grey);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.tp-reviews__arrow:hover {
  border-color: var(--color-primary);
  color: #fff;
  background: var(--color-primary);
}
.tp-reviews__arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.tp-reviews__showing-wrap {
  border-top: 1px solid var(--color-light-grey);
  padding: 0.625rem var(--space-6);
  background: var(--color-white);
}
.tp-reviews__showing {
  text-align: center;
  font-size: 12px;
  color: #00b67a;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .tp-reviews__card {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
  }
  .tp-reviews__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .tp-reviews {
    padding-block: 1.5rem;
  }
  .tp-reviews__inner {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  .tp-reviews__summary {
    flex: none;
    border-right: none;
    padding-right: 0;
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-light-grey);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
  }
  .tp-reviews__card {
    flex: 0 0 100%;
    min-width: 0;
  }
  .tp-reviews__showing-wrap {
    padding: 0.5rem var(--space-4);
  }
}

.offers-section {
  background: var(--color-off-white);
  padding-block: var(--space-12);
}
.offers-section__heading {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  margin-bottom: var(--space-8);
}

.offers-section__heading--mobile { display: none; }

.offers-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  height: 233px;
}

.offers-card__col {
  flex: 1 1 0;
  min-width: 0;
}
.offers-card__col--btn {
  flex: 0 0 auto;
  z-index: 1;
}

.offers-card__title-one {
  text-transform: initial;
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--color-secondary);
  font-weight: 400;
  line-height: 36px;
}
.offers-card__title-two {
  text-transform: initial;
  font-size: clamp(20px, 2.3vw, 30px);
  color: var(--color-secondary);
  font-weight: 400;
  line-height: 34px;
}

.offers-card__blob {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: var(--color-primary);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.offers-card__visual {
  position: relative;
  flex-shrink: 0;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  margin-right: var(--space-4);
  align-self: stretch;
}
.offers-card__img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  margin-left: -30px;
}

@media (max-width: 930px) {
  .offers-section__heading--desktop { display: none; }
  .offers-section__heading--mobile {
    display: block;
    font-size: 35px;
    font-weight: var(--fw-black);
    margin-bottom: var(--space-4);
    width: 100%;
  }
  .offers-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
    padding-bottom: var(--space-6);
    height: auto;
  }
  .offers-card__col { flex: none; width: 100%; }
  .offers-card__title-one {
    font-size: 27px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--space-3);
  }
  .offers-card__title-two {
    font-size: 27px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: var(--space-4);
  }
  .offers-card__blob {
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -200px;
    left: auto;
    top: auto;
    transform: none;
  }
  .offers-card__visual {
    width: 160px;
    height: 160px;
    align-self: center;
    margin-top: var(--space-4);
  }
  .offers-card__img {
    width: 160px;
    height: 160px;
  }
}

.services-section {
  background: var(--color-off-white);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-16);
}

.services-section::before {
  content: '';
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--color-primary);
  z-index: 0;
  pointer-events: none;
}
.services-section .container { position: relative; z-index: 1; }

.services-carousel {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  position: relative;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-light-grey);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--color-secondary);
  z-index: 2;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.carousel-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}
.carousel-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.services-track-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.services-grid {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: var(--space-6);
}

.carousel-ctrl-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-light-grey);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
  transition: border-color .2s, background .2s, color .2s;
}
.carousel-ctrl-arrow:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.carousel-ctrl-arrow svg { display: block; pointer-events: none; }

.carousel-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
  margin: 0 5px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.carousel-dot:hover  { background: rgba(0, 0, 0, 0.35); }
.carousel-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.15);
}

.service-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  max-width: 526px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: box-shadow var(--transition-base);
}
.service-card:hover { box-shadow: var(--shadow-md); }

@media (min-width: 1025px) {
  .services-grid { align-items: flex-start; }
  .service-card:nth-child(odd)  { min-height: 492px; }
  .service-card:nth-child(even) { min-height: 477px; margin-top: 80px; }
}

@media (max-width: 1024px) {
  .service-card { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
}
@media (max-width: 640px) {
  .service-card { flex: 0 0 100%; min-width: 100%; min-height: 545px; }
  .service-card--duplicate { display: none; }
}

.service-card__image {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.service-card__body { padding: var(--space-5); display: flex; flex-direction: column; flex: 1; align-items: center; }
.service-card__title { font-size: var(--text-lg); font-weight: var(--fw-bold); margin-bottom: var(--space-2); }
.service-card__text  { font-size: var(--text-sm); color: var(--color-dark-grey); line-height: var(--line-loose); margin-bottom: var(--space-4); flex: 1; }

.service-card__body .btn--primary {
  align-self: center;
}

.reviews-section {
  background: var(--color-off-white);
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.star-icon { width: 57px; height: 55px; fill: var(--color-primary); }

.reviews-heading {
  text-align: center;
  font-size: 69px;
  font-weight: 900;
  color: var(--color-secondary);
  max-width: 1107px;
  margin: 0 auto var(--space-10);
  line-height: 120%;
  text-transform: initial;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 41px;
  max-width: 85%;
}

.review-bubble {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 78%;
  margin-left: 0;
  margin-right: auto;
  transition: margin 0.3s;
}
.review-bubble--alt {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 900px) {
  .review-bubble, .review-bubble--alt {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.review-bubble__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 31px 40px;
  flex: 1;
  min-width: 0;
  position: relative;
}
.review-bubble--alt .review-bubble__inner {
  flex-direction: row-reverse;
}

.review-bubble__photo {
  flex-shrink: 0;
  width: 329px;
  height: 329px;
  border-radius: 50%;
  overflow: hidden;
}
.review-bubble__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-bubble__content {
  flex: 1;
  min-width: 0;
}

.review-bubble__quote {
  margin-bottom: var(--space-3);
  line-height: 0;
}
.review-bubble__quote svg {
  width: 67px;
  height: 50px;
}

.review-bubble__text {
  color: #000;
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: var(--space-3);
}

.review-bubble__author {
  font-size: var(--text-sm);
  color: var(--color-secondary);
  font-weight: 400;
  margin: 0;
}

.reviews-arrow {
  display: none;
}

.review-bubble__arrow {
  position: absolute;
  bottom: -50px;
  left: 180px;
  width: 60px;
  height: 52px;
  line-height: 0;
}
.review-bubble__arrow svg {
  width: 60px;
  height: 52px;
}
.review-bubble--alt .review-bubble__arrow {
  left: auto;
  right: 180px;
}

@media (max-width: 1390px) {
  .review-bubble {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .reviews-heading {
    font-size: 35px;
    max-width: 100%;
  }
  .star-icon { width: 58px; height: 56px; }
  .reviews-list {
    max-width: 100%;
    gap: 0;
  }
  .review-bubble,
  .review-bubble--alt {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .review-bubble__inner,
  .review-bubble--alt .review-bubble__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-5) var(--space-5) var(--space-5);
    position: relative;
  }
  .review-bubble__photo {
    width: 222px;
    height: 222px;
  }
  .review-bubble__text {
    font-size: 17px;
    font-weight: 400;
  }
  .review-bubble__author {
    font-size: var(--text-xs);
    font-weight: 400;
  }
  .review-bubble__quote {
    display: none;
  }
  .review-bubble__arrow {
    display: none;
  }
  .reviews-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    border: none;
    background: var(--color-secondary);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast);
    flex-shrink: 0;
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .reviews-arrow--prev {
    left: 10px;
  }
  .reviews-arrow--next {
    right: 10px;
  }
  .reviews-arrow:hover {
    background: var(--color-primary);
  }
  .review-bubble[data-review] {
    display: none;
  }
  .review-bubble.is-active {
    display: flex;
    opacity: 1;
    transform: none;
  }
}

.why-section { background: var(--color-white); }
.why-section__title {
  text-align: center;
  margin-bottom: var(--space-12);
  font-size: 35px;
  line-height: 1.1em;
  font-weight: 900;
  font-family: 'gotham_htfblack', 'Rubik', 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: 100%;
  margin: 0 auto;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-grey);
  background: var(--color-white);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.why-item--alt { flex-direction: column; text-align: center; margin: 0; }
.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}
.why-item__icon-wrap { flex-shrink: 0; }
.why-item__icon-circle {
  width: 80px; height: 80px;
  background: rgba(227,6,19,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-item__icon-circle img { width: 48px; height: 48px; object-fit: contain; }
.why-item__text { flex: 1; min-width: 0; }
.why-item h4 { font-size: var(--text-md); margin-bottom: var(--space-3); }
.why-item p  { font-size: var(--text-sm); color: var(--color-dark-grey); line-height: var(--line-loose); }

.stats-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding-block: var(--space-12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.stat-card {
  text-align: center;
  padding: var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-card:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: var(--fw-black);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-section { background: var(--color-off-white); }
.social-section h2 {
  text-align: center;
  margin-bottom: var(--space-2);
  color: var(--color-primary);
  font-size: 1.75rem;
  font-weight: 900;
}
.social-desc { text-align: center; color: var(--color-dark-grey); margin-bottom: var(--space-5); }

.soc-outer { display: block; width: 100%; }

.soc-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.soc-tab {
  width: 60px;
  height: 58px;
  border: none;
  border-radius: 10px 10px 0 0;
  background: #cacaca;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background var(--transition-fast), height var(--transition-fast);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.soc-tab svg {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
  display: block;
  flex-shrink: 0;
}
.soc-tab.is-active {
  background: #e3e3e3;
  height: 66px;
  z-index: 3;
}
.soc-tab:not(.is-active):hover { background: #bebebe; }

.soc-wrap {
  background: #e3e3e3;
  border-radius: 0 12px 0 0;
  padding: 1.25rem 1rem;
  position: relative;
  z-index: 1;
}

.soc-feed { display: none; align-items: center; gap: 0.5rem; }
.soc-feed.is-active { display: flex; }

.soc-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.soc-arrow:hover { opacity: 1; }
.soc-arrow:disabled { opacity: 0.25; pointer-events: none; }
.soc-arrow svg { width: 30px; height: 30px; display: block; }

.soc-track-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.soc-track {
  display: flex;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
  will-change: transform;
}

.soc-card {
  flex: 0 0 calc(25% - 7.5px);
  min-width: 0;
  aspect-ratio: 9/16;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
  background: #e3e3e3;
  transition: transform var(--transition-base);
  text-decoration: none;
}
.soc-card:hover { transform: scale(1.025); }
.soc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #e3e3e3;
}
.soc-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: background var(--transition-fast);
}
.soc-card:hover .soc-play { background: rgba(0,0,0,0.40); }
.soc-play svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}

.soc-follow-bar {
  background: var(--color-white);
  border-radius: 0 0 12px 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.soc-follow-bar p {
  font-size: var(--text-sm);
  color: var(--color-dark-grey);
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}
.soc-follow-icons {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 640px) {
  .soc-follow-bar {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  .soc-follow-bar p { text-align: center; }
  .soc-follow-icons { justify-content: center; }
}

.social-bottom {
  display: none;
}

.soc-follow-link {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  flex-shrink: 0;
}
.soc-follow-link svg { width: 40px; height: 40px; display: block; }
.soc-follow-link:hover { transform: translateY(-2px); opacity: 0.88; }
.soc-follow-link--x {
  background: #000;
  padding: 9px;
}
.soc-follow-link--x svg { width: 22px; height: 22px; fill: #fff; }

@media (max-width: 1024px) {
  .soc-card { flex: 0 0 calc(33.333% - 7px); }
}
@media (max-width: 640px) {
  .soc-card { flex: 0 0 calc(50% - 5px); aspect-ratio: 4/5; }
  .soc-wrap { padding: 0.875rem 0.625rem; }
  .soc-tab { width: 50px; height: 50px; overflow: hidden; }
  .soc-tab.is-active { height: 56px; }
  .soc-tab svg { width: 28px; height: 28px; min-width: 28px; max-width: 28px; }
}

.location-section {
  background: var(--color-off-white);
}
.location-title {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-8);
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: relative;
  overflow: visible;
  min-height: 305px;
}

.location-card__text h3 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}
.location-card__text p {
  font-size: var(--text-sm);
  color: var(--color-dark-grey);
  line-height: var(--line-loose);
  max-width: 440px;
}
.location-card__text a { color: var(--color-secondary); text-decoration: underline; font-weight: var(--fw-medium); }
.location-card__text a:hover { color: var(--color-primary); }

.location-card__search {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.location-form--square {
  display: flex;
  max-width: 320px;
  min-width: 260px;
  border: 2px solid var(--color-light-grey);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
  background: var(--color-white);
}
.location-form--square:focus-within { border-color: var(--color-primary); }
.location-form--square input {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  border: none;
  outline: none;
  font-size: var(--text-sm);
  background: none;
}
.location-form--square button {
  padding: var(--space-3) var(--space-5);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 0;
  transition: background var(--transition-fast);
}
.location-form--square button:hover { background: var(--color-primary-dark); }

.location-card__map--desktop {
  flex-shrink: 0;
  display: block;
}
.location-card__map--desktop img {
  width: 240px;
  height: auto;
}

@media (max-width: 1024px) {
  .location-card {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .location-card__map--desktop {
    display: none;
  }
}
@media (max-width: 768px) {
  .location-card {
    grid-template-columns: 1fr;
    padding: var(--space-6);
    text-align: center;
    min-height: auto;
  }
  .location-card__text h3 { font-size: var(--text-xl); }
  .location-card__search { align-items: center; }
  .location-form--square { max-width: 100%; min-width: 0; width: 100%; }
  .location-card__map--desktop { display: none; }
}

.become-section {
  background: var(--color-white);
  border-top: 1px solid var(--color-light-grey);
}
.become-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: center;
}
.become-img-wrap {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 320px;
}
.become-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.become-content h2 { color: var(--color-secondary); margin-bottom: var(--space-4); font-size: 1.75rem; font-weight: 800; line-height: 1.25; }
.become-content p  { color: var(--color-dark-grey); font-size: var(--text-base); line-height: var(--line-loose); margin-bottom: var(--space-6); max-width: 500px; }

@media (max-width: 900px) {
  .become-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-8);
  }
  .become-img-wrap {
    width: 240px;
    height: 240px;
    flex: 0 0 240px;
    margin: 0 auto;
  }
  .become-content p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .become-content div {
    justify-content: center;
  }
}

.partner-section {
  background: var(--color-off-white);
  padding-block: var(--space-10);
  border-top: 1px solid var(--color-light-grey);
}
.partner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-10);
  align-items: center;
}
.partner-content h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.partner-content p  { font-size: var(--text-sm); color: var(--color-dark-grey); max-width: 400px; }

.site-footer {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: var(--line-loose);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  color: rgba(255,255,255,0.65);
}

.footer-app-badges { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }
.footer-app-badges img { height: 36px; width: auto; }

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  padding-block: var(--space-2);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-col a:hover { color: var(--color-white); padding-left: var(--space-2); }

.footer-phone {
  display: flex !important;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white) !important;
  font-weight: var(--fw-semi);
  margin-bottom: var(--space-2);
}
.footer-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background:#fff;
  color: var(--color-white);
  padding: 0 !important;
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover { background: var(--color-primary); padding-left: 0 !important; }

.footer-bottom {
  padding-block: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: var(--text-xs); }
.footer-legal a:hover { color: var(--color-white); padding-left: 0; }

.app-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-overlay);
  background: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  display: none;
}
.app-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--gutter);
}
.app-banner__icon  { width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0; }
.app-banner__info  { flex: 1; }
.app-banner__title { font-weight: var(--fw-bold); font-size: var(--text-sm); color: var(--color-secondary); }
.app-banner__meta  { font-size: var(--text-xs); color: var(--color-mid-grey); }
.app-banner__btns  { display: flex; gap: var(--space-4); margin: var(--space-2); }
.app-banner__btns img { height: 28px; width: auto; }
.app-banner__close { padding: var(--space-2); color: var(--color-mid-grey); flex-shrink: 0; transition: color var(--transition-fast); }
.app-banner__close:hover { color: var(--color-secondary); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cycleText {
  0%,  12% { opacity: 1; transform: translateY(0); }
  15%, 97% { opacity: 0; transform: translateY(-20px); }
  100%     { opacity: 0; transform: translateY(20px); }
}

.animate-fade-up    { animation: fadeInUp    0.6s ease both; }
.animate-slide-left { animation: slideInLeft 0.6s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

.carousel-wrap {
  position: relative;
}
.carousel-wrap.hidden { display: none !important; }

.has-carousel {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.has-carousel::-webkit-scrollbar { display: none; }

.has-carousel > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-light-grey);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: background .2s, color .2s, box-shadow .2s, opacity .2s;
}
.carousel-arrow:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.carousel-arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.carousel-arrow--prev { left: -20px; }
.carousel-arrow--next { right: -20px; }

@media (max-width: 768px) {
  .carousel-arrow--prev { left: -4px; }
  .carousel-arrow--next { right: -4px; }
  .carousel-arrow { width: 32px; height: 32px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
}
.carousel-dot button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-mid-grey);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.carousel-dot button:hover {
  border-color: var(--color-primary);
}
.carousel-dot button.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--color-secondary); }

.trustbar__star {
  transition: transform .5s ease, opacity .5s ease;
}
.trustbar__star.is-filled {
  animation: trustbar-pop .5s ease forwards;
}
@keyframes trustbar-pop {
  0%   { transform: scale(0.5); opacity: 0.3; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1024px) {

  .header-topbar    { display: none; }
  .mobile-book-strip { display: block; }
  .nav-primary      { display: none; }
  .nav-toggle       { display: flex; }
  .nav-book-btn     { display: none; }

  .reviews-grid     { grid-template-columns: 1fr; }
  .carousel-btn     { width: 36px; height: 36px; min-width: 36px; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-card        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .social-feed      { grid-template-columns: repeat(4, 1fr); }
  .location-inner   { grid-template-columns: 1fr; }
  .location-map     { display: none; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .partner-inner    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {

  :root { --gutter: 1rem; }

  h1 { font-size: var(--text-2xl); }
  h2 { font-size: var(--text-xl); }
  h3 { font-size: var(--text-xl); }

  .section     { padding-block: var(--space-12); }
  .section--lg { padding-block: var(--space-16); }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

  .why-item--alt  { flex-direction: column !important; text-align: center !important; }
  .why-item__icon-wrap { align-self: center; }
  .why-grid       { grid-template-columns: 1fr; }
  .carousel-btn   { width: 32px; height: 32px; min-width: 32px; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid   { grid-template-columns: 1fr; }
  .social-feed    { grid-template-columns: repeat(2, 1fr); }
  .social-tabs    { flex-wrap: wrap; }
  .location-form  { max-width: 100%; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .footer-legal   { justify-content: center; }
  .app-banner     { display: block; }
}

@media (max-width: 579px) {
   .hero .container  {
    grid-template-columns: 1fr;
    text-align: center;
    overflow: visible;
  }
  .hero__content {
    padding: 2rem 1rem;
    order: 2;
    align-items: center;
  }
  .hero__title { font-size: 31px; line-height: 120%; }
  .hero__subtitle-block { width: 100%; line-height: 40px; }
  .hero__cycling-wrap { height: 40px; }
  .hero__desc       { margin-inline: auto; }
  .hero__actions    { justify-content: center; flex-direction: column; align-items: center; gap: 1rem; }
  .hero__blobs {
    order: 1;
    width: 100%;
    min-height: 300px;
    height: 55vw;
    max-height: 380px;
    overflow: visible;
  }
  .hero__blobs::before {
    width: 70%;
    height: 92%;
    top: 0;
    right: 0;
    border-radius: 0 0 0 100%;
  }

.hero__blob--1 { width: 38%; height: 0; padding-bottom: 38%; top: 8px; right: 28%; z-index: 0; animation: blob-float-1 4s ease-in-out infinite; }
.hero__blob--2 { width: 24%; height: 0; padding-bottom: 24%; top: -6%; right: 5%; z-index: 3; animation: blob-float-2 5.5s ease-in-out infinite; }
.hero__blob--3 { width: 19%; height: 0; padding-bottom: 19%; top: 28%; right: 2%; z-index: 2; animation: blob-float-3 3.8s ease-in-out infinite; animation-delay: 0.6s; }
.hero__blob--4 { width: 22%; height: 0; padding-bottom: 22%; top: 46px; right: 30%; z-index: 2; animation: blob-float-4 4.8s ease-in-out infinite; animation-delay: 1.2s; }
.hero__blob--5 { width: 16%; height: 0; padding-bottom: 16%; top: 56%; right: 10%; z-index: 3; animation: blob-float-5 4.2s ease-in-out infinite; animation-delay: 0.3s; }
.hero__blob--6 { width: 18%; height: 0; padding-bottom: 18%; top: 67%; right: 20%; z-index: 1; animation: blob-float-6 5.1s ease-in-out infinite; animation-delay: 0.9s; }

  h1            { font-size: var(--text-xl); }
  .hero__title  { font-size: 31px; line-height: 120%; }
  .hero__blobs  { height: 52vw; min-height: 200px; max-height: 280px; }
  .hero__phone  { font-size: 1.1rem; }
  .hero__actions { flex-direction: column; gap: 0.75rem; align-items: center; }
  .btn--lg      { padding: var(--space-3) var(--space-6); font-size: var(--text-sm); }
  .stats-grid   { grid-template-columns: 1fr; }
  .stat-card    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .social-feed  { grid-template-columns: repeat(2, 1fr); }
}
