:root {
  --hello-navy: #0b1526;
  --hello-navy-2: #101f35;
  --hello-ink: #172033;
  --hello-muted: #637083;
  --hello-line: #d9e1ea;
  --hello-soft: #f4f7fb;
  --hello-amber: #f5b700;
  --hello-amber-dark: #d99600;
  --hello-white: #ffffff;
  --hello-radius: 18px;
  --hello-shadow: 0 18px 48px rgba(11, 21, 38, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color: var(--hello-ink);
  background: var(--hello-white);
  line-height: 1.6;
}

body.has-navbar-fixed-top {
  padding-top: 4.25rem;
}

.navbar {
  border-bottom: 1px solid rgba(217, 225, 234, 0.86);
  box-shadow: 0 10px 30px rgba(11, 21, 38, 0.06);
}

.navbar-brand .navbar-item {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.7rem;
}

.brand-text small {
  display: block;
  color: var(--hello-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -0.15rem;
}

.navbar-item.is-active,
.navbar-link.is-active {
  color: var(--hello-navy);
  font-weight: 800;
}

.navbar-item.is-active::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--hello-amber);
  margin-top: 0.2rem;
}

.hero-home {
  position: relative;
  overflow: hidden;
  color: var(--hello-white);
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 183, 0, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(11, 21, 38, 0.96), rgba(16, 31, 53, 0.96)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 18px);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 52%, rgba(245, 183, 0, 0.08) 52% 70%, transparent 70% 100%);
  pointer-events: none;
}

.hero-home .container {
  position: relative;
}

.kicker {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.45rem 0.75rem;
  color: #1d2939;
  background: var(--hello-amber);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker.is-light {
  color: var(--hello-navy);
  background: rgba(245, 183, 0, 0.16);
}

.title.is-hero {
  color: var(--hello-white);
  max-width: 13ch;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero-home .subtitle {
  color: rgba(255,255,255,0.82);
  max-width: 42rem;
}

.hero-panel {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  box-shadow: var(--hello-shadow);
}

.hero-panel .panel-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.hero-panel .panel-row:last-child {
  border-bottom: 0;
}

.panel-icon,
.service-icon,
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--hello-navy);
  background: var(--hello-amber);
  border-radius: 999px;
  font-weight: 900;
}

.button.is-hello-primary {
  color: var(--hello-navy);
  background: var(--hello-amber);
  border-color: var(--hello-amber);
  font-weight: 800;
}

.button.is-hello-primary:hover,
.button.is-hello-primary:focus {
  color: var(--hello-navy);
  background: #ffd15a;
  border-color: #ffd15a;
}

.button.is-hello-outline {
  color: var(--hello-white);
  background: transparent;
  border-color: rgba(255,255,255,0.46);
  font-weight: 800;
}

.button.is-hello-outline:hover,
.button.is-hello-outline:focus {
  color: var(--hello-navy);
  background: var(--hello-white);
  border-color: var(--hello-white);
}

.button.is-hello-dark {
  color: var(--hello-white);
  background: var(--hello-navy);
  border-color: var(--hello-navy);
  font-weight: 800;
}

.button.is-hello-dark:hover,
.button.is-hello-dark:focus {
  color: var(--hello-white);
  background: var(--hello-navy-2);
  border-color: var(--hello-navy-2);
}

.section.is-soft {
  background: var(--hello-soft);
}

.section-title {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-title .title {
  color: var(--hello-navy);
  letter-spacing: -0.035em;
}

.section-title .subtitle {
  color: var(--hello-muted);
}

.card.service-card,
.standard-card,
.contact-card,
.quote-card,
.process-card {
  height: 100%;
  border: 1px solid var(--hello-line);
  border-radius: var(--hello-radius);
  box-shadow: 0 12px 28px rgba(11, 21, 38, 0.08);
  overflow: hidden;
}

.card.service-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.service-card .card-content {
  padding: 1.65rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

.service-card .title,
.standard-card .title,
.contact-card .title,
.quote-card .title,
.process-card .title {
  color: var(--hello-navy);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--hello-amber-dark);
  font-weight: 900;
}

.dark-band {
  color: var(--hello-white);
  background:
    linear-gradient(135deg, rgba(11,21,38,0.98), rgba(16,31,53,0.98)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 18px);
}

.dark-band .title,
.dark-band .subtitle,
.dark-band strong {
  color: var(--hello-white);
}

.dark-band .subtitle {
  color: rgba(255,255,255,0.74);
}

.callout-box {
  border: 1px solid rgba(245,183,0,0.4);
  border-left: 7px solid var(--hello-amber);
  border-radius: var(--hello-radius);
  background: rgba(255,255,255,0.08);
  padding: 1.4rem;
}

.page-header {
  color: var(--hello-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(245,183,0,0.18), transparent 18rem),
    linear-gradient(135deg, var(--hello-navy), var(--hello-navy-2));
}

.page-header .title {
  color: var(--hello-white);
  letter-spacing: -0.05em;
}

.page-header .subtitle {
  color: rgba(255,255,255,0.78);
  max-width: 46rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.78);
}

.breadcrumb li.is-active a {
  color: var(--hello-amber);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hello-line);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: #fff;
  color: var(--hello-ink);
  font-weight: 700;
  font-size: 0.84rem;
}

.pill.is-dark {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
}

.process-card {
  padding: 1.5rem;
  background: #fff;
}

.process-number {
  margin-bottom: 1rem;
}

.quote-card {
  background: #fff;
}

.quote-card .card-content {
  padding: 1.8rem;
}

.input,
.textarea,
.select select {
  border-color: var(--hello-line);
  box-shadow: none;
}

.input:focus,
.textarea:focus,
.select select:focus {
  border-color: var(--hello-amber-dark);
  box-shadow: 0 0 0 0.125em rgba(245,183,0,0.18);
}

.notice {
  border-radius: var(--hello-radius);
  background: #fff8e0;
  border: 1px solid #ffe3a1;
  color: #5c4300;
  padding: 1rem 1.15rem;
}

.footer {
  color: rgba(255,255,255,0.76);
  background: var(--hello-navy);
  padding: 3rem 1.5rem 2rem;
}

.footer a {
  color: var(--hello-white);
}

.footer strong,
.footer .title {
  color: var(--hello-white);
}

.footer-line {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
}

.footer-logo {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  body.has-navbar-fixed-top {
    padding-top: 3.25rem;
  }

  .hero-home .hero-body {
    padding: 4.5rem 1.5rem 3rem;
  }

  .title.is-hero {
    max-width: 100%;
  }

  .navbar-item.is-active::after {
    display: none;
  }
}

@media print {
  .navbar,
  .footer,
  .button,
  .quote-card {
    display: none !important;
  }

  body.has-navbar-fixed-top {
    padding-top: 0;
  }
}


.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.admin-layout {
  background: var(--hello-soft);
  min-height: 100vh;
}

.admin-card {
  border: 1px solid var(--hello-line);
  border-radius: var(--hello-radius);
  box-shadow: 0 12px 32px rgba(11, 21, 38, 0.08);
}

.table td,
.table th {
  vertical-align: middle;
}

.message-box {
  white-space: pre-wrap;
  background: #f8fafc;
  border: 1px solid var(--hello-line);
  border-radius: 12px;
  padding: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(245, 183, 0, 0.18);
  color: var(--hello-navy);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
