:root {
  --navy: #16314a;
  --orange: #d16f10; /* Darker orange for WCAG AA contrast against white text and light backgrounds */
  --gold: #f6b23e;
  --teal: #1f6d7c; /* Darker teal for WCAG AA contrast against light backgrounds */
  --paper: #fbf7f1;
  --ink: #1b2733;
  --muted: #5c6874;
  --line: #e7dfd4;
  --white: #fffdf8;
  --shadow: 0 18px 46px rgba(22, 49, 74, 0.13);
  --shadow-soft: 0 12px 28px rgba(22, 49, 74, 0.09);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(231, 223, 212, 0.92);
  background: rgba(251, 247, 241, 0.94);
  backdrop-filter: blur(18px);
}

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

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 1.16rem;
}

.brand-local {
  color: var(--orange);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 10px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(42, 143, 163, 0.1);
  color: #0f5f70;
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 3px;
}

.lang-option {
  min-width: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 8px;
}

.lang-option.is-active {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

body.menu-open .menu-icon {
  transform: rotate(45deg);
}

body.menu-open .menu-icon::before {
  transform: translateY(6px) rotate(90deg);
}

body.menu-open .menu-icon::after {
  opacity: 0;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  padding: 12px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(232, 130, 30, 0.25);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #cf7018;
}

.btn-secondary {
  border-color: rgba(22, 49, 74, 0.2);
  background: var(--white);
  color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(42, 143, 163, 0.45);
  box-shadow: var(--shadow-soft);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal));
  content: "";
}

.hero-scene {
  position: absolute;
  inset: 9px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-sunline {
  position: absolute;
  right: -150px;
  bottom: 34px;
  width: 640px;
  height: 248px;
  opacity: 0.16;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  min-height: 630px;
  align-items: center;
  gap: 30px;
  padding: 72px 0 56px;
}

.hero-copy {
  min-width: 0;
  max-width: 590px;
}

.hero-inner > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #0f6475;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.06;
  text-wrap: balance;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 24px;
  color: #3c4c5b;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.trust-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.browser-mockup {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 456px;
  overflow: hidden;
  border: 1px solid rgba(22, 49, 74, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: #f4efe7;
  padding: 11px 14px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #db6b5f;
}

.browser-dot:nth-child(2) {
  background: #e0aa3b;
}

.browser-dot:nth-child(3) {
  background: #4aa87a;
}

.browser-url {
  min-width: 0;
  margin-left: 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-site {
  display: grid;
  gap: 0;
}

.mock-hero {
  min-height: 246px;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(22, 49, 74, 0.94), rgba(22, 49, 74, 0.7)),
    linear-gradient(135deg, #e8821e 0%, #f6b23e 48%, #2a8fa3 100%);
  color: var(--white);
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 34px;
}

.mock-brand {
  font-size: 0.92rem;
  font-weight: 800;
}

.mock-badge {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #fff7df;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 8px;
}

.mock-title {
  max-width: 310px;
  margin-bottom: 14px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.12;
}

.mock-cta {
  display: inline-flex;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 9px 11px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.mock-stat {
  min-height: 86px;
  padding: 14px;
}

.mock-stat + .mock-stat {
  border-left: 1px solid var(--line);
}

.mock-number {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 800;
}

.mock-label {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.25;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

.trust-strip .container {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 0;
  text-align: center;
}

.strip-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: rgba(246, 178, 62, 0.16);
}

.trust-strip p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.section {
  padding: 80px 0;
}

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

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card,
.plan,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(22, 49, 74, 0.03);
}

.card {
  min-height: 254px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: rgba(42, 143, 163, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(42, 143, 163, 0.12);
  color: var(--teal);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
}

.card h3,
.plan h3,
.step h3,
.contact-panel h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}

.card p,
.step p,
.plan p,
.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: steps;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
}

.step::before {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  content: counter(steps);
  counter-increment: steps;
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 28px;
}

.plan.featured {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(232, 130, 30, 0.12);
  color: #a34e0c;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 10px;
}

.plan-spacer {
  min-height: 43px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.setup {
  margin: 0 0 22px;
  color: var(--teal);
  font-weight: 800;
}

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

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #3f4d5a;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.feature-list li::after {
  position: absolute;
  left: 5px;
  top: 0.48em;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.plan .btn {
  margin-top: auto;
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
}

.why-card {
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  padding: 32px;
}

.why-card h2 {
  color: var(--white);
}

.why-card p {
  margin: 14px 0 0;
  color: #d7e1e8;
}

.why-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

.why-point .icon-box {
  margin: 0;
  background: rgba(246, 178, 62, 0.2);
  color: #b35d12;
}

.why-point h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.02rem;
}

.why-point p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, 0.72fr);
  gap: 22px;
}

.contact-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6cfc5;
  border-radius: var(--radius);
  background: #fffefa;
  color: var(--ink);
  padding: 13px 14px;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 143, 163, 0.12);
  outline: none;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
}

.botcheck-field {
  display: none;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(42, 143, 163, 0.12);
  color: #0f6475;
}

.form-status.is-error {
  background: rgba(232, 130, 30, 0.14);
  color: #994b0e;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.contact-label {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

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

.site-footer .brand-local {
  color: var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
}

.footer-copy {
  display: grid;
  gap: 7px;
}

.footer-copy p {
  margin: 0;
  color: #dce7ee;
}

.footer-line {
  color: #dce7ee;
  font-weight: 600;
  text-align: right;
}

.footer-line a {
  color: var(--gold);
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  margin: 0;
}

.testimonial-quote {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.65;
}

.testimonial-quote::before {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  content: "\201C";
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 0.8;
}

.testimonial-footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.testimonial-name {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.testimonial-biz {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.whatsapp-link svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

@media (min-width: 760px) {
  h1 {
    font-size: 4rem;
  }

  .section h2 {
    font-size: 2.65rem;
  }
}

@media (min-width: 1140px) {
  h1 {
    font-size: 4.7rem;
  }
}

@media (max-width: 1060px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .plan {
    min-height: auto;
  }

  .plan-spacer {
    display: none;
  }

  .browser-mockup {
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    padding: 16px;
  }

  body.menu-open .nav-wrap {
    display: grid;
    gap: 16px;
  }

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    padding: 12px 10px;
  }

  .header-actions {
    justify-content: space-between;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding: 42px 0 26px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .browser-mockup {
    width: min(100%, 560px);
    max-width: 560px;
    margin: 6px auto 0;
  }

  .hero-sunline {
    right: -260px;
    bottom: 220px;
    width: 560px;
  }

  .mock-hero {
    min-height: 210px;
  }

  .steps,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 26px;
  }

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

  .footer-line {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .header-inner,
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-text {
    font-size: 1.02rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-inner {
    padding: 32px 0 20px;
  }

  .hero-copy,
  .hero-actions,
  .browser-mockup {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.12;
    max-width: 100%;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 1rem;
  }

  .trust-line {
    max-width: 100%;
    font-size: 0.86rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip .container {
    align-items: flex-start;
    text-align: left;
  }

  .section {
    padding: 58px 0;
  }

  .section h2 {
    font-size: 1.9rem;
  }

  .features-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
    padding: 22px;
  }

  .mock-title {
    font-size: 1.38rem;
  }

  .mock-stats {
    grid-template-columns: 1fr;
  }

  .mock-stat + .mock-stat {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .why-point {
    grid-template-columns: 1fr;
  }
}
