:root {
  --primary: #0f80ff;
  --primary-dark: #0a5ac0;
  --accent: #ffb100;
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --card: #ffffff;
  --border-subtle: rgba(0, 0, 0, 0.08);
  --text-main: #1a1a1a;
  --text-muted: #4a5568;
  --text-soft: #718096;
  --danger: #ef4444;
  --success: #22c55e;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 999px;
  --nav-height: 76px;
  --container-max: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  line-height: 1;
}

.brand-text-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.86rem;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--text-muted);
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #38bdf8, #0f80ff);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--background-alt);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  font-size: 0.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.15s ease;
}

.phone-pill:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.phone-pill span {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}

.btn-primary {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 128, 255, 0.3);
  background: linear-gradient(135deg, #0ea5e9, #0f80ff);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(15, 128, 255, 0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 8px 20px rgba(15, 128, 255, 0.35);
}

.btn-primary .icon {
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--background-alt);
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex-direction: column;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Mobile nav dropdown */

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--background);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.mobile-nav.open {
  max-height: 400px;
  opacity: 1;
  padding: 18px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links a {
  padding: 10px 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.mobile-nav-links a:hover {
  background: var(--background-alt);
  color: var(--text-main);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Hero */

main {
  flex: 1;
}

.hero {
  padding: 48px 0 60px;
  background: linear-gradient(to bottom, rgba(15, 128, 255, 0.02), transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  background: var(--background-alt);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-bottom: 18px;
}

.hero-eyebrow-badge {
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, #22c55e, #16a34a);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-eyebrow-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-heading {
  font-size: clamp(2.35rem, 3.1vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero-heading .highlight {
  background: linear-gradient(120deg, #38bdf8, #0f80ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin-bottom: 22px;
  font-size: 0.9rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-soft);
}

.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-alt);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn-secondary {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-muted);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--background);
  transition: all 0.15s ease;
}

.btn-secondary:hover {
  background: var(--background-alt);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-secondary .icon {
  font-size: 0.96rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-note-pill {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-main);
  background: var(--background-alt);
}

/* Hero card */

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--card);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.hero-card-inner {
  position: relative;
  border-radius: 20px;
  background: var(--background-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.hero-card-title {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
  font-weight: 600;
}

.hero-card-tag {
  font-size: 0.74rem;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-soft);
  background: var(--background);
  white-space: nowrap;
}

/* Hero card carousel */

.hero-card-carousel {
  position: relative;
  margin-bottom: 14px;
}

.hero-card-slides {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--background-alt);
}

.hero-card-carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  z-index: 2;
}

.hero-card-slide {
  display: none;
  padding: 16px;
  padding-bottom: 0;
}

.hero-card-slide.hero-card-slide-active {
  display: block;
}

.hero-card-slide .hero-card-header {
  margin-bottom: 12px;
}

.hero-card-slide .hero-card-main {
  margin-bottom: 0;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -1px;
  border-radius: 0 0 18px 18px;
}

.hero-card-carousel-prev,
.hero-card-carousel-next {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--card);
  color: var(--text-main);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.15s, border-color 0.15s;
}

.hero-card-carousel-prev:hover,
.hero-card-carousel-next:hover {
  background: var(--background-alt);
  border-color: rgba(0, 0, 0, 0.2);
}

.hero-card-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--background);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-card-dot:hover {
  background: var(--background-alt);
}

.hero-card-dot.hero-card-dot-active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

.hero-card-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--background-alt);
  min-height: 210px;
  margin-bottom: 14px;
}

.hero-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  filter: saturate(1.1) contrast(1.05);
}

