/* Meet page styles */

.hero { padding: 56px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.hero-grid--image-left {
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
}
.hero-grid--image-left .hero-image-wrap { order: -1; }
.eyebrow {
  display: inline-block;
  color: var(--hero-eyebrow-text, var(--blue-dark));
  font-size: 15px; letter-spacing: 0; font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow--filled {
  background: var(--hero-eyebrow-bg);
  border-radius: 999px;
  padding: 6px 12px;
}
.hero h1 { font-size: 65px; line-height: 1.02; margin: 0 0 18px; font-weight: 700; letter-spacing: -1px; }
.hero h1 .accent,
.hero h1 .underline-accent {
  color: #1a1a1a;
  --filld-hero-underline: var(--blue-dark);
}
.hero p { color: #2a2a2a; font-size: 17px; margin: 0 0 16px; line-height: 1.6; max-width: 540px; }
.hero p.muted { color: #555; font-size: 16px; }
.hero-image {
  border-radius: 20px;
  overflow: hidden;
  background: #d8d8d8;
  aspect-ratio: 5/3.6;
  background-image: url('../images/design/helping-hand.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 50px -24px rgba(14, 63, 140, 0.28);
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  max-width: 540px;
}
.expect-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: #2a2a2a; line-height: 1.55; }
.expect-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-tile);
  color: var(--blue-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  margin-top: 1px;
}

.booking-section { background: var(--meet-booking-bg, var(--bg-soft)); padding: 64px 0 72px; }
.booking-head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.booking-head h2 { font-size: 40px; margin: 0 0 10px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.1; }
.booking-head .booking-sub { color: var(--muted); margin: 0; font-size: 16px; }
.booking-head .booking-sub p { margin: 0; }
.booking-head .booking-sub p + p,
.booking-head .booking-sub ul,
.booking-head .booking-sub ol { margin: 10px 0 0; }
.booking-head .booking-sub ul,
.booking-head .booking-sub ol { padding-left: 20px; text-align: left; }
.booking-head .booking-sub li + li { margin-top: 4px; }
.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 24px 60px -28px rgba(14, 63, 140, 0.22);
  max-width: 1080px;
  margin: 0 auto;
}
#inline-container { width: 100%; min-height: 1200px; }
#inline-container iframe { width: 100% !important; min-height: 1200px; border: 0; display: block; overflow: hidden; scrollbar-width: none; }
#inline-container iframe::-webkit-scrollbar { display: none; }

@media (max-width: 1100px) {
  .hero h1 { font-size: 48px; }
  .booking-head h2 { font-size: 34px; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-grid--image-left .hero-image-wrap { order: 0; }
  .hero h1 { font-size: 42px; }
}
@media (max-width: 760px) {
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 37px; }
  .booking-section { padding: 44px 0 52px; }
  .booking-head h2 { font-size: 28px; }
  .booking-card { padding: 10px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 31px; }
  .booking-head h2 { font-size: 24px; }
}
