:root {
  --teal: #00a7a5;
  --teal2: #0bc7c4;
  --gold: #f4b51f;
  --gold2: #ffd76a;
  --black: #050607;
  --ink: #0f1720;
  --light: #f7fafb;
  --card: #ffffff;
  --muted: #6b7280;
  --line: #e6e9ee;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(12, 19, 28, .14);
  --shadow-hover: 0 24px 60px rgba(12, 19, 28, .20);
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: var(--light);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  background: rgba(5, 6, 7, .94);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.brand {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand:hover {
  opacity: .92;
}

.brand span {
  color: var(--gold);
}

.top-nav {
  display: none;
  gap: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, .74);
}

.top-nav a:hover {
  color: var(--gold);
}

.menu-pill {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.mobile-menu-toggle {
  width: auto !important;
  padding: 6px 10px !important;
  margin: 0 2px 0 14px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, .78) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: auto !important;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  transform: none !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, .05) !important;
  border-color: rgba(244, 181, 31, .42) !important;
  color: #fff !important;
}

.mobile-nav {
  display: none;
  background: rgba(5, 6, 7, .98);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 20px 16px;
  position: sticky;
  top: 61px;
  z-index: 19;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 800;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* Logo wordmark fallback */
.logo-wordmark {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-clock {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  margin-right: 2px;
}

.logo-hand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 7px;
  background: var(--teal);
  transform-origin: bottom;
  transform: translate(-50%, -100%) rotate(35deg);
}

.logo-wordmark b {
  color: var(--gold);
  margin-left: 4px;
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(244, 181, 31, .22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(0, 167, 165, .16), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f7ffff 60%, #fff7df 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0, 167, 165, .16);
  border-radius: 50%;
  right: -150px;
  top: 48px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(244, 181, 31, .14);
  border-radius: 38px;
  left: -90px;
  bottom: 18px;
  transform: rotate(18deg);
}

.hero-text,
.form {
  position: relative;
  z-index: 2;
  animation: heroFade .7s ease both;
}

.form {
  animation-delay: .12s;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(0, 167, 165, .28);
  background: rgba(0, 167, 165, .08);
  color: #047777;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 167, 165, .12);
}

.hero h1 {
  font-size: clamp(36px, 8vw, 62px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.065em;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #374151;
  font-size: 16px;
  margin: 14px 0 0;
  max-width: 620px;
  line-height: 1.6;
}

/* Trust row */
.trust {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.trust div {
  background: rgba(255, 255, 255, .9);
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(12, 19, 28, .10);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .85);
  transition: .22s ease;
}

.trust div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Icons */
.icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  color: #064f4f;
  background: linear-gradient(135deg, rgba(0, 167, 165, .16), rgba(244, 181, 31, .18));
  flex: 0 0 auto;
}

.icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Live strip */
.live-strip {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 24px;
  padding: 13px 14px;
  border-radius: 15px;
  background: rgba(5, 6, 7, .91);
  color: #fff;
  box-shadow: 0 18px 40px rgba(5, 6, 7, .18);
  overflow: hidden;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  font-size: 12px;
  font-weight: 950;
  color: var(--gold2);
  letter-spacing: .05em;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #36f5bd;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(54, 245, 189, .55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(54, 245, 189, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(54, 245, 189, 0);
  }
}

.live-track {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.45;
}

/* Forms */
.form {
  background: linear-gradient(180deg, #fff, #fdfefe);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 167, 165, .14);
}

.form h3 {
  margin: 0 0 4px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.form-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  background: #fff;
  transition: .15s ease;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 167, 165, .13);
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin: 0;
  flex: 0 0 auto;
}

label:has(input[type="checkbox"]),
label:has(input[type="radio"]) {
  gap: 8px;
}

.location-row {
  display: flex;
  gap: 8px;
}

.location-row input {
  flex: 1;
}

.location-row button {
  width: auto;
  margin: 8px 0;
  padding: 0 13px;
}

/* Buttons */
button,
.btn {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  padding: 15px;
  width: 100%;
  border: none;
  border-radius: 13px;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: .22s ease;
  box-shadow: 0 12px 25px rgba(244, 181, 31, .26);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #111;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(244, 181, 31, .16), 0 18px 34px rgba(244, 181, 31, .34);
}

.micro-note {
  display: block;
  text-align: center;
  margin-top: 11px;
  color: #6b7280;
  font-size: 12px;
}

/* Content sections */
.section {
  padding: 44px 20px;
}

.section h2 {
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -.04em;
}

.section-intro {
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.55;
}

.how {
  display: grid;
  gap: 14px;
}

.step {
  background: #fff;
  padding: 18px 16px 16px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(12, 19, 28, .09);
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, .04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: .22s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--black);
  color: var(--gold);
  font-weight: 950;
  font-size: 18px;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.step small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

/* Cards/services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12, 19, 28, .09);
  font-weight: 850;
  transition: .22s ease;
  border: 1px solid rgba(0, 167, 165, .08);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 167, 165, .28);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card .icon {
  padding: 4px;
}

.card small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.35;
}

/* Page/admin utilities */
.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 20px;
}

.panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 22px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.table th,
.table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.notice {
  background: #ecfdfb;
  border: 1px solid rgba(0, 167, 165, .2);
  padding: 14px;
  border-radius: 12px;
}

.error {
  background: #fff2f2;
  border: 1px solid rgba(220, 38, 38, .2);
  padding: 14px;
  border-radius: 12px;
}

/* Footer */
.footer {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 167, 165, .14), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(244, 181, 31, .14), transparent 24%),
    #050607;
  color: #fff;
  padding: 46px 20px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-brand img {
  height: 32px;
  width: auto;
  display: block;
  opacity: .95;
  transition: opacity .2s ease;
}

.footer-brand img:hover {
  opacity: 1;
}

.footer p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
  margin: 0;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 14px;
  color: #fff;
  letter-spacing: .02em;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, .68);
  transition: .18s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-cta {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.footer-cta strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.footer-cta .footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 950;
  box-shadow: 0 12px 25px rgba(244, 181, 31, .22);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .75);
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 34px;
  padding: 16px 0;
  color: rgba(255, 255, 255, .56);
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Desktop */
@media (min-width: 768px) {
  .top-nav {
    display: flex;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    padding: 86px 44px 70px;
  }

  .hero-text {
    flex: 1.15;
  }

  .form {
    flex: 1;
    max-width: 430px;
  }

  .trust {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .step {
    display: block;
    min-height: 150px;
  }

  .step-num {
    margin-bottom: 14px;
  }

  .services {
    grid-template-columns: repeat(5, 1fr);
  }

  .section {
    padding: 56px 44px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr .8fr .8fr .8fr 1.2fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .header {
    padding: 14px 18px;
    gap: 14px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .top-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .hero {
    padding: 42px 16px 38px;
  }

  .section {
    padding: 38px 16px;
  }
}
