/* ===== /v1 home page styles ===== */
/* Conversion-focused redesign. Same palette, same images, tighter UX. */

:root {
  --v1-blue: #00A7E2;
  --v1-blue-dark: #0082B0;
  --v1-navy: #091E2E;
  --v1-navy-2: #0B1722;
  --v1-ink: #0F1B26;
  --v1-body: #363A3D;
  --v1-muted: #6B7480;
  --v1-line: #E5EAF0;
  --v1-surface: #F7F9FC;
  --v1-star: #FAA519;
  --v1-success: #1E9F4F;
}

.v1-body {
  background: #fff;
}

/* ===== HERO ===== */
.v1-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(140deg, #061625 0%, #0B2438 55%, #0E2D45 100%);
}

.v1-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/zoom2uslides-1.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.32;
  z-index: 0;
}

.v1-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 22, 37, 0.95) 30%, rgba(6, 22, 37, 0.55) 100%);
  z-index: 1;
}

.v1-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.v1-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  background: rgba(0, 167, 226, 0.16);
  border: 1px solid rgba(0, 167, 226, 0.4);
  color: #B8E5F8;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.v1-hero__pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3FCB6E;
  box-shadow: 0 0 10px rgba(63, 203, 110, 0.7);
}

.v1-hero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #fff;
}

.v1-hero__title em {
  font-style: normal;
  color: #00A7E2;
  position: relative;
}

.v1-hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 560px;
}

.v1-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
}

.v1-trust-row strong {
  color: #fff;
  font-weight: 700;
}

.v1-trust-row .stars {
  display: inline-flex;
  gap: 2px;
}

.v1-trust-row .divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

/* ===== QUOTE WIDGET ===== */
.v1-quote {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  color: var(--v1-ink);
  position: relative;
}

.v1-quote::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 167, 226, 0.5), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.v1-quote__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.v1-quote__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--v1-ink);
}

.v1-quote__hint {
  font-size: 12.5px;
  color: var(--v1-muted);
  font-weight: 500;
}

.v1-quote__field {
  position: relative;
  margin-bottom: 12px;
}

.v1-quote__label {
  position: absolute;
  top: 11px;
  left: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--v1-muted);
}

.v1-quote__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--v1-blue);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-quote__input {
  width: 100%;
  padding: 28px 16px 12px 50px;
  border: 1.5px solid var(--v1-line);
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--v1-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.v1-quote__input:focus {
  outline: none;
  border-color: var(--v1-blue);
  box-shadow: 0 0 0 4px rgba(0, 167, 226, 0.12);
}

.v1-quote__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.v1-quote__select {
  width: 100%;
  padding: 28px 38px 12px 50px;
  border: 1.5px solid var(--v1-line);
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--v1-ink);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7480' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none;
  -webkit-appearance: none;
}

.v1-quote__select:focus {
  outline: none;
  border-color: var(--v1-blue);
  box-shadow: 0 0 0 4px rgba(0, 167, 226, 0.12);
}

.v1-quote__cta {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #00A7E2 0%, #0082B0 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 10px 24px -8px rgba(0, 167, 226, 0.55);
}

.v1-quote__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(0, 167, 226, 0.7);
}

.v1-quote__sub {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--v1-muted);
}

.v1-quote__sub a {
  color: var(--v1-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== INLINE PROOF BAR ===== */
.v1-proofbar {
  background: #fff;
  border-bottom: 1px solid var(--v1-line);
  padding: 22px 0;
}

.v1-proofbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.v1-proofbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--v1-body);
  font-size: 14px;
}

.v1-proofbar__item strong {
  color: var(--v1-ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.v1-proofbar__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 167, 226, 0.1);
  color: var(--v1-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== SPEED CARDS ===== */
.v1-speeds {
  padding: 96px 0 80px;
  background: var(--v1-surface);
}

.v1-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.v1-section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 167, 226, 0.1);
  color: var(--v1-blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.v1-section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  color: var(--v1-ink);
  margin-bottom: 12px;
}

.v1-section-sub {
  font-size: 17px;
  color: var(--v1-muted);
  line-height: 1.6;
}

.v1-speeds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.v1-speed-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  border: 1.5px solid var(--v1-line);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.v1-speed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -22px rgba(15, 27, 38, 0.25);
  border-color: rgba(0, 167, 226, 0.5);
}

.v1-speed-card--featured {
  border-color: var(--v1-blue);
  background: linear-gradient(180deg, #fff 0%, #F0F9FD 100%);
}

.v1-speed-card__badge {
  position: absolute;
  top: -10px;
  right: 18px;
  padding: 4px 12px;
  background: var(--v1-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.v1-speed-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 167, 226, 0.1);
  color: var(--v1-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.v1-speed-card__time {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--v1-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.v1-speed-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--v1-ink);
  margin-bottom: 10px;
}

.v1-speed-card__desc {
  font-size: 14px;
  color: var(--v1-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.v1-speed-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--v1-line);
  margin-top: auto;
}

.v1-speed-card__price-from {
  font-size: 12.5px;
  color: var(--v1-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.v1-speed-card__price-amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--v1-ink);
}

.v1-speed-card__price-gst {
  font-size: 12px;
  color: var(--v1-muted);
  font-weight: 500;
}

.v1-speed-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--v1-blue);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.15s;
}

