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

    :root {
      --navy:    #1a2e52;
      --blue:    #2c5197;
      --blue-lt: #e8eef8;
      --grass:   #2a7d4f;
      --grass-lt:#e6f4ed;
      --amber:   #e07b00;
      --amber-lt:#fff4e0;
      --red:     #e84040;
      --red-lt:  #fdeaea;
      --white:   #ffffff;
      --offwhite:#f7f8fa;
      --muted:   #6b7280;
      --border:  #e2e6ed;
      --text:    #1a1f2e;

      --font-display: 'Sora', sans-serif;
      --font-body:    'Inter', sans-serif;

      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-xl: 24px;

      --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
      --shadow-md: 0 4px 16px rgba(0,0,0,.10);
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: #1a1f2e; background: #ffffff; font-size: 16px; line-height: 1.6; }

    img { max-width: 100%; display: block; }
    a { color: #2c5197; text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      background: #f7f8fa; border-bottom: 1px solid #e2e6ed;
      padding: 10px 5%; font-size: .8rem; color: #6b7280;
      display: flex; gap: 6px; align-items: center;
    }
    .breadcrumb a { color: #6b7280; }
    .breadcrumb a:hover { color: #2c5197; }
    .breadcrumb__sep { opacity: .5; }

    /* ── HERO ── */
    .cb-hero {
      background-color: #1a2e52;
      padding: 72px 5% 64px;
      position: relative; overflow: hidden;
    }
    .cb-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, rgba(26,46,82,1) 0%, rgba(26,46,82,.98) 42%, rgba(26,46,82,.76) 62%, rgba(26,46,82,.32) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/svg%3E");
      z-index: 1;
    }
    .cb-hero::after {
      content: '';
      position: absolute;
      inset: 0 0 0 auto;
      width: min(62%, 760px);
      background: var(--cb-hero-image) right center / contain no-repeat;
      opacity: .9;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 92%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 92%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }
    .cb-hero__inner { position: relative; max-width: 720px; z-index: 2; }
    .cb-hero__eyebrow {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
      font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
    }
    .cb-hero__eyebrow::before { content: '📍'; font-size: .85rem; }
    h1.cb-hero__title {
      font-family: 'Sora', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800; color: #ffffff; line-height: 1.1;
      letter-spacing: -0.03em; margin-bottom: 20px;
    }
    h1.cb-hero__title em { color: #7fb3f5; font-style: normal; }
    .cb-hero__sub {
      font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 580px;
      line-height: 1.7; margin-bottom: 36px;
    }
    .cb-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 13px 24px; border-radius: 6px;
      font-weight: 600; font-size: .95rem; cursor: pointer;
      transition: all .2s; border: none;
      text-decoration: none;
    }
    .btn--primary { background: #ffffff; color: #1a2e52; }
    .btn--primary:hover { background: #f0f4ff; text-decoration: none; }
    .btn--ghost { background: transparent; color: #ffffff; border: 1.5px solid rgba(255,255,255,.35); }
    .btn--ghost:hover { background: rgba(255,255,255,.08); text-decoration: none; }
    .cb-hero__trust {
      margin-top: 40px; padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex; gap: 24px; flex-wrap: wrap;
    }
    .cb-hero__trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .85rem; }
    .cb-hero__trust-item svg { flex-shrink: 0; }

    /* ── SECTIONS ── */
    section { padding: 64px 5%; }
    section:nth-child(even):not(.cb-hero) { background: #f7f8fa; }
    .section__label {
      font-size: .75rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: #e84040; margin-bottom: 10px;
      text-align: center !important;
    }
    .section__title {
      font-family: 'Sora', sans-serif; font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700; color: #1a2e52; line-height: 1.2;
      letter-spacing: -0.02em; margin-bottom: 14px;
      text-align: center;
    }
    .section__lead {
      font-size: 1rem; color: #6b7280; max-width: 600px; line-height: 1.7;
      margin: 0 auto 40px;
      text-align: center;
    }

    /* ── TRUST PILLS ── */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }
    .trust-card {
      background: #ffffff; border: 1px solid #e2e6ed;
      border-radius: 16px; padding: 24px 20px;
      display: flex; flex-direction: column; gap: 10px;
      box-shadow: 0 1px 3px rgba(0,0,0,.08);
      transition: box-shadow .2s;
    }
    .trust-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.10); }
    .trust-card__icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .trust-card__icon--blue { background: #e8eef8; }
    .trust-card__icon--green { background: #e6f4ed; }
    .trust-card__icon--amber { background: #fff4e0; }
    .trust-card h3 { font-size: .95rem; font-weight: 600; color: #1a2e52; }
    .trust-card p { font-size: .875rem; color: #6b7280; line-height: 1.6; }

    /* ── LOCAL AREA ── */
    .local-grid {
      display: block;
    }
    .local-prose { max-width: 900px; margin: 0 auto; }
    .local-prose h3 {
      font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700;
      color: #1a2e52; margin-bottom: 8px; margin-top: 24px;
      text-align: center;
    }
    .local-prose h3:first-child { margin-top: 0; }
    .local-prose p { font-size: .9rem; color: #6b7280; line-height: 1.7; margin: 0 auto 12px; text-align: left; }
    .local-badges { justify-content: center; }
    .local-prose ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .local-prose ul li {
      font-size: .875rem; color: #6b7280; padding-left: 18px; position: relative;
    }
    .local-prose ul li::before {
      content: '✓'; position: absolute; left: 0;
      color: #2a7d4f; font-weight: 700; font-size: .8rem;
    }
    .local-map-placeholder {
      background: #e8eef8; border-radius: 16px;
      border: 1.5px dashed #b0c4e0;
      min-height: 340px; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 10px;
      color: #2c5197; text-align: center; padding: 24px;
    }
    .local-map-placeholder__icon { font-size: 2.5rem; }
    .local-map-placeholder p { font-size: .85rem; color: #6b7280; max-width: 200px; }

    /* ── HOW IT WORKS ── */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0; position: relative;
    }
    .steps::before {
      content: '';
      position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(90deg, transparent, #e2e6ed 20%, #e2e6ed 80%, transparent);
    }
    .step { text-align: center; padding: 0 20px; position: relative; }
    .step__num {
      width: 56px; height: 56px; border-radius: 50%;
      background: #1a2e52; color: #ffffff;
      font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px; position: relative; z-index: 1;
    }
    .step h3 { font-size: .95rem; font-weight: 600; color: #1a2e52; margin-bottom: 8px; }
    .step p { font-size: .85rem; color: #6b7280; line-height: 1.6; }

    /* ── COACH LISTING ── */
    .coach-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px; margin-bottom: 28px;
    }
    .coach-card {
      background: #ffffff; border: 1px solid #e2e6ed;
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,.08); transition: box-shadow .2s, transform .2s;
    }
    .coach-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.10); transform: translateY(-2px); }
    .coach-card__img {
      width: 100%; height: 180px;
      box-sizing: border-box;
      background:
        linear-gradient(135deg, rgba(26,46,82,.95), rgba(44,81,151,.9)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/svg%3E");
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
      overflow: hidden;
      position: relative;
      padding: 10px 14px;
    }
    .coach-card__img::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(26,46,82,.92) 0%, rgba(26,46,82,.45) 7%, transparent 14%, transparent 86%, rgba(26,46,82,.45) 93%, rgba(26,46,82,.92) 100%),
        linear-gradient(90deg, rgba(26,46,82,.92) 0%, rgba(26,46,82,.45) 7%, transparent 14%, transparent 86%, rgba(26,46,82,.45) 93%, rgba(26,46,82,.92) 100%);
      pointer-events: none;
      z-index: 2;
    }
    .coach-card__img img {
      display: block;
      width: auto; height: auto;
      max-width: 100%; max-height: 100%;
      opacity: .96;
      position: relative;
      z-index: 1;
      border-radius: 34px;
      clip-path: inset(0 round 34px);
      -webkit-mask-image:
        linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask-image:
        linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
      mask-composite: intersect;
    }
    .coach-card__body { padding: 18px; }
    .coach-card__name { font-weight: 700; color: #1a2e52; font-size: 1rem; margin-bottom: 2px; }
    .coach-card__location { font-size: .8rem; color: #6b7280; margin-bottom: 10px; }
    .coach-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
    .tag {
      font-size: .72rem; font-weight: 600;
      padding: 3px 8px; border-radius: 100px;
      background: #e8eef8; color: #2c5197;
    }
    .tag--green { background: #e6f4ed; color: #2a7d4f; }
    .coach-card__rating { display: flex; align-items: center; gap: 5px; font-size: .82rem; color: #6b7280; margin-bottom: 14px; }
    .coach-card__rating .stars { color: #f59e0b; letter-spacing: -.5px; }
    .coach-card__price { font-weight: 700; color: #1a2e52; font-size: .95rem; margin-bottom: 14px; }
    .coach-card__price span { font-size: .8rem; font-weight: 400; color: #6b7280; }
    .coach-card__btn {
      display: block; text-align: center;
      background: #1a2e52; color: #ffffff;
      padding: 10px; border-radius: 6px;
      font-size: .875rem; font-weight: 600;
      transition: background .2s;
    }
    .coach-card__btn:hover { background: #2c5197; text-decoration: none; }
    .coach-card__dbs {
      display: flex; align-items: center; gap: 4px;
      font-size: .75rem; color: #2a7d4f; font-weight: 600; margin-bottom: 8px;
    }

    /* ── DELIGHT SPOTLIGHT ── */
    .spotlight {
      background: #1a2e52;
      border-radius: 24px;
      padding: 40px;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 40px;
      align-items: start;
      margin-bottom: 48px;
      position: relative;
      overflow: hidden;
    }
    .spotlight::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 320px; height: 100%;
      background: radial-gradient(ellipse at top right, rgba(127,179,245,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .spotlight__badge {
      position: absolute; top: 20px; right: 24px;
      background: #f5c842; color: #1a2e52;
      font-size: .72rem; font-weight: 800;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 100px;
    }
    .spotlight__avatar {
      width: 220px; height: 220px;
      border-radius: 16px;
      background: linear-gradient(145deg, #2c5197, #111827);
      overflow: hidden;
      border: 2px solid rgba(127,179,245,0.3);
      flex-shrink: 0;
      position: relative;
    }
    .spotlight__avatar img {
      display: block;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      object-position: center top;
      border-radius: 16px;
    }
    .spotlight__avatar-initials {
      font-family: 'Sora', sans-serif;
      font-size: 3.5rem; font-weight: 800;
      color: rgba(255,255,255,0.15);
      position: absolute;
      user-select: none;
    }
    .spotlight__avatar-img {
      font-size: 5rem;
      position: relative; z-index: 1;
    }
    .spotlight__pro-tag {
      position: absolute; bottom: -1px; left: 0; right: 0;
      background: #f5c842; color: #1a2e52;
      font-size: .7rem; font-weight: 800; letter-spacing: .06em;
      text-transform: uppercase; text-align: center;
      padding: 5px 0;
      border-radius: 0 0 10px 10px;
      z-index: 3;
    }
    .spotlight__content { min-width: 0; }
    .spotlight__name {
      font-family: 'Sora', sans-serif;
      font-size: 1.75rem; font-weight: 800;
      color: #ffffff; letter-spacing: -0.02em;
      margin-bottom: 4px;
    }
    .spotlight__title {
      font-size: .875rem; color: #7fb3f5;
      font-weight: 600; margin-bottom: 18px;
    }
    .spotlight__credentials {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 20px;
    }
    .cred-pill {
      display: flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.85);
      font-size: .78rem; font-weight: 600;
      padding: 5px 11px; border-radius: 100px;
    }
    .cred-pill--green {
      background: rgba(42,125,79,0.25);
      border-color: rgba(42,125,79,0.4);
      color: #6ee4a0;
    }
    .spotlight__bio {
      font-size: .925rem; color: rgba(255,255,255,0.75);
      line-height: 1.75; margin-bottom: 24px;
    }
    .spotlight__bio strong { color: #ffffff; font-weight: 600; }
    .spotlight__stats {
      display: flex; gap: 24px; flex-wrap: wrap;
      padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 24px;
    }
    .spotlight__stat-val {
      font-family: 'Sora', sans-serif;
      font-size: 1.4rem; font-weight: 800;
      color: #ffffff; line-height: 1;
    }
    .spotlight__stat-lbl {
      font-size: .75rem; color: rgba(255,255,255,0.5);
      margin-top: 3px;
    }
    .spotlight__focus {
      display: flex; flex-wrap: wrap; gap: 7px;
      margin-bottom: 24px;
    }
    .focus-tag {
      background: rgba(127,179,245,0.15);
      border: 1px solid rgba(127,179,245,0.25);
      color: #7fb3f5;
      font-size: .78rem; font-weight: 600;
      padding: 4px 11px; border-radius: 100px;
    }
    .spotlight__actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn--spotlight-primary {
      background: #ffffff; color: #1a2e52;
      padding: 12px 24px; border-radius: 6px;
      font-weight: 700; font-size: .9rem;
      transition: background .2s;
    }
    .btn--spotlight-primary:hover { background: #f0f4ff; text-decoration: none; }
    .btn--spotlight-ghost {
      background: transparent; color: rgba(255,255,255,0.8);
      border: 1.5px solid rgba(255,255,255,0.2);
      padding: 12px 24px; border-radius: 6px;
      font-weight: 600; font-size: .9rem;
      transition: all .2s;
    }
    .btn--spotlight-ghost:hover { background: rgba(255,255,255,0.07); text-decoration: none; }

    @media (max-width: 680px) {
      .spotlight { grid-template-columns: 1fr; padding: 28px 22px; }
      .spotlight__avatar { width: 100%; height: 160px; }
    }

    /* ── CITIES ── */
    .cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 12px;
    }
    .city-card {
      background: #ffffff; border: 1px solid #e2e6ed;
      border-radius: 10px; padding: 16px 18px;
      display: flex; justify-content: space-between; align-items: center;
      transition: all .2s; box-shadow: 0 1px 3px rgba(0,0,0,.08);
      text-decoration: none; color: #1a1f2e;
    }
    .city-card:hover {
      border-color: #2c5197; background: #e8eef8;
      box-shadow: 0 4px 16px rgba(0,0,0,.10); text-decoration: none;
      transform: translateY(-1px);
    }
    .city-card__name { font-weight: 600; font-size: .9rem; color: #1a2e52; }
    .city-card__count { font-size: .78rem; color: #6b7280; }
    .city-card__arrow { color: #2c5197; font-size: .9rem; transition: transform .2s; }
    .city-card:hover .city-card__arrow { transform: translateX(3px); }

    /* ── REVIEWS ── */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 18px;
    }
    .review-card {
      background: #ffffff; border: 1px solid #e2e6ed;
      border-radius: 16px; padding: 22px;
      box-shadow: 0 1px 3px rgba(0,0,0,.08);
    }
    .review-card__stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; letter-spacing: 1px; }
    .review-card__text { font-size: .9rem; color: #1a1f2e; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
    .review-card__author { display: flex; align-items: center; gap: 10px; }
    .review-card__avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: #1a2e52; color: #ffffff;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; font-weight: 700; flex-shrink: 0;
    }
    .review-card__name { font-weight: 600; font-size: .85rem; color: #1a2e52; }
    .review-card__location { font-size: .78rem; color: #6b7280; }
    .review-rating-summary {
      display: flex; align-items: center; gap: 20px;
      background: #e6f4ed; border: 1px solid #b8ddc9;
      border-radius: 16px; padding: 20px 24px;
      margin-bottom: 28px;
    }
    .review-rating-summary__score {
      font-family: 'Sora', sans-serif; font-size: 3rem;
      font-weight: 800; color: #1a2e52; line-height: 1;
    }
    .review-rating-summary__detail { font-size: .85rem; color: #6b7280; }
    .review-rating-summary__detail strong { color: #1a2e52; display: block; }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 4px; max-width: 760px; margin: 0 auto; }
    details {
      border: 1px solid #e2e6ed; border-radius: 10px;
      overflow: hidden; background: #ffffff;
      text-align: left;
    }
    details[open] { border-color: #2c5197; }
    summary {
      padding: 18px 20px; font-weight: 600; font-size: .95rem;
      color: #1a2e52; cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
      user-select: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+'; font-size: 1.2rem; color: #2c5197;
      font-weight: 400; transition: transform .2s;
    }
    details[open] summary::after { content: '−'; }
    .faq-answer { padding: 0 20px 18px; font-size: .9rem; color: #6b7280; line-height: 1.7; }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: #1a2e52;
      padding: 72px 5%; text-align: center;
    }
    .cta-banner__title {
      font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800; color: #ffffff; letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .cta-banner__sub { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 32px; }
    .cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn--white { background: #ffffff; color: #1a2e52; }
    .btn--white:hover { background: #f0f4ff; text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {

      /* Sections */
      section { padding: 48px 5%; }

      /* Hero */
      .cb-hero {
        padding: 48px 5% 44px;
      }
      .cb-hero::after { width: 70%; background-position: right bottom; }
      .cb-hero__sub { font-size: .95rem; }
      .cb-hero__trust { gap: 14px; padding-top: 24px; margin-top: 24px; }
      .cb-hero__trust-item { font-size: .78rem; }

      /* Local area — stack to single column */
      .local-grid { grid-template-columns: 1fr; }

      /* How it works — remove connector line */
      .steps::before { display: none; }
      .steps { gap: 32px; }
      .step { padding: 0; }

      /* Spotlight — stack avatar above content */
      .spotlight { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; }
      .spotlight__avatar { width: 100%; height: 200px; border-radius: 16px; }
      .spotlight__name { font-size: 1.4rem; }
      .spotlight__stats { gap: 16px; }
      .spotlight__stat-val { font-size: 1.2rem; }

      /* Coach grid — single column */
      .coach-grid { grid-template-columns: 1fr; }
      .coach-card__img { height: 180px; }

      /* Booking cards — single column */
      .booking-grid { grid-template-columns: 1fr; }

      /* Gift block — single column */
      .gifts-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

      /* Trust grid — 2 columns on tablet */
      .trust-grid { grid-template-columns: 1fr 1fr; }

      /* Reviews — single column */
      .reviews-grid { grid-template-columns: 1fr; }

      /* Cities — 2 columns */
      .cities-grid { grid-template-columns: 1fr 1fr; }

      /* CTA banner */
      .cta-banner { padding: 48px 5%; }
      .cta-banner__actions { flex-direction: column; align-items: center; }
      .cta-banner__actions .btn { width: 100%; justify-content: center; }

      /* Review summary */
      .review-rating-summary { flex-direction: column; gap: 8px; }

      /* Credentials pills — wrap tightly */
      .spotlight__credentials { gap: 6px; }
      .cred-pill { font-size: .72rem; padding: 4px 9px; }

      /* Focus tags */
      .spotlight__focus { gap: 5px; }
      .focus-tag { font-size: .72rem; }

      /* Spotlight actions — full width button */
      .spotlight__actions { flex-direction: column; }
      .spotlight__actions a { width: 100%; text-align: center; }

    }

    @media (max-width: 480px) {

      /* Hero */
      .cb-hero {
        padding: 40px 5% 36px;
      }
      .cb-hero::after { width: 92%; opacity: .62; }

      /* Trust grid — single column on small phones */
      .trust-grid { grid-template-columns: 1fr; }

      /* Cities — single column */
      .cities-grid { grid-template-columns: 1fr; }

      /* Steps — smaller padding */
      .step__num { width: 46px; height: 46px; font-size: 1rem; }

      /* Sections tighter */
      section { padding: 36px 5%; }

      /* Booking card padding */
      .booking-card { padding: 20px 16px; }

      /* Spotlight badge — adjust position */
      .spotlight__badge { top: 14px; right: 14px; font-size: .65rem; }

      /* FAQ summary padding */
      summary { padding: 14px 16px; font-size: .9rem; }

    }

    /* ── UTIL ── */
    .text-center { text-align: center; }
    .mt-8 { margin-top: 8px; }
    .show-more {
      display: inline-flex; align-items: center; gap: 6px;
      color: #2c5197; font-weight: 600; font-size: .9rem;
      border: 1.5px solid #2c5197; border-radius: 6px;
      padding: 10px 20px; transition: all .2s;
      text-decoration: none;
    }
    .show-more:hover { background: #e8eef8; text-decoration: none; }
    /* ── HOW BOOKING WORKS ── */
    .booking-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px; margin-top: 40px;
    }
    .booking-card {
      background: #ffffff;
      border: 1px solid #e2e6ed;
      border-radius: 16px;
      padding: 24px 20px;
      position: relative;
      box-shadow: 0 1px 3px rgba(0,0,0,.08);
      transition: box-shadow .2s;
    }
    .booking-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.10); }
    .booking-card__step {
      width: 28px; height: 28px; border-radius: 50%;
      background: #1a2e52; color: #ffffff;
      font-family: 'Sora', sans-serif; font-size: .8rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .booking-card__icon {
      font-size: 1.6rem; margin-bottom: 12px; display: block;
    }
    .booking-card h3 {
      font-size: .95rem; font-weight: 600; color: #1a2e52;
      margin-bottom: 8px; line-height: 1.3;
    }
    .booking-card p {
      font-size: .855rem; color: #6b7280; line-height: 1.65;
    }
    .booking-card__notice {
      display: block;
      background: #e8eef8; border-radius: 6px;
      padding: 9px 12px; margin-top: 12px;
      font-size: .78rem; color: #2c5197; line-height: 1.5;
      font-weight: 500;
    }
    .booking-card__notice a {
      display: inline;
      width: auto;
      color: inherit;
    }
    .booking-card__notice--green {
      background: #e6f4ed; color: #2a7d4f;
    }
    .booking-card__notice--amber {
      background: #fff4e0; color: #7a4f00;
    }
    .booking-card--highlight {
      border-color: #2c5197;
      border-width: 1.5px;
    }
    .booking-card--highlight .booking-card__step {
      background: #2c5197;
    }

    /* ── SPOTLIGHT TABS ── */
    .spotlight__tabs {
      display: flex; gap: 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 20px; margin-top: 20px;
    }
    .spotlight__tab {
      padding: 10px 18px; font-size: .85rem; font-weight: 600;
      color: rgba(255,255,255,0.45); cursor: pointer;
      border-bottom: 2px solid transparent; margin-bottom: -1px;
      transition: all .2s; user-select: none; background: none; border-top: none; border-left: none; border-right: none;
    }
    .spotlight__tab:hover { color: rgba(255,255,255,0.8); }
    .spotlight__tab.active {
      color: #7fb3f5;
      border-bottom-color: #7fb3f5;
    }
    .spotlight__panel { display: none; }
    .spotlight__panel.active { display: block; }
    .delight-reviews-summary {
      display: flex; align-items: center; gap: 6px;
      padding: 16px 0 12px;
    }
    .delight-reviews-summary__score {
      font-family: 'Sora', sans-serif; font-size: 2.2rem;
      font-weight: 800; color: #ffffff; line-height: 1;
    }
    .delight-reviews-summary__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }
    .delight-reviews-summary__meta { font-size: .8rem; color: rgba(255,255,255,0.5); margin-top: 3px; }
    .delight-review {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 14px 16px;
      margin-bottom: 10px;
    }
    .delight-review:last-child { margin-bottom: 0; }
    .delight-review__stars { color: #f59e0b; font-size: .85rem; margin-bottom: 7px; }
    .delight-review__text { font-size: .855rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 10px; font-style: italic; }
    .delight-review__author { display: flex; align-items: center; gap: 8px; }
    .delight-review__avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(127,179,245,0.2); color: #7fb3f5;
      font-size: .68rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .delight-review__name { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,0.75); }
    .delight-review__location { font-size: .72rem; color: rgba(255,255,255,0.4); }
    .delight-reviews-link {
      display: inline-flex; align-items: center; gap: 5px;
      color: #7fb3f5; font-size: .82rem; font-weight: 600;
      margin-top: 14px; text-decoration: none;
    }
    .delight-reviews-link:hover { text-decoration: underline; }

    /* ── ARTICLES ── */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px; margin-top: 40px;
    }
    .article-card {
      background: #ffffff; border: 1px solid #e2e6ed;
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,.08);
      transition: box-shadow .2s, transform .2s;
      text-decoration: none; display: flex; flex-direction: column;
    }
    .article-card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,.10);
      transform: translateY(-2px); text-decoration: none;
    }
    .article-card__header {
      background: #1a2e52; padding: 24px 22px; flex-shrink: 0;
    }
    .article-card__label {
      font-size: .7rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: #7fb3f5; margin-bottom: 8px;
    }
    .article-card__title {
      font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700;
      color: #ffffff; line-height: 1.35; letter-spacing: -0.01em;
    }
    .article-card__body {
      padding: 18px 22px; flex: 1; display: flex; flex-direction: column;
    }
    .article-card__desc {
      font-size: .875rem; color: #6b7280; line-height: 1.65;
      flex: 1; margin-bottom: 16px;
    }
    .article-card__link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: .85rem; font-weight: 600; color: #2c5197;
    }

    /* ── STICKY MOBILE CTA ── */
    .mobile-cta {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: #ffffff;
      border-top: 1px solid #e2e6ed;
      padding: 12px 5%;
      gap: 10px;
      box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    }
    .mobile-cta a {
      flex: 1; text-align: center;
      padding: 13px 16px; border-radius: 6px;
      font-weight: 700; font-size: .9rem;
      transition: background .2s;
      text-decoration: none;
    }
    .mobile-cta__primary { background: #1a2e52; color: #ffffff; }
    .mobile-cta__primary:hover { background: #2c5197; }
    .mobile-cta__secondary { background: #f7f8fa; color: #1a2e52; border: 1.5px solid #e2e6ed; }
    .mobile-cta__secondary:hover { background: #e8eef8; }
    @media (max-width: 768px) {
      .mobile-cta { display: flex; }
      body { padding-bottom: 72px; }
    }
