:root {
  --orange: #f05a1a;
  --orange-d: #d44b10;
  --orange-bg: #fff5f0;
  --navy: #0f1f3d;
  --navy2: #1a2f52;
  --white: #ffffff;
  --bg: #f7f6f3;
  --bg2: #f0efe9;
  --ink: #0f1f3d;
  --ink2: #4a5568;
  --ink3: #8a95a3;
  --line: #e2ddd6;
  --green: #16a34a;
  --r: 14px;
  --r-lg: 22px;
  --t: 0.2s ease;
  --w: 1060px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: 2rem;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: var(--t);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.wa-btn--lg {
  font-size: 1.1rem;
  padding: 1rem 2.4rem;
}

.wa-btn--nav {
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wa-icon--lg {
  width: 24px;
  height: 24px;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 243, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap.scrolled {
  box-shadow: 0 2px 16px rgba(15, 31, 61, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1.5rem;
}

.logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-links a {
  font-size: 0.84rem;
  color: var(--ink2);
  transition: color var(--t);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.hero {
  background: var(--navy);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 90, 26, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
  max-width: 28rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 0;
}

.hero-wa-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-preview {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid #dfd8cf;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.preview-bar {
  background: #f0ede8;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e0dbd4;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.preview-dot--red {
  background: #ff5f57;
}

.preview-dot--yellow {
  background: #ffbd2e;
}

.preview-dot--green {
  background: #28c940;
}

.preview-url {
  margin-left: auto;
  font-size: 0.72rem;
  color: #6c7788;
}

.preview-body {
  padding: 1.1rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
}

.preview-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.preview-nav span {
  font-size: 0.64rem;
  color: #5f6c81;
  background: #f2eee8;
  border: 1px solid #e5ded4;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.preview-logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.preview-rating {
  font-size: 0.72rem;
  font-weight: 700;
  color: #845a12;
  background: #fff3d4;
  border: 1px solid #f3d68f;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
}

.preview-hero-img {
  width: 100%;
  height: 126px;
  background:
    linear-gradient(145deg, rgba(15, 31, 61, 0.75), rgba(15, 31, 61, 0.2)),
    linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
  border-radius: var(--r);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.22rem;
  padding: 0.9rem;
}

.preview-hero-title {
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.preview-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  font-weight: 500;
  width: 100%;
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.preview-kpis div {
  background: #fff;
  border: 1px solid #ece4d9;
  border-radius: 10px;
  padding: 0.42rem 0.35rem;
  text-align: center;
}

.preview-kpis strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #1e3152;
  font-size: 0.84rem;
  line-height: 1.1;
}

.preview-kpis span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.58rem;
  color: #63708a;
}

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 0.62rem;
}

.preview-service {
  background: #fff;
  border: 1px solid #ece4d9;
  border-radius: 9px;
  padding: 0.38rem 0.24rem;
  text-align: center;
}

.preview-service span {
  display: block;
  font-size: 0.86rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.preview-service p {
  font-size: 0.58rem;
  color: #4d5c74;
  font-weight: 600;
}

.preview-review {
  font-size: 0.63rem;
  color: #6a768d;
  background: #f3efe9;
  border: 1px solid #e6ded3;
  border-radius: 8px;
  padding: 0.38rem 0.46rem;
  margin-bottom: 0.65rem;
  font-style: italic;
}

.preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.preview-btn-mock {
  background: var(--orange);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 600;
  padding: 0.42rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
}

.preview-phone {
  font-size: 0.72rem;
  color: #59667d;
  font-weight: 600;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--r);
  padding: 1.05rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.hero-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #ffe8cc;
  color: #b45309;
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  font-weight: 600;
}

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--bg2);
}

.section--dark {
  background: var(--navy);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-label--muted {
  color: rgba(255, 255, 255, 0.5);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 50ch;
}

.section-desc--center {
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
}

.step-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-bg);
  line-height: 1;
  margin-bottom: 0.75rem;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--ink2);
  line-height: 1.7;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3.5rem;
}

.inc-item {
  background: var(--white);
  padding: 2rem 2.25rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: background var(--t);
}

.inc-item:hover {
  background: #fdfcf9;
}

.inc-emoji {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.inc-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.inc-item p {
  font-size: 0.83rem;
  color: var(--ink2);
  line-height: 1.65;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  margin: 0;
  text-align: left;
  box-shadow: 0 8px 40px rgba(240, 90, 26, 0.12);
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  transform: translateY(-10px);
  border-color: var(--navy);
  box-shadow: 0 16px 45px rgba(15, 31, 61, 0.16);
}

.price-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.price-amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price-amount span {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.6rem;
  display: inline-block;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--ink3);
  margin-bottom: 1.4rem;
  min-height: 2.8em;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  text-align: left;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink2);
}

.price-check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.price-divider {
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}

.price-note {
  font-size: 0.8rem;
  color: var(--ink3);
  line-height: 1.6;
  margin-top: auto;
}

.price-global-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink2);
}

.targets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.target-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background var(--t), border-color var(--t);
}

.target-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.target-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.target-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.target-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.final-cta {
  background: var(--orange);
  padding: 5rem 0;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.wa-btn--cta {
  background: var(--white);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
  padding: 1rem 2.4rem;
}

.wa-btn--cta:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.final-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.footer {
  background: var(--navy);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer .logo {
  color: var(--white);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--t);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .targets {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .price-card--featured {
    transform: none;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .nav-links,
  .wa-btn.wa-btn--nav {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .section {
    padding: 4rem 0;
  }

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

  .price-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