.v1-speed-card__cta:hover {
  gap: 10px;
}

/* ===== HOW IT WORKS ===== */
.v1-how {
  padding: 96px 0;
  background: #fff;
}

.v1-how__inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: center;
}

.v1-how__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.v1-how__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.v1-how__step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00A7E2, #0082B0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -8px rgba(0, 167, 226, 0.7);
}

.v1-how__step-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--v1-ink);
  margin-bottom: 6px;
}

.v1-how__step-desc {
  font-size: 15px;
  color: var(--v1-muted);
  line-height: 1.6;
}

.v1-how__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v1-how__map {
  position: absolute;
  width: 110%;
  max-width: 580px;
  border-radius: 24px;
  filter: drop-shadow(0 30px 60px rgba(15, 27, 38, 0.2));
}

.v1-how__phone {
  position: relative;
  width: 240px;
  z-index: 2;
}

/* ===== COVERAGE STRIP ===== */
.v1-coverage {
  padding: 80px 0;
  background: var(--v1-navy);
  color: #fff;
}

.v1-coverage__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.v1-coverage__head .v1-section-title {
  color: #fff;
}

.v1-coverage__head .v1-section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.v1-coverage__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.v1-city {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px 14px;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease;
}

.v1-city:hover {
  transform: translateY(-4px);
}

.v1-city::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 30, 46, 0.05) 30%, rgba(9, 30, 46, 0.85) 100%);
}

.v1-city__name {
  position: relative;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

.v1-city__pin {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #3FCB6E;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.v1-city__pin::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(63, 203, 110, 0.6);
  animation: v1-pulse 2.5s ease-out infinite;
}

@keyframes v1-pulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== REVIEWS ===== */
.v1-reviews {
  padding: 96px 0;
  background: #fff;
}

.v1-reviews__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.v1-reviews__rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 28px;
  background: var(--v1-surface);
  border-radius: 14px;
  border: 1px solid var(--v1-line);
  margin-bottom: 22px;
}

.v1-reviews__score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--v1-ink);
}

.v1-reviews__score .stars {
  display: inline-flex;
  gap: 2px;
}

.v1-reviews__count {
  font-size: 13px;
  color: var(--v1-muted);
  font-weight: 500;
}

.v1-reviews__count .pr {
  color: var(--v1-blue);
  font-weight: 700;
}

.v1-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.v1-review {
  background: var(--v1-surface);
  border: 1px solid var(--v1-line);
  border-radius: 16px;
  padding: 28px 24px;
}

.v1-review__stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 14px;
}

.v1-review__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--v1-body);
  margin-bottom: 18px;
}

.v1-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v1-review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.v1-review__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--v1-ink);
}

.v1-review__date {
  font-size: 12px;
  color: var(--v1-muted);
}

/* ===== BUSINESS BAND ===== */
.v1-business {
  padding: 96px 0;
  background: var(--v1-surface);
}

.v1-business__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.v1-business__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.v1-business__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--v1-body);
}

.v1-business__feature::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 167, 226, 0.12);
  color: var(--v1-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.v1-business__feature strong {
  color: var(--v1-ink);
  display: block;
  margin-bottom: 2px;
}

.v1-business__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(15, 27, 38, 0.4);
}

.v1-business__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== FINAL CTA ===== */
.v1-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #061625 0%, #0E2D45 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.v1-final::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 167, 226, 0.18), transparent 70%);
}

.v1-final__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.v1-final__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.v1-final__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
}

.v1-final__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.v1-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
}

.v1-btn--primary {
  background: linear-gradient(135deg, #00A7E2 0%, #0082B0 100%);
  color: #fff;
  box-shadow: 0 14px 32px -10px rgba(0, 167, 226, 0.65);
}

.v1-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(0, 167, 226, 0.85);
}

.v1-btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.v1-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===== STICKY MOBILE BAR ===== */
.v1-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--v1-line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 8px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(15, 27, 38, 0.08);
}

.v1-sticky a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.v1-sticky__book {
  background: linear-gradient(135deg, #00A7E2 0%, #0082B0 100%);
  color: #fff;
}

.v1-sticky__quote {
  background: var(--v1-surface);
  color: var(--v1-ink);
  border: 1px solid var(--v1-line);
}

.v1-sticky__call {
  background: var(--v1-surface);
  color: var(--v1-ink);
  border: 1px solid var(--v1-line);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .v1-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v1-hero {
    padding: 110px 0 60px;
  }
  .v1-speeds__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v1-how__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v1-coverage__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .v1-reviews__grid {
    grid-template-columns: 1fr;
  }
  .v1-business__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .v1-sticky { display: flex; }
  .v1-speeds__grid {
    grid-template-columns: 1fr;
  }
  .v1-coverage__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v1-business__features {
    grid-template-columns: 1fr;
  }
  .v1-quote__row {
    grid-template-columns: 1fr;
  }
  .v1-speeds, .v1-how, .v1-reviews, .v1-business, .v1-coverage, .v1-final {
    padding: 64px 0;
  }
}
