:root {
  --bg: #08090a;
  --bg-soft: #101316;
  --panel: rgba(23, 26, 29, 0.78);
  --panel-light: rgba(255, 255, 255, 0.055);
  --text: #f7f3ec;
  --muted: #b8b1a7;
  --line: rgba(255, 255, 255, 0.105);
  --gold: #c7a45d;
  --gold-bright: #e0c078;
  --blue: #4aa9f5;
  --blue-soft: rgba(74, 169, 245, 0.16);
  --copper: #a7674f;
  --green: #728d81;
  --shadow: 0 28px 95px rgba(0, 0, 0, 0.36);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(135deg, rgba(199, 164, 93, 0.08) 0%, transparent 28%),
    linear-gradient(225deg, rgba(114, 141, 129, 0.08) 0%, transparent 32%),
    linear-gradient(180deg, #090a0b 0%, var(--bg) 42%, #0c0d0e 100%);
  color: var(--text);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 28px));
  margin: 14px auto 0;
  border-radius: 999px;
  padding: 12px clamp(14px, 3vw, 24px);
  background: rgba(11, 12, 13, 0.58);
  border-bottom: 1px solid transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(11, 12, 13, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 240px;
}

.brand-logo {
  width: 224px;
  height: 54px;
  object-fit: contain;
  border-radius: 999px;
  filter: contrast(1.08) brightness(1.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(247, 243, 236, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-phone {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(224, 192, 120, 0.44);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #15110a;
  border-color: var(--gold);
  box-shadow: 0 16px 42px rgba(199, 164, 93, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 158px clamp(18px, 5vw, 72px) 58px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.62) 0%, rgba(8, 9, 10, 0.76) 36%, rgba(8, 9, 10, 0.76) 64%, rgba(8, 9, 10, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.98) 0%, rgba(8, 9, 10, 0.15) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 660px;
  color: rgba(247, 243, 236, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 58px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 10px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(17, 20, 23, 0.72);
  backdrop-filter: blur(14px);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: var(--muted);
}

.hero-panel strong {
  display: block;
  margin: 6px 0 2px;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  line-height: 1;
}

section:not(.hero) {
  padding: 96px clamp(18px, 5vw, 72px);
}

.intro-section,
.process-section,
.terms-section {
  background: var(--bg);
}

.intro-grid,
.section-heading,
.addons,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1220px;
  margin: 48px auto 0;
}

.service-strip span {
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 243, 236, 0.86);
  font-weight: 700;
}

.packages-section,
.faq-section,
.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--bg-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 14px auto 22px;
}

.price-group {
  max-width: 1220px;
  margin: 42px auto 0;
}

.price-group + .price-group {
  margin-top: 34px;
}

.price-group-label {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 8px 12px;
  border: 1px solid rgba(224, 192, 120, 0.22);
  border-radius: 999px;
  background: rgba(224, 192, 120, 0.09);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card,
.addons,
.process-grid article,
.faq-list details,
.terms-grid article,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.price-card {
  position: relative;
  min-height: 100%;
  padding: 32px;
  overflow: hidden;
}

.price-card::before,
.process-grid article::before,
.terms-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%);
}

.price-card.featured {
  border-color: rgba(224, 192, 120, 0.44);
  background:
    linear-gradient(145deg, rgba(224, 192, 120, 0.16), rgba(23, 26, 29, 0.86) 48%),
    var(--panel);
}

.premium-card {
  grid-column: 1 / -1;
  border-color: rgba(74, 169, 245, 0.56);
  background:
    linear-gradient(145deg, rgba(74, 169, 245, 0.18), rgba(23, 26, 29, 0.86) 48%),
    var(--panel);
}

.premium-card .badge,
.premium-card .price-top strong {
  color: #82c9ff;
}

.premium-card .badge {
  background: var(--blue-soft);
}

.premium-card li::before {
  border-color: var(--blue);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(224, 192, 120, 0.14);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.price-top p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.price-top strong {
  color: var(--gold-bright);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  white-space: nowrap;
}

ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 28px;
  color: rgba(247, 243, 236, 0.82);
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
}

.duration {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.addons {
  margin-top: 24px;
  padding: 30px;
}

.addons h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.addons-list {
  display: grid;
  gap: 10px;
  background: transparent;
}

.addons-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: var(--panel-light);
}

