:root {
  --bg: #08111f;
  --bg-deep: #0d1b2f;
  --surface: rgba(13, 27, 47, 0.78);
  --surface-strong: rgba(18, 38, 66, 0.92);
  --text: #eff6ff;
  --muted: #a8b8d3;
  --accent: #54a3ff;
  --accent-dark: #8bc0ff;
  --line: rgba(139, 192, 255, 0.14);
  --shadow: 0 24px 70px rgba(1, 8, 20, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(84, 163, 255, 0.22),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 18%,
      rgba(58, 114, 194, 0.22),
      transparent 18%
    ),
    linear-gradient(180deg, #091120 0%, #0f2039 54%, #13294a 100%);
  min-height: 100vh;
}

.info-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  color: var(--text);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.info-card h3,
.info-card p {
  color: var(--text);
  text-shadow: none;
  text-align: center;
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
}

.site-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-wordmark {
  display: block;
  height: 5.6rem;
  width: auto;
  object-fit: contain;
}

.eyebrow,
h1,
h2,
h3,
.button,
.stat strong,
.nav-link {
  font-family: "Space Grotesk", sans-serif;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 192, 255, 0.22);
  background: rgba(84, 163, 255, 0.14);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(1, 8, 20, 0.22);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  background: rgba(84, 163, 255, 0.22);
  border-color: rgba(139, 192, 255, 0.34);
}

.hero {
  padding: 1rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}

.lead {
  max-width: 58ch;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #66b0ff, #2d6cdf);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(139, 192, 255, 0.18);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.hero-card,
.info-card,
.section-highlight,
.contact-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}


.hero-card {
  padding: 2.5rem 2.2rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-card-large {
  min-width: 370px;
  max-width: 480px;
  min-height: 410px;
  box-shadow: 0 8px 48px 0 rgba(84,163,255,0.13);
  border: 1.5px solid var(--accent);
  background: linear-gradient(120deg, rgba(84,163,255,0.10) 0%, rgba(13,27,47,0.92) 100%);
}

.card-glow {
  position: absolute;
  width: 9rem;
  height: 9rem;
  top: -2rem;
  right: -1.5rem;
  border-radius: 50%;
  background: rgba(84, 163, 255, 0.3);
  filter: blur(10px);
}

.card-label {
  position: relative;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.service-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}

.service-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}

.section-heading p:last-child,
.highlight-copy p:last-child,
.info-card p,
.stat span {
  color: var(--muted);
  line-height: 1.7;
}


.cards {
  display: grid;
  gap: 1.8rem;
}

.cards-2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .cards-2x2 {
    grid-template-columns: 1fr;
  }
}

.info-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: -2rem -2rem 1rem -2rem;
  display: block;
  width: calc(100% + 4rem);
  border-radius: 1.35rem 1.35rem 0 0;
  box-shadow: 0 4px 24px 0 rgba(84,163,255,0.10);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.customer-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(14, 30, 53, 0.9);
  box-shadow: var(--shadow);
}

.customer-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(84, 163, 255, 0.14);
  color: var(--accent-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.customer-card-logo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: center;
}

.customer-logo {
  display: grid;
  place-items: center;
  min-height: 5.5rem;
  border-radius: 1rem;
  border: 1px dashed rgba(139, 192, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.section-highlight {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(18, 38, 66, 0.96), rgba(13, 27, 47, 0.82)),
    var(--surface);
}

.booking-intro span,
.form-copy h3 + p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-booking-section {
  padding: 2rem 1.5rem;
}

.contact-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.form-card,
.booking-card {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(13, 27, 47, 0.84);
  box-shadow: var(--shadow);
}

.form-copy {
  display: grid;
  gap: 0.35rem;
  min-height: 4rem;
}

.booking-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-intro {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0 0.5rem;
}

.booking-intro strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.booking-card label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.booking-card span {
  font-family: "Space Grotesk", sans-serif;
}

.booking-card input,
.booking-card select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(139, 192, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
}

.field-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.time-scroll {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(139, 192, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.time-scroll::-webkit-scrollbar {
  height: 0.45rem;
}

.time-scroll::-webkit-scrollbar-thumb {
  background: rgba(84, 163, 255, 0.35);
  border-radius: 999px;
}

.time-pill {
  appearance: none;
  border: 1px solid rgba(139, 192, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 0.85rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  text-align: center;
  scroll-snap-align: start;
}

.time-pill:hover {
  transform: translateY(-1px);
  background: rgba(84, 163, 255, 0.18);
  border-color: rgba(84, 163, 255, 0.35);
}

.time-pill.active {
  background: linear-gradient(135deg, rgba(84, 163, 255, 0.22), rgba(39, 108, 211, 0.22));
  border-color: #54a3ff;
  color: #ffffff;
}

.time-empty {
  padding: 1rem;
  border: 1px dashed rgba(139, 192, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  min-width: 100%;
}

  text-align: center;
}

.date-field {
  border-radius: 1.4rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
}

.stats {
  display: grid;
  gap: 1rem;
}

.stat {
  padding: 1.1rem 1.15rem;
  border-radius: 1.1rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form span {
  font-family: "Space Grotesk", sans-serif;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(139, 192, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(168, 184, 211, 0.82);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.form-status.success {
  color: #b8ffb8;
}

.form-status.error {
  color: #ff9fa3;
}

.contact-button {
  margin-top: 0.25rem;
  border: 0;
  cursor: pointer;
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-note a {
  color: var(--accent-dark);
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-info-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0.6;
  margin-right: 0.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 180ms ease;
}

.contact-info-item:hover {
  color: var(--accent-dark);
}

.contact-info-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.contact-info-static {
  cursor: default;
  pointer-events: none;
}

.footer-hours-line {
  white-space: nowrap;
  flex-wrap: nowrap;
}

.footer-hours-sep {
  margin: 0 0.1rem;
  opacity: 0.4;
}

.contact-info-divider {
  width: 1px;
  height: 1.2rem;
  background: var(--line);
  align-self: center;
  margin: 0 0.25rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2.2rem 1.2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(13, 27, 47, 0.84);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
  min-height: 160px;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(84, 163, 255, 0.35);
}

.tool-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}

.tool-logo-dark {
  background: rgba(255,255,255,0.08);
  border-radius: 0.7rem;
  padding: 6px;
}

.tool-card span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .section-highlight,
  .customer-grid,
  .contact-booking-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    margin-bottom: 2.5rem;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 1rem, 1120px);
    padding-top: 1rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-wordmark {
    height: 4.1rem;
  }

  .hero-card,
  .info-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    text-align: center;
  }

  h1 {
    font-size: 2.85rem;
  }
}

.google-features {
  margin: 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

#calendar-events {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 0.5rem;
}

#email-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 0.5rem;
}

#email-form input,
#email-form textarea {
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: var(--bg-deep);
  color: var(--text);
}

#send-btn {
  align-self: flex-start;
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.85);
  backdrop-filter: blur(12px);
}

.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand {
  max-width: 22rem;
}

.footer-wordmark {
  height: 4rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.2rem 0;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}
