/* ============================================================
   Higher Dimensions Prophetic Ministries — Demo Site
   Mountain/Valley palette: navy, ice blue, snow, gold
   ============================================================ */
:root {
  --navy: #1b2a4a;
  --navy-2: #22345a;
  --navy-deep: #16233d;
  --ice: #a8c8e0;
  --ice-light: #dceafc;
  --snow: #f4f8fc;
  --gold: #d4a94e;
  --gold-light: #f2c86b;
  --slate: #5a6e8c;
  --text: #2a3549;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 42, 74, 0.12);
  --maxw: 1720px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.15rem, 1rem + 0.55vw, 1.6875rem);
  line-height: 1.45;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-2); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 4vw, 64px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 54px; width: 54px; }
.brand-name { display: flex; flex-direction: column; }
.brand-name .top {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
}
.brand-name .sub {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 0.86rem;
  color: var(--slate);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > a, .dropdown > button {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.main-nav > a:hover, .dropdown > button:hover { background: var(--ice-light); }
.main-nav > a.active { color: var(--gold); }

.dropdown { position: relative; }
.dropdown > button::after { content: " \25BE"; font-size: 0.8em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px;
  border: 1px solid rgba(27, 42, 74, 0.08);
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
}
.dropdown-menu a:hover { background: var(--ice-light); }

.btn {
  display: inline-block;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(27,42,74,0.25); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-deep); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.75); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(22, 35, 61, 0.62), rgba(22, 35, 61, 0.72)), url('images/church-building.jpg') center 35% / cover no-repeat;
}
.hero-inner { max-width: 860px; padding: 90px 24px; }
.hero .eyebrow {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.0625rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4375rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 22px;
}
.hero p { font-size: 1.25rem; opacity: 0.92; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #31507c 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 24px 150px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 90' preserveAspectRatio='none'%3E%3Cpath d='M0 90 L240 28 L420 66 L600 12 L780 58 L980 22 L1200 90 Z' fill='%23ffffff'/%3E%3C/svg%3E") bottom / 100% 90px no-repeat;
}
.page-hero .eyebrow {
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero p { max-width: 720px; margin: 16px auto 0; opacity: 0.9; font-size: 1.15rem; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section.tint { background: var(--snow); }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-head .eyebrow {
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.0625rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(56px, 6vw, 110px); align-items: center; }
.split .photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: 16px; }
.split p { margin-bottom: 16px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3vw, 48px); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(34px, 3.4vw, 56px) clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--gold);
}
.card .icon { font-size: clamp(2rem, 2.6vw, 3rem); margin-bottom: 18px; }
.card h3 { font-size: clamp(1.5rem, 1.8vw, 2rem); margin-bottom: 14px; }
.card p { flex: 1; margin-bottom: 24px; font-size: clamp(1.05rem, 1.15vw, 1.35rem); line-height: 1.55; }
.card .btn { align-self: flex-start; font-size: 1.05rem; padding: 13px 26px; }

