:root {
  --navy: #0c1e36;
  --solar: #f4b400;
  --warm: #f5f7fa;
  --text: #4b5563;
  --accent: #11a8f5;
  --white: #ffffff;
  --line: rgba(12, 30, 54, 0.12);
  --shadow: 0 18px 45px rgba(12, 30, 54, 0.12);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 78px;
  background: var(--warm);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3,
strong {
  color: var(--navy);
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 8vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 247, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav,
.section,
.site-footer {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-logo {
  width: 224px;
  height: auto;
  border-radius: 6px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.3rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.78;
}

.nav-links a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--solar);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(244, 180, 0, 0.28);
}

.btn-primary:hover {
  background: #ffc633;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-small {
  display: inline-flex;
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-large {
  width: 100%;
}

.section {
  padding: 4.5rem 0;
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: calc(100vh - 76px);
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-content {
  position: relative;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  color: #334155;
  font-size: 1.14rem;
}

.hero-list {
  display: grid;
  gap: 0.65rem;
  max-width: 580px;
  margin: 1.5rem 0;
  padding: 0;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.44rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.55);
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  max-width: 420px;
}

.microcopy {
  max-width: 560px;
  margin: 0.85rem 0 0;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(12, 30, 54, 0.98), rgba(12, 30, 54, 0.84)),
    radial-gradient(circle at 20% 20%, rgba(17, 168, 245, 0.28), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(244, 180, 0, 0.22), transparent 28%);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-card p {
  margin-bottom: 1rem;
  color: var(--solar);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  max-width: 320px;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 0.95;
}

.hero-card span {
  display: block;
  max-width: 300px;
  font-size: 1.05rem;
}

.sun-badge {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--solar);
  box-shadow: 0 0 0 14px rgba(244, 180, 0, 0.16), 0 0 50px rgba(244, 180, 0, 0.5);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.05rem;
}

.local-proof {
  display: grid;
  gap: 1rem;
  padding-top: 0;
}

.local-proof div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(12, 30, 54, 0.06);
}

.local-proof strong,
.local-proof span {
  display: block;
}

.local-proof strong {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.local-proof span {
  font-size: 0.95rem;
}

.two-column {
  display: grid;
  gap: 2rem;
}

.stack p:last-child {
  margin-bottom: 0;
}

.problem-grid,
.service-grid,
.pricing-grid,
.photo-grid,
.trust-list {
  display: grid;
  gap: 1rem;
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-card,
.card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(14, 26, 43, 0.06);
}

.mini-card {
  position: relative;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  padding: 0;
  align-content: end;
}

.mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 30, 54, 0.03), rgba(12, 30, 54, 0.82));
}

.mini-card-body {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.mini-card-body p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 168, 245, 0.12);
  color: var(--accent);
  font-weight: 900;
}

.mini-card h3 {
  margin-bottom: 0;
  color: var(--white);
}

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

.card {
  padding: 1.25rem;
}

.card p {
  margin-bottom: 0;
}

.notice {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--solar);
  border-radius: var(--radius);
  background: rgba(244, 180, 0, 0.14);
  color: #334155;
  font-weight: 700;
}

.before-after {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - var(--max-width)) / 2));
  padding-left: max(1rem, calc((100vw - var(--max-width)) / 2));
  background: var(--white);
}

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

.photo-placeholder {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: start end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 26, 43, 0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(14, 26, 43, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(14, 26, 43, 0.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(14, 26, 43, 0.08) 25%, var(--warm) 25%);
  background-position: 22px 0, 22px 0, 0 0, 0 0;
  background-size: 44px 44px;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 30, 54, 0.18), rgba(12, 30, 54, 0.06) 42%, rgba(12, 30, 54, 0.18));
}

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

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem;
}

.price-card.featured {
  border-color: rgba(244, 180, 0, 0.7);
  box-shadow: 0 22px 44px rgba(244, 180, 0, 0.18);
}

.plan-name {
  margin-bottom: 0;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.price-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.plan-tag {
  flex: 0 0 auto;
  padding: 0.3rem 0.45rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.16);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1;
}

.best-for {
  margin-bottom: 0;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.25rem 0 0.65rem;
}

.price-card .btn {
  margin-top: auto;
}

.pricing-note {
  margin: 1.3rem 0 0;
  color: #334155;
  font-weight: 700;
}

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

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(14, 26, 43, 0.06);
}

.steps span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 800;
}

.areas {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - var(--max-width)) / 2));
  padding-left: max(1rem, calc((100vw - var(--max-width)) / 2));
  background: var(--navy);
}

.areas h2,
.areas .area-list {
  color: var(--white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.trust-list {
  grid-template-columns: 1fr;
}

.trust-list div {
  min-height: 76px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.final-cta {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(12, 30, 54, 0.98), rgba(12, 30, 54, 0.9)),
    radial-gradient(circle at 14% 8%, rgba(17, 168, 245, 0.28), transparent 34%),
    radial-gradient(circle at 85% 30%, rgba(244, 180, 0, 0.28), transparent 26%);
  box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p:not(.eyebrow) {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  opacity: 0.82;
}

.final-actions {
  display: grid;
  gap: 0.75rem;
}

.site-footer {
  display: grid;
  gap: 1.6rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 0.35rem;
}

.site-footer a {
  color: var(--navy);
  font-weight: 800;
}

.contact-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: 360px;
}

.platform-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(12, 30, 54, 0.06);
}

.platform-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.platform-link:hover {
  border-color: rgba(17, 168, 245, 0.35);
  color: var(--accent);
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.footer-logo {
  width: 250px;
}

.legal {
  max-width: 900px;
  font-size: 0.9rem;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 30;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: rgba(12, 30, 54, 0.94);
  box-shadow: 0 18px 38px rgba(12, 30, 54, 0.28);
  backdrop-filter: blur(14px);
}

.floating-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.float-whatsapp {
  background: var(--solar);
  color: var(--navy);
}

.float-call,
.float-email {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
    max-width: none;
  }

  .btn-large {
    width: auto;
  }

  .service-grid,
  .pricing-grid,
  .local-proof,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .nav-links {
    display: inline-flex;
  }

  .btn-small {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    align-items: start;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 2.5rem;
  }

  .final-actions {
    min-width: 290px;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  body {
    padding-bottom: 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .local-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .floating-contact {
    right: 1.25rem;
    bottom: 1.25rem;
    left: auto;
    width: 342px;
  }
}

@media (max-width: 420px) {
  .nav {
    min-height: 70px;
  }

  .brand-logo {
    width: 176px;
  }

  .btn-small {
    min-height: 40px;
    padding: 0.55rem 0.62rem;
    font-size: 0.76rem;
  }

  .section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

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

  .price-card {
    padding: 1rem;
  }

  .price-card h3 {
    font-size: 1.8rem;
  }
}
