@import "tailwindcss";

:root {
  --ink: #090d10;
  --charcoal: #11181d;
  --panel: #151e23;
  --cyan: #18e7e7;
  --aqua: #6ff7f3;
  --white: #f5f8fa;
  --muted: #9baab2;
  --line: #23333a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(9, 13, 16, 0.94);
  border-bottom: 1px solid rgba(35, 51, 58, 0.72);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 92px;
  padding: 0 clamp(22px, 4.8vw, 72px);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: clamp(17px, 1.7vw, 26px);
  font-weight: 800;
  letter-spacing: 0.1em;
  width: max-content;
}

.wordmark span {
  color: var(--cyan);
  font-size: 1.45em;
  margin-left: 10px;
  text-shadow: 0 0 22px rgba(24, 231, 231, 0.42);
}

.desktop-nav {
  display: flex;
  gap: 42px;
}

.desktop-nav a {
  color: #d9e1e4;
  font-size: 15px;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--cyan);
}

.header-cta {
  border: 1px solid var(--cyan);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  justify-self: end;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero {
  min-height: min(900px, 100svh);
  overflow: hidden;
  padding: 192px clamp(22px, 4.8vw, 72px) 92px;
  position: relative;
}

.hero-image {
  background-image: url("/prime-shine-hero.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-shade {
  background:
    linear-gradient(90deg, #090d10 0%, rgba(9, 13, 16, 0.99) 26%, rgba(9, 13, 16, 0.82) 47%, rgba(9, 13, 16, 0.08) 77%),
    linear-gradient(0deg, rgba(9, 13, 16, 0.85) 0%, transparent 34%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(58px, 7.1vw, 104px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin-bottom: 28px;
}

.hero-copy {
  color: #c3cdd1;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.45;
  max-width: 680px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 36px;
  margin-top: 38px;
}

.button {
  align-items: center;
  border-radius: 12px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 34px;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 28px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--aqua), var(--cyan));
  color: var(--ink);
  min-width: 292px;
}

.button-primary span {
  font-size: 27px;
  transition: transform 180ms ease;
}

.button-primary:hover {
  box-shadow: 0 14px 38px rgba(24, 231, 231, 0.22);
  transform: translateY(-2px);
}

.button-primary:hover span {
  transform: translateX(4px);
}

.price-link {
  color: #dce5e8;
  font-size: 17px;
  white-space: nowrap;
}

.price-link strong {
  color: var(--cyan);
}

.trust-line {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 28px;
  margin-top: 34px;
}

.trust-line span {
  align-items: center;
  display: flex;
}

.trust-line span:not(:first-child)::before {
  background: var(--cyan);
  border-radius: 50%;
  content: "";
  height: 5px;
  margin-right: 28px;
  width: 5px;
}

.location-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(9, 13, 16, 0.82);
  border: 1px solid #33444c;
  border-radius: 16px;
  bottom: 74px;
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  position: absolute;
  right: clamp(22px, 3.2vw, 48px);
  width: 324px;
  z-index: 3;
}

.location-card small,
.location-card em,
.location-card strong {
  display: block;
  font-style: normal;
}

.location-card small {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.location-card strong {
  color: var(--cyan);
  font-size: 28px;
  line-height: 1.2;
}

.location-card em {
  color: #c1ccd0;
  font-size: 13px;
  margin-top: 3px;
}

.location-pin {
  align-items: center;
  border: 1px solid #536a74;
  border-radius: 50%;
  color: var(--cyan);
  display: flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.price-preview {
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  padding: 0 clamp(22px, 4.8vw, 72px);
}

.price-preview > div {
  border-left: 1px solid var(--line);
  padding: 42px 32px;
}

.price-preview > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.price-preview .section-kicker {
  margin-bottom: 12px;
}

.price-preview h2 {
  font-size: clamp(26px, 2.3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0;
  max-width: 460px;
}

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

.preview-price span {
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.preview-price strong {
  display: block;
  font-size: clamp(36px, 3.3vw, 52px);
  margin-bottom: 6px;
}

.preview-price.featured strong,
.preview-price.featured span {
  color: var(--cyan);
}

.pricing-section,
.process-section,
.about-section,
.faq-section,
.final-cta {
  padding: 112px clamp(22px, 4.8vw, 72px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 56px;
}

.section-heading h2,
.process-copy h2,
.about-panel h2,
.faq-section h2,
.final-cta h2 {
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 0;
}

.section-heading > p,
.process-copy > p,
.about-panel > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 0;
}

.package-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 20px;
  min-width: 0;
  padding: 34px;
  position: relative;
}

.package-featured {
  border-color: var(--cyan);
  box-shadow: 0 24px 80px rgba(24, 231, 231, 0.08);
}

.popular-tag {
  background: var(--cyan);
  border-radius: 999px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 9px 13px;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  top: 24px;
}

.package-label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.package-card h3,
.price-protection h3 {
  font-size: clamp(26px, 2.3vw, 36px);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.package-price small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.package-price strong {
  color: var(--white);
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1;
}

.package-featured .package-price strong {
  color: var(--cyan);
}

.package-meta {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 12px 20px;
  margin-top: 18px;
  padding-bottom: 24px;
}

.package-card ul {
  list-style: none;
  margin: 28px 0 34px;
  min-height: 180px;
  padding: 0;
}

.package-card li {
  color: #c9d3d7;
  font-size: 14px;
  line-height: 1.5;
  margin: 13px 0;
  padding-left: 24px;
  position: relative;
}

.package-card li::before {
  color: var(--cyan);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.package-button {
  border: 1px solid #40535b;
  font-size: 14px;
  gap: 18px;
  min-height: 58px;
  min-width: 0;
  width: 100%;
}

.package-button:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.price-protection {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(24, 231, 231, 0.08), transparent 45%),
    var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1.2fr;
  margin-top: 18px;
  padding: 38px 42px;
}

.price-protection .section-kicker {
  margin-bottom: 12px;
}

.price-protection h3 {
  margin: 0;
}

.pricing-rules {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.pricing-rules p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.pricing-rules strong {
  color: var(--white);
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.process-section {
  align-items: start;
  background: #f1f6f7;
  color: var(--ink);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.78fr 1.22fr;
}

.process-copy {
  position: sticky;
  top: 40px;
}

.process-copy .section-kicker {
  color: #008f94;
}

.process-copy > p {
  color: #50636b;
  margin-top: 30px;
  max-width: 500px;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-steps li {
  border-top: 1px solid #cbd8dc;
  display: grid;
  gap: 24px;
  grid-template-columns: 70px 1fr 1fr;
  padding: 38px 0;
}

.process-steps li:last-child {
  border-bottom: 1px solid #cbd8dc;
}

.process-steps span {
  color: #008f94;
  font-size: 13px;
  font-weight: 800;
}

.process-steps h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0;
}

.process-steps p {
  color: #50636b;
  line-height: 1.6;
  margin: 0;
}

.about-section {
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
}

.about-panel {
  align-self: start;
}

.about-panel > p {
  margin-top: 30px;
  max-width: 620px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.area-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbd5d9;
  font-size: 12px;
  padding: 10px 14px;
}

.about-points {
  border-top: 1px solid var(--line);
}

.about-points article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 52px 0.7fr 1fr;
  padding: 34px 0;
}

.about-points strong {
  color: var(--cyan);
  font-size: 12px;
}

.about-points h3 {
  font-size: 22px;
  margin: 0;
}

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

.faq-section {
  background: var(--charcoal);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.8fr 1.2fr;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
  padding-right: 42px;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--cyan);
  content: "+";
  font-size: 25px;
  font-weight: 400;
  position: absolute;
  right: 8px;
  top: -4px;
}

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

.faq-list details p {
  color: var(--muted);
  line-height: 1.7;
  margin: 18px 40px 0 0;
}

.final-cta {
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(24, 231, 231, 0.15), transparent 30%),
    var(--ink);
  display: grid;
  gap: 70px;
  grid-template-columns: 1.2fr 0.8fr;
}

.final-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-self: end;
}

.phone-link {
  color: var(--muted);
  font-size: 15px;
  margin-left: 8px;
}

.phone-link:hover {
  color: var(--cyan);
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  font-size: 13px;
  grid-template-columns: 1fr auto 1fr;
  padding: 34px clamp(22px, 4.8vw, 72px);
}

footer .wordmark {
  color: var(--white);
  font-size: 15px;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
}

.mobile-whatsapp {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    padding: 11px 14px;
  }

  .hero {
    min-height: 820px;
    padding-top: 154px;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, #090d10 0%, rgba(9, 13, 16, 0.92) 53%, rgba(9, 13, 16, 0.65) 100%),
      linear-gradient(90deg, rgba(9, 13, 16, 0.93), rgba(9, 13, 16, 0.15));
  }

  .hero-content {
    max-width: 680px;
  }

  .location-card {
    bottom: 38px;
  }

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

  .price-preview > div:first-child {
    grid-column: 1 / -1;
  }

  .price-preview > div:nth-child(2) {
    border-left: 0;
  }

  .pricing-section,
  .process-section,
  .about-section,
  .faq-section,
  .final-cta {
    padding-block: 84px;
  }

  .section-heading,
  .process-section,
  .about-section,
  .faq-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 28px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card ul {
    min-height: 0;
  }

  .price-protection {
    grid-template-columns: 1fr;
  }

  .process-section,
  .about-section,
  .faq-section {
    gap: 54px;
  }

  .process-copy {
    position: static;
  }

  .final-actions {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 18px;
  }

  .wordmark {
    font-size: 16px;
  }

  .wordmark span {
    margin-left: 5px;
  }

  .header-cta {
    font-size: 11px;
    padding: 10px 12px;
  }

  .hero {
    min-height: 790px;
    padding: 132px 18px 210px;
  }

  .hero-image {
    background-position: 69% center;
  }

  h1 {
    font-size: clamp(51px, 16vw, 74px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .button-primary {
    min-width: 0;
    width: 100%;
  }

  .trust-line {
    display: grid;
    gap: 9px;
  }

  .trust-line span:not(:first-child)::before {
    margin-right: 10px;
  }

  .location-card {
    bottom: 28px;
    left: 18px;
    right: 18px;
    width: auto;
  }

  .price-preview {
    display: block;
    padding-inline: 18px;
  }

  .price-preview > div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0;
  }

  .price-preview > div:first-child {
    border-top: 0;
  }

  .pricing-section,
  .process-section,
  .about-section,
  .faq-section,
  .final-cta {
    padding: 68px 18px;
  }

  .section-heading h2,
  .process-copy h2,
  .about-panel h2,
  .faq-section h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .package-card {
    padding: 28px 24px;
  }

  .price-protection {
    padding: 30px 24px;
  }

  .pricing-rules {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    gap: 11px;
    grid-template-columns: 44px 1fr;
  }

  .process-steps li p {
    grid-column: 2;
  }

  .about-points article {
    gap: 10px;
    grid-template-columns: 40px 1fr;
  }

  .about-points article p {
    grid-column: 2;
  }

  .final-actions,
  .final-actions .button-primary {
    width: 100%;
  }

  footer {
    gap: 20px;
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  footer > a:last-child {
    justify-self: start;
  }

  .mobile-whatsapp {
    background: var(--cyan);
    border-radius: 12px;
    bottom: 12px;
    box-shadow: 0 14px 34px rgba(9, 13, 16, 0.45);
    color: var(--ink);
    display: block;
    font-size: 15px;
    font-weight: 800;
    left: 12px;
    padding: 16px 20px;
    position: fixed;
    right: 12px;
    text-align: center;
    z-index: 20;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
