:root {
  --bg: #07111d;
  --bg-soft: #0b1726;
  --panel: #0f1c2d;
  --panel-2: #132338;
  --panel-3: #182b43;
  --text: #f8fafc;
  --muted: #b7c4d4;
  --muted-2: #8da0b6;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --gold-border: rgba(212, 175, 55, 0.35);
  --blue: #1f8fff;
  --blue-dark: #116fd0;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 18px;
  --max-width: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 143, 255, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.07), transparent 24%),
    linear-gradient(180deg, #07111d 0%, #0a1523 48%, #09121d 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 17, 29, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a:hover {
  color: #ffffff;
}

.call-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(17, 111, 208, 0.32);
}

.secondary-btn,
.call-btn {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.primary-btn:hover,
.secondary-btn:hover,
.call-btn:hover {
  transform: translateY(-1px);
}

.secondary-btn:hover,
.call-btn:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  padding: 72px 0 52px;
}

.hero-grid,
.quote-grid,
.split-grid {
  display: grid;
  gap: 30px;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(31, 143, 255, 0.12);
  color: #79bbff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(31, 143, 255, 0.16);
}

.gold-eyebrow {
  color: #f1d98c;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
}

.hero-copy h1,
.split-grid h2,
.quote-copy h2 {
  margin: 0 0 16px;
  line-height: 1.02;
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  letter-spacing: -0.04em;
}

.hero-lead,
.about-copy p,
.quote-copy p,
.premium-card p,
.quote-highlight p,
.quote-contact-box p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-contact-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 10px 0 0;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.hero-contact-label {
  color: var(--muted);
  font-weight: 700;
}

.hero-phone {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.trust-list,
.mini-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list li {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  font-weight: 700;
  color: #e6edf6;
}

.hero-card,
.service-card,
.quote-form,
.note-box,
.stat-card,
.quote-contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card,
.stat-card,
.quote-form {
  padding: 0;
}

.section {
  padding: 46px 0;
}

.accent-section {
  margin: 20px 0;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 24%),
    linear-gradient(135deg, #07101c 0%, #0d1828 52%, #0a1320 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.split-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.about-copy p {
  margin: 0 0 18px;
}

.premium-card {
  background: linear-gradient(180deg, rgba(19, 35, 56, 0.98) 0%, rgba(13, 28, 45, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #f2dc8e, var(--gold));
}

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #f3da89;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
}

.premium-card h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.08;
  color: #ffffff;
}

.premium-card p {
  margin: 0 0 22px;
}

.premium-card a {
  color: #ffffff;
  text-decoration: none;
}

.premium-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.premium-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  min-height: 46px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.trust-item.featured {
  border: 1px solid var(--gold-border);
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(255,255,255,0.04));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.trust-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.28);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.trust-item strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.trust-item p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  font-size: 0.96rem;
}

.quote-section {
  padding-top: 52px;
  padding-bottom: 62px;
}

.quote-grid {
  grid-template-columns: 0.94fr 1.06fr;
  align-items: start;
}

.premium-quote-copy h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.quote-highlights {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.quote-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.quote-highlight span {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
}

.quote-highlight p {
  margin: 0;
  color: #ebf1f7;
  font-weight: 600;
}

.quote-contact-box {
  padding: 22px 22px;
  background: linear-gradient(180deg, rgba(19,35,56,0.98) 0%, rgba(14,27,43,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.quote-contact-box p {
  margin: 0 0 10px;
  color: var(--muted);
}

.quote-contact-box p:last-child {
  margin-bottom: 0;
}

.quote-contact-box strong,
.quote-contact-box a {
  color: #ffffff;
}

.premium-form {
  background: linear-gradient(180deg, rgba(19,35,56,1) 0%, rgba(13,28,45,1) 100%);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
  position: relative;
  overflow: hidden;
}

.premium-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #f1dc91, var(--gold));
}

.form-header {
  margin-bottom: 22px;
}

.form-header h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: #ffffff;
}

.form-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.premium-form .field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.premium-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-weight: 800;
  font-size: 0.96rem;
  color: #f5f8fc;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: #ffffff;
  background: rgba(255,255,255,0.04);
}

select option {
  color: #111827;
}

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

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212,175,55,0.65);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
  background: rgba(255,255,255,0.06);
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.submit-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 4px;
}

.text-link-btn {
  display: inline-block;
  margin-top: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.text-link-btn:hover {
  color: #8bc6ff;
}

.site-footer {
  padding: 26px 0 42px;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}

.footer-wrap strong,
.footer-wrap a {
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero-grid,
  .quote-grid,
  .split-grid,
  .premium-form .field-row {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 42px;
  }

  .brand img {
    height: 56px;
  }

  .premium-card,
  .premium-form {
    padding: 24px;
  }

  .trust-item {
    padding: 18px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 22px));
  }

  .hero-copy h1,
  .split-grid h2,
  .quote-copy h2 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .call-btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-contact-strip {
    width: 100%;
    border-radius: 18px;
  }

  .trust-list {
    flex-direction: column;
  }

  .premium-pills span {
    white-space: normal;
    text-align: center;
  }
}