/* Maynard Solar Cleaning — brand colors from logo */
:root {
  --navy: #002050;
  --navy-deep: #001040;
  --blue: #0070d0;
  --blue-mid: #0060b0;
  --sky: #00a0e0;
  --sky-soft: #b0d0f0;
  --ice: #e0f0f0;
  --white: #ffffff;
  --text: #0a1a2e;
  --muted: #4a5a6e;
  --border: #c8d8e8;
  --focus: #0070d0;
  --success: #0a7a4a;
  --error: #b42020;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(0, 32, 80, 0.12);
  --header-h: 72px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
}
.logo-link img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.logo-text {
  display: none;
  font-size: 0.95rem;
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .logo-text { display: block; }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 112, 208, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.btn-lg { padding: 0.9rem 1.4rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(0, 160, 224, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 112, 208, 0.12), transparent 50%),
    linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
  padding: 2.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.hero-visual {
  justify-self: stretch;
  background: var(--white);
  border-radius: 16px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 1400 / 459;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 3rem 0;
}
.section-alt {
  background: linear-gradient(180deg, #f4f8fc 0%, var(--white) 100%);
}
.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--navy);
  letter-spacing: -0.015em;
}
.section-intro {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 40rem;
}
.cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cards-2 { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 8px rgba(0, 32, 80, 0.04);
}
.card h3 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.05rem;
}
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 2.5rem 0;
}
.cta-band-inner {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 800px) {
  .cta-band-inner { grid-template-columns: 1.3fr 0.9fr; }
}
.cta-band-copy { text-align: center; }
@media (min-width: 800px) {
  .cta-band-copy { text-align: left; }
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}
.cta-band p {
  margin: 0 0 1.25rem;
  color: var(--sky-soft);
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}
.cta-band .btn-primary:hover {
  background: var(--ice);
  color: var(--navy-deep);
}

.trust-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(176, 208, 240, 0.35);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  backdrop-filter: blur(4px);
}
.trust-panel h3 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.trust-list li {
  color: var(--sky-soft);
  font-size: 0.92rem;
  padding-left: 1.15rem;
  position: relative;
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sky);
}

/* See the Difference */
.diff-figure {
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}
.diff-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.diff-accent {
  max-width: 28rem;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 32, 80, 0.06);
}
@media (min-width: 800px) {
  .diff-accent { margin-left: 0; max-width: 22rem; }
}
.diff-accent img {
  width: 100%;
  height: auto;
  display: block;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.footer-license {
  margin: 0.35rem 0 0;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--sky-soft);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer h3 {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-size: 1rem;
}
.site-footer a { color: var(--sky); }
.site-footer a:hover { color: var(--white); }
.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(176, 208, 240, 0.25);
  font-size: 0.85rem;
  color: rgba(176, 208, 240, 0.75);
}

/* Quote page */
.page-hero {
  background: linear-gradient(180deg, var(--ice) 0%, var(--white) 100%);
  padding: 2rem 0 1rem;
}
.page-hero h1 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}
.page-hero p { margin: 0; color: var(--muted); }

.quote-layout {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 0 3rem;
}
@media (min-width: 900px) {
  .quote-layout { grid-template-columns: 1.5fr 0.9fr; align-items: start; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}
.form-group .hint {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.req { color: var(--error); }
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 208, 0.2);
  outline: none;
}
textarea { min-height: 100px; resize: vertical; }
.field-error {
  color: var(--error);
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--error);
}
.form-group.has-error .field-error { display: block; }

.file-drop {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  background: #f7fbff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.file-drop:hover, .file-drop.dragover {
  border-color: var(--blue);
  background: var(--ice);
}
.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.file-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: left;
}
.file-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.form-actions { margin-top: 1.5rem; }
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: #e8f7ef;
  color: var(--success);
  border: 1px solid #a8dcc0;
}
.form-status.error {
  background: #fdeeee;
  color: var(--error);
  border: 1px solid #f0b0b0;
}
.aside-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
}
.aside-card h2 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 1.15rem;
}
.aside-card p, .aside-card li {
  color: var(--sky-soft);
  font-size: 0.95rem;
}
.aside-card ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}
.aside-card a { color: var(--sky); }