.addons-list span {
  color: var(--muted);
}

.addons-list strong {
  text-align: right;
}

.pricing-note {
  max-width: 1220px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-cta,
.terms-preview,
.mobile-service-grid {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta,
.terms-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(74, 169, 245, 0.25);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(74, 169, 245, 0.11), rgba(255, 255, 255, 0.035));
}

.pricing-cta h3,
.pricing-cta p,
.terms-preview p {
  margin-bottom: 0;
}

.pricing-cta .section-kicker {
  margin-bottom: 8px;
}

.process-grid,
.terms-grid,
.faq-list {
  max-width: 1220px;
  margin: 42px auto 0;
}

.mobile-service-section,
.terms-preview-section {
  background: var(--bg);
}

.mobile-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.mobile-service-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.mobile-service-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-weight: 800;
}

.mobile-service-grid p,
.terms-preview p,
.legal-hero p,
.legal-content p {
  color: var(--muted);
}

.service-area-note {
  max-width: 1220px;
  margin: 22px auto 0;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(74, 169, 245, 0.07);
  color: var(--muted);
}

.service-area-note strong {
  color: var(--text);
}

.terms-preview {
  margin-top: 0;
}

.terms-preview > div {
  max-width: 800px;
}

.terms-preview h2 {
  margin-bottom: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-grid article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-bright);
  font-weight: 800;
}

.process-grid p,
.terms-grid p,
.faq-list p,
.contact-section p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.terms-grid article {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.terms-grid article:last-child {
  grid-column: 1 / -1;
}

.contact-section {
  align-items: center;
}

.contact-section h2 {
  margin-bottom: 18px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-card a,
.contact-card span {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--panel-light);
  color: var(--text);
  font-weight: 800;
}

.contact-card .facebook-button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(74, 169, 245, 0.45);
  background: linear-gradient(135deg, rgba(74, 169, 245, 0.2), rgba(74, 169, 245, 0.08));
  color: #b9e1ff;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-card .facebook-button:hover {
  transform: translateY(-1px);
  border-color: rgba(74, 169, 245, 0.85);
  background: linear-gradient(135deg, rgba(74, 169, 245, 0.3), rgba(74, 169, 245, 0.12));
}

.facebook-button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #070808;
}

.site-footer a:hover {
  color: var(--text);
}

.mobile-contact-bar {
  display: none;
}

.legal-main {
  min-height: calc(100vh - 74px);
  padding-top: 116px;
}

.legal-hero,
.legal-content {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-hero {
  padding: 64px 24px 28px;
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
}

.legal-content {
  display: grid;
  gap: 16px;
  padding: 20px 24px 88px;
}

.legal-content article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 86px 12px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(11, 12, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 15px 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .intro-grid,
  .section-heading,
  .addons,
  .contact-section,
  .pricing-grid,
  .process-grid,
  .terms-grid,
  .mobile-service-grid {
    grid-template-columns: 1fr;
  }

  .terms-grid article:last-child {
    grid-column: auto;
  }

  .premium-card {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    width: calc(100% - 20px);
    padding: 10px 12px;
  }

  .brand {
    min-width: 154px;
  }

  .brand-logo {
    width: 150px;
    height: 44px;
  }

  .hero {
    min-height: 96vh;
    padding: 122px 16px 30px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 12, 13, 0.96), rgba(11, 12, 13, 0.54)),
      linear-gradient(0deg, rgba(11, 12, 13, 0.96), rgba(11, 12, 13, 0.2));
  }

  .hero-actions,
  .site-footer,
  .pricing-cta,
  .terms-preview {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  section:not(.hero) {
    padding: 70px 16px;
  }

  .price-card,
  .addons,
  .process-grid article,
  .terms-grid article {
    padding: 22px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(11, 12, 13, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
  }

  .mobile-contact-bar a:last-child {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #15110a;
  }

  .legal-main {
    padding-top: 94px;
  }

  .legal-hero {
    padding: 44px 16px 18px;
  }

  .legal-content {
    padding: 12px 16px 64px;
  }

  .legal-nav {
    display: none;
  }

  .price-top,
  .addons-list div {
    display: grid;
  }

  .price-top strong,
  .addons-list strong {
    text-align: left;
    white-space: normal;
  }
}
