:root {
  color-scheme: light;
  --ink: #0d2630;
  --muted: #58717c;
  --line: #cfe0e5;
  --paper: #f3fafc;
  --white: #ffffff;
  --brand: #126f86;
  --brand-primary: #126f86;
  --brand-dark: #0b4051;
  --brand-secondary: #0b4051;
  --deep: #061c28;
  --panel: #092b3a;
  --brand-accent: #2b9aae;
  --accent: #9f430d;
  --accent-dark: #7f3309;
  --cta: #9f430d;
  --cta-hover: #7f3309;
  --cta-text: #ffffff;
  --ppc-form-bg: #061c28;
  --ppc-form-text: #ffffff;
  --ppc-form-muted: #cfe8ef;
  --ppc-form-border: rgba(255, 255, 255, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.ppc-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(16px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 126px;
  height: auto;
  display: block;
}

.phone,
.button,
.scheduler-option button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--accent);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.phone:hover,
.button:hover,
.scheduler-option button:hover {
  background: var(--accent-dark);
}

.ppc-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.64fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 88px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(110deg, rgba(6, 28, 40, 0.94) 0%, rgba(10, 64, 81, 0.88) 58%, rgba(18, 111, 134, 0.78) 100%),
    url("/assets/images/hero-aquaspas-upscaled-1600.png") center / cover no-repeat;
  color: var(--white);
}

.ppc-copy {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a9e5ef;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.42rem, 5.2vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.subhead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #e6f7fb;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  font-size: 1.24rem;
}

.proof-list span {
  margin-top: 4px;
  color: #d2edf3;
}

.ppc-form-card {
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.ppc-form-copy {
  padding: 22px 24px;
  background: var(--panel);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ppc-form-copy h2 {
  margin: 0;
  font-size: 1.36rem;
}

.ppc-form-copy p {
  margin: 8px 0 0;
  color: #cfe8ef;
}

.scheduler-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: #0b2735;
}

.scheduler-option span {
  color: #d8edf3;
  font-weight: 800;
}

.scheduler-option button {
  min-height: 40px;
  padding: 10px 12px;
}

.form-divider {
  padding: 12px 20px;
  color: #b9d6de;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  background: #071f2b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-embed-wrap {
  display: grid;
  min-height: 460px;
  background: #061821;
}

.form-embed-wrap span,
.calendar-placeholder span {
  align-self: start;
  justify-self: start;
  padding: 22px;
  color: #d8edf3;
}

.form-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  min-height: 460px;
  border: 0;
  background: var(--white);
}

.ppc-section,
.call-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding: clamp(46px, 7vw, 88px) clamp(16px, 5vw, 72px);
  background: var(--white);
}

.ppc-section h2,
.call-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.ppc-section p,
.call-band p {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  min-height: 58px;
  padding: 16px 16px 16px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfd;
  position: relative;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.call-band {
  align-items: center;
  color: var(--white);
  background: var(--brand-dark);
}

.call-band p {
  color: #d8edf3;
}

.ppc-footer {
  padding: 26px clamp(16px, 5vw, 72px);
  color: #d0e5ec;
  background: #061821;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(4, 18, 26, 0.74);
}

.modal[aria-hidden="false"] {
  display: grid;
}

.modal-panel {
  width: min(820px, 100%);
  height: min(900px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #edf7fa;
  border-bottom: 1px solid var(--line);
}

.modal-head button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--brand-dark);
  font-size: 1.1rem;
  cursor: pointer;
}

.calendar-placeholder,
.calendar-placeholder iframe {
  min-height: 0;
  height: auto;
}

.calendar-placeholder {
  flex: 1 1 auto;
  overflow: hidden;
}

.calendar-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 940px) {
  .ppc-hero,
  .ppc-section,
  .call-band {
    grid-template-columns: 1fr;
  }

  .ppc-hero {
    min-height: auto;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ppc-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .brand span {
    display: none;
  }

  .phone,
  .button,
  .scheduler-option button {
    width: 100%;
  }

  .scheduler-option {
    align-items: stretch;
    flex-direction: column;
  }

  .form-embed-wrap,
  .form-embed-wrap iframe {
    min-height: 540px;
    height: 540px;
  }

  .modal {
    align-items: start;
    padding: 10px;
  }

  .calendar-placeholder,
  .calendar-placeholder iframe {
    min-height: 0;
    height: 100%;
  }
}