.hero-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.hero-card-stats {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stat-pill {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.stat-pill .value {
  font-weight: 700;
}

.stat-pill .label {
  color: rgba(255, 255, 255, 0.85);
}

.hero-card-meter {
  flex: 1;
  height: 4px;
  width: 100%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-meter-fill {
  width: 95%;
  height: 100%;
  background: linear-gradient(to right, #ef4444, #c58c22, #16a34a, #50ea08);
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card-footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-soft);
  flex: 1;
  min-width: 0;
}

.hero-card-footer-left strong {
  color: var(--text-main);
}

.hero-card-footer .rating-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hero-card-footer .rating-box .stat-pill {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--background);
  color: var(--text-main);
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: none;
  backdrop-filter: none;
  width: fit-content;
}

.hero-card-footer .rating-box .stat-pill .value {
  font-weight: 700;
  color: var(--text-main);
}

.hero-card-footer .rating-box .stat-pill .label {
  color: var(--text-soft);
}

.hero-card-footer .rating-box .hero-card-meter {
  flex: none;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-card-footer .rating-box .hero-card-meter-fill {
  width: 95%;
  height: 100%;
  /** background: linear-gradient(to right, var(--success), #ef4444, #c58c22, #08ea2e); **/
}

.hero-card-footer-avatars {
  display: flex;
  flex-shrink: 0;
}

.avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid var(--background);
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.avatar-circle + .avatar-circle {
  margin-left: -8px;
}

.hero-card-footer-right {
  font-size: 0.76rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero-card-footer-right .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.hero-card-footer-right .value {
  color: var(--text-main);
  font-weight: 600;
}

/* Sections */

.section-block {
  padding: 48px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 6px 24px;
  margin-bottom: 32px;
}

.section-title-group {
  display: contents;
}

.section-eyebrow {
  grid-row: 1;
  grid-column: 1;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.section-title {
  grid-row: 2;
  grid-column: 1;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-title .highlight {
  color: #0f80ff;
}

.section-subtitle {
  grid-row: 2;
  grid-column: 2;
  align-self: start;
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 480px;
}

/* Confidence / Results */

.confidence-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.confidence-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.confidence-card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.confidence-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.confidence-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}

.metric-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--background-alt);
  color: var(--text-soft);
}

.metric-pill strong {
  color: var(--text-main);
  font-weight: 600;
}

.confidence-list {
  list-style: none;
  display: grid;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.confidence-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.confidence-list-bullet {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--background-alt);
}

.confidence-list-bullet span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0f80ff);
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  box-shadow: var(--shadow-card);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}

.service-card-title {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.3;
  flex: 1;
}

.service-card-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-soft);
  background: var(--background-alt);
  white-space: nowrap;
}

.service-card > p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.service-card-bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Contact section */

.form-section {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.contact-card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-card-info {
  display: grid;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.contact-card-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.info-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-card-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
}

.contact-badge {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--background);
  color: var(--text-main);
}

.form-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.form-field label {
  color: var(--text-main);
  font-weight: 500;
}

.form-field .required {
  color: var(--danger);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--background);
  color: var(--text-main);
  padding: 10px 12px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #0f80ff;
  box-shadow: 0 0 0 3px rgba(15, 128, 255, 0.1);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 6px;
}

/* Footer */

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 48px;
  background: var(--background-alt);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .confidence-row,
  .service-grid,
  .form-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .primary-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-checklist {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-block {
    padding: 32px 0;
  }

  .section-header {
    grid-template-columns: 1fr;
  }

  .section-eyebrow { grid-column: 1; }
  .section-title { grid-column: 1; }
  .section-subtitle {
    grid-column: 1;
    grid-row: 3;
    max-width: 100%;
  }

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card-footer-left,
  .hero-card-footer-right {
    min-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Cookie popup */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: var(--card);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.cookie-popup.hidden {
  transform: translateY(100%);
}

.cookie-popup p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-main);
  max-width: 520px;
}

.cookie-popup .cookie-accept {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0ea5e9, #0f80ff);
  color: #fff;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-popup .cookie-accept:hover {
  opacity: 0.95;
}

.cookie-accept-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 0 999px 999px;
  width: 100%;
  transform-origin: left;
}

.cookie-popup:not(.hidden) .cookie-accept .cookie-accept-progress {
  animation: cookie-progress 10s linear forwards;
}

@keyframes cookie-progress {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* Lightbox - click to enlarge, no zoom */

.hero-card-image img {
  cursor: pointer;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: none;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