/* Thank you */
.thank-you {
  text-align: center;
  padding: 3.5rem 0 4rem;
  max-width: 36rem;
  margin-inline: auto;
}
.thank-you img {
  width: 88px;
  margin: 0 auto 1.25rem;
  border-radius: 12px;
}
.thank-you h1 {
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.thank-you p { color: var(--muted); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


/* Quote page — prominent photo upload + call affordances */
.btn-call {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.btn-call:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.photo-upload-block {
  margin: 1.5rem 0 1.35rem;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 2px solid var(--blue);
  border-radius: 12px;
  background: linear-gradient(180deg, #eef7ff 0%, #f7fbff 100%);
  box-shadow: 0 4px 16px rgba(0, 112, 208, 0.12);
}
.photo-upload-heading {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.photo-upload-sub {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.file-drop-prominent {
  position: relative;
  border: 2px dashed var(--blue);
  border-radius: 12px;
  padding: 1.6rem 1.1rem;
  background: var(--white);
  min-height: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.file-drop-prominent:hover,
.file-drop-prominent.dragover {
  border-color: var(--navy);
  background: var(--ice);
}
.file-drop-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.file-drop-hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 22rem;
}
.aside-phone { margin: 0.75rem 0 1rem; }
.btn-call-aside {
  display: inline-flex;
  width: 100%;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  justify-content: center;
}
.btn-call-aside:hover {
  background: var(--ice);
  color: var(--navy-deep);
}
.aside-area {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(176, 208, 240, 0.85);
}
.footer-phone a {
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
}
.footer-phone a:hover { text-decoration: underline; }

/* ---- Instant quote / book flow ---- */
.quote-progress {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.quote-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 999px;
  transition: width 0.25s ease;
}
.quote-step-label {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.quote-step[hidden] { display: none !important; }
#access-question[hidden],
.form-group[hidden],
[hidden] { display: none !important; }
.quote-step-title {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.25rem;
}
.quote-step-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}
.checkbox-inline input {
  width: auto;
  margin-top: 0.2rem;
}
.step-actions { margin-top: 1.25rem; }
.step-actions .btn-ghost { margin-top: 0.5rem; }

.price-screen {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}
.price-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.price-amount {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-summary {
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  max-width: 22rem;
  text-align: left;
}
.price-summary li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}
.price-summary li:last-child { border-bottom: 0; color: var(--muted); font-weight: 500; }

.price-estimate-note {
  margin: -0.5rem auto 1.25rem;
  max-width: 26rem;
  padding: 0.75rem 0.9rem;
  background: #fff8e8;
  border: 1px solid #e8c96a;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  line-height: 1.45;
}

.review-banner {
  background: #fff8e8;
  border: 1px solid #e8c96a;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  text-align: left;
}
.review-banner p { margin: 0 0 0.5rem; color: var(--text); }
.review-banner p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }

.schedule-note {
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.15rem;
}

.payment-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.payment-card {
  display: block;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem 1rem 2.75rem;
  position: relative;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.payment-card input {
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: auto;
}
.payment-card:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 208, 0.15);
}
.payment-card.is-disabled {
  opacity: 0.72;
  background: #f5f7fa;
}
.payment-card-title {
  display: block;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.payment-card-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}
.payment-options.has-error .payment-card {
  border-color: var(--error);
}
.payment-options .field-error { display: none; }
.payment-options.has-error .field-error { display: block; }

.thank-you-wide { max-width: 40rem; }
.confirm-card {
  text-align: left;
  margin: 1.75rem auto;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f7fbff;
  box-shadow: var(--shadow);
}
.confirm-heading {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.1rem;
}
.confirm-list {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.confirm-list > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.5rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 520px) {
  .confirm-list > div { grid-template-columns: 1fr; gap: 0.15rem; }
}
.confirm-list dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.confirm-list dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}
.confirm-note {
  margin: 1rem 0 0;
  padding: 0.75rem 0.85rem;
  background: #fff8e8;
  border: 1px solid #e8c96a;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
}
.ty-call {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.ty-call a {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  text-decoration: none;
  color: var(--blue);
}
.ty-call a:hover { text-decoration: underline; }

input[type="date"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}