.info-strip {
  background: var(--navy);
  color: var(--white);
  padding: 46px 0;
}
.info-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
}
.info-strip h3 { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 6px; }
.info-strip p { opacity: 0.92; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 6px;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1.02rem;
  padding: 12px 14px;
  border: 1.5px solid #c7d4e4;
  border-radius: 10px;
  background: var(--snow);
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
.checks { display: flex; flex-direction: column; gap: 10px; }
.checks label { display: flex; align-items: center; gap: 10px; font-weight: 600; margin: 0; }
.checks input { width: 18px; height: 18px; accent-color: var(--gold); }
.form-note { font-size: 0.92rem; color: var(--slate); margin-top: 14px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
}
.form-status.ok { display: block; background: #e7f5e9; color: #1e6b2e; }
.form-status.err { display: block; background: #fdeaea; color: #9c2121; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Calendar ---------- */
.cal-wrap { max-width: 900px; margin: 0 auto; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-header h3 { font-size: 1.6rem; }
.cal-nav-btn {
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  text-align: center;
  font-weight: 800;
  color: var(--slate);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0;
}
.cal-cell {
  min-height: 86px;
  background: var(--snow);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.9rem;
}
.cal-cell.other { background: transparent; }
.cal-cell .d { font-weight: 800; color: var(--navy); }
.cal-cell.today { outline: 2px solid var(--gold); }
.cal-event {
  margin-top: 6px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 0.74rem;
  line-height: 1.3;
  font-weight: 600;
}
.cal-event.wed { background: var(--gold); color: var(--navy-deep); }
.cal-legend { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; font-size: 0.95rem; }
.cal-legend span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.dot { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.dot.sun { background: var(--navy); }
.dot.wed { background: var(--gold); }

/* ---------- Schedule table ---------- */
.times-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.times-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 16px 20px;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}
.times-table td { padding: 16px 20px; border-bottom: 1px solid #e6edf5; }
.times-table tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  padding: 4px 22px;
}
details.faq summary {
  cursor: pointer;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: var(--navy);
  padding: 22px 0;
  font-size: clamp(1.5rem, 2vw, 2.3125rem); /* up to ~37px */
  line-height: 1.25;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; color: var(--gold); font-size: 2rem; line-height: 1.1; }
details.faq[open] summary::after { content: "\2212"; }
details.faq p { padding: 0 0 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.88);
  padding: 70px 0 30px;
  margin-top: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.0625rem; /* ~17px */
  line-height: 1.55;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 46px;
}
.site-footer h4 {
  color: var(--gold-light);
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.625rem; /* ~26px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,0.88); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 12px; }
.site-footer p { font-size: 1.0625rem; }
.site-footer small { font-size: 0.9rem; opacity: 0.8; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { width: 58px; height: 58px; }
.footer-brand .n { font-weight: 800; font-size: 1.15rem; color: var(--white); line-height: 1.2; }
.footer-brand .s { font-style: italic; font-family: 'Lora', Georgia, serif; color: var(--ice); font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.92rem;
  opacity: 0.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  /* Mobile stacking order: text block always before the highlight card,
     regardless of the desktop zig-zag source order. */
  .split > .card { order: 2; }
  .split > div:not(.card) { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 14px 20px 20px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(27,42,74,0.08);
  }
  .main-nav.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 18px;
  }
  .nav-cta { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .cal-cell { min-height: 64px; font-size: 0.8rem; }
  .cal-event { font-size: 0.62rem; padding: 3px 4px; }
}

@media (max-width: 560px) {
  body { font-size: 1.125rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 66vh; }
  .brand-name .top { font-size: 0.98rem; }
  .brand img { height: 46px; width: 46px; }
}


/* ---------- Fullscreen step-flow (Nucleus-style) ---------- */
.hdflow-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  flex-direction: column;
  background: linear-gradient(160deg, #1e3a5c 0%, #2c4d75 55%, #41678f 100%);
  color: var(--white);
}
.hdflow-overlay.open { display: flex; }
.hdflow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
}
.hdflow-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; }
.hdflow-brand img { height: 40px; width: 40px; }
.hdflow-close {
  background: rgba(255,255,255,0.12);
  border: 0;
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}
.hdflow-close:hover { background: rgba(255,255,255,0.25); }
.hdflow-progress { height: 5px; background: rgba(255,255,255,0.15); }
.hdflow-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width 0.35s ease;
}
.hdflow-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  overflow-y: auto;
}
.hdflow-card { max-width: 640px; width: 100%; text-align: center; }
.hdflow-anim { animation: hdflow-in 0.35s ease both; }
@keyframes hdflow-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hdflow-kicker {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.hdflow-q {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hdflow-sub { opacity: 0.95; color: var(--white); font-size: 1.35rem; margin-bottom: 30px; }
.hdflow-input {
  width: 100%;
  font-family: inherit;
  font-size: 1.5rem;
  padding: 18px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.16);
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.hdflow-input::placeholder { color: rgba(255,255,255,0.65); }
.hdflow-input:focus { outline: none; border-color: var(--gold-light); background: rgba(255,255,255,0.16); }
.hdflow-textarea { min-height: 150px; text-align: left; resize: vertical; font-size: 1.3rem; color: var(--white); }
.hdflow-choices { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.hdflow-choice {
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 18px 22px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hdflow-choice:hover { background: rgba(255,255,255,0.2); border-color: var(--gold-light); }
.hdflow-choice.sel { background: rgba(242,200,107,0.25); border-color: var(--gold); }
.hdflow-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  color: var(--white);
  text-align: left;
}
.hdflow-check input { width: 20px; height: 20px; accent-color: var(--gold); }
.hdflow-row { display: flex; gap: 14px; justify-content: center; margin-top: 16px; align-items: center; }
.hdflow-btn {
  font-family: inherit;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 16px 42px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
}
.hdflow-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.3); }
.hdflow-skip {
  background: none;
  border: 0;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}
.hdflow-back {
  display: block;
  margin: 22px auto 0;
  background: none;
  border: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.98rem;
  cursor: pointer;
}
.hdflow-back:hover { color: var(--white); }
.hdflow-err {
  display: none;
  color: #ffc9c9;
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 10px;
}
.hdflow-hint { margin-top: 18px; font-size: 0.92rem; opacity: 0.6; }

/* Combined first/last name row + address grid (Nucleus-style) */
.hdflow-2col { display: flex; gap: 14px; }
.hdflow-2col .hdflow-input { flex: 1; min-width: 0; }
.hdflow-addr { display: flex; flex-direction: column; gap: 12px; }
.hdflow-addr-row { display: flex; gap: 12px; }
.hdflow-addr-row .hdflow-input { min-width: 0; }
.hdflow-addr-row .hdflow-input:nth-child(1) { flex: 2; }
.hdflow-addr-row .hdflow-input:nth-child(2) { flex: 0.8; }
.hdflow-addr-row .hdflow-input:nth-child(3) { flex: 1; }
.hdflow-counter {
  text-align: right;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
@media (max-width: 560px) {
  .hdflow-2col { flex-direction: column; }
  .hdflow-addr-row { flex-wrap: wrap; }
  .hdflow-addr-row .hdflow-input:nth-child(1) { flex: 1 1 100%; }
}

/* Specificity guard: the site's generic input[type=...] rules (written for the
   old inline forms) outrank .hdflow-input and were painting dark text on a
   dark translucent bg while typing. These scoped rules outrank them all. */
.hdflow-overlay input[type="text"],
.hdflow-overlay input[type="email"],
.hdflow-overlay input[type="tel"],
.hdflow-overlay textarea {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  caret-color: var(--gold-light);
  font-size: 1.5rem;
  padding: 18px 20px;
  border-radius: 12px;
  text-align: center;
}
.hdflow-overlay textarea { text-align: left; font-size: 1.3rem; min-height: 150px; }
.hdflow-overlay input[type="text"]:focus,
.hdflow-overlay input[type="email"]:focus,
.hdflow-overlay input[type="tel"]:focus,
.hdflow-overlay textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-color: var(--gold-light);
}
.hdflow-overlay input::placeholder,
.hdflow-overlay textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.hdflow-bigcheck {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  font-size: 2.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
