:root {
  --teal: #2ab4a0;
  --teal-dark: #1e8c7c;
  --blue: #2d6fbf;
  --blue-soft: #eaf3ff;
  --navy: #163557;
  --navy-2: #0e2439;
  --cream: #f7fafa;
  --white: #ffffff;
  --ink: #172d3a;
  --muted: #648091;
  --line: #d9e7ec;
  --shadow: 0 24px 80px rgba(14, 36, 57, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 50;
}
.skip-link:focus { top: 12px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 250, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 231, 236, 0.85);
}
.brand-mark { width: 180px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 700; font-size: 0.9rem; }
.nav-links a:hover { color: var(--navy); }
.nav-button {
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
}
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: var(--navy); border-radius: 12px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  min-height: min(720px, calc(100vh - 72px));
  padding: clamp(36px, 5vw, 64px) clamp(20px, 6vw, 84px) clamp(38px, 5vw, 60px);
  overflow: hidden;
}
.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
  font-size: 0.75rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  color: var(--navy-2);
  font-size: clamp(3rem, 5.3vw, 5.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0;
}
h3 { color: var(--navy); margin-bottom: 8px; }
.hero-text, .section-head p, .pricing-preview p, .cta p, .page-hero p, .contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
}
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 14px 32px rgba(42, 180, 160, 0.28); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--teal); }

.hero-visual { position: relative; min-height: 430px; }
.browser {
  position: absolute;
  inset: 8px 0 auto auto;
  width: min(100%, 560px);
  min-height: 360px;
  padding: 18px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.browser::before {
  content: "";
  position: absolute;
  inset: -70px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(42, 180, 160, 0.13);
  z-index: -1;
}
.browser-bar { display: flex; gap: 7px; padding: 3px 0 18px; }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #d6e2e6; }
.mock-nav { height: 44px; border-radius: 14px; background: var(--navy); margin-bottom: 18px; }
.mock-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eefaf7, #eef4ff);
}
.mock-pill { width: 90px; height: 16px; border-radius: 99px; background: var(--teal); margin-bottom: 18px; }
.mock-title { width: 100%; height: 84px; border-radius: 18px; background: var(--navy); margin-bottom: 14px; }
.mock-line { height: 16px; border-radius: 99px; background: #adc3cf; }
.mock-line.short { width: 70%; }
.mock-card { min-height: 138px; border-radius: 22px; background: var(--white); box-shadow: 0 18px 40px rgba(14, 36, 57, 0.12); }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.mock-grid span { height: 74px; border-radius: 18px; background: #f0f6f8; border: 1px solid var(--line); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 6vw, 84px);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}
.trust-strip span {
  padding: 20px 16px;
  background: var(--white);
  color: var(--navy);
  text-align: center;
  font-weight: 850;
}

.section { padding: clamp(54px, 7vw, 88px) clamp(20px, 6vw, 84px); }
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.feature-list { display: grid; gap: 14px; }
.feature-list article, .portfolio-card, .plan, .addon-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 45px rgba(14, 36, 57, 0.06);
}
.feature-list p, .portfolio-card p, .plan p, .addon-grid p { color: var(--muted); }

.proof-section { background: linear-gradient(180deg, rgba(255,255,255,0), rgba(234,243,255,0.55)); }
.sample-audit {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
}
.audit-main, .audit-side, .direct-card, .detail-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(14, 36, 57, 0.06);
}
.audit-main { padding: clamp(24px, 4vw, 36px); }
.audit-side {
  padding: 28px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.audit-side p { color: var(--muted); }
.audit-side .btn { margin-top: auto; }
.clean-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(42, 180, 160, 0.12);
}
.clean-list strong { color: var(--navy); }

.section-head { max-width: 820px; margin-bottom: 28px; }
.revamp { background: var(--white); }
.revamp-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.revamp-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}
.revamp-device {
  position: relative;
  min-height: 380px;
  border-radius: 30px;
  background: #f1f6f8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.old-site, .new-site {
  position: absolute;
  inset: 20px;
  border-radius: 22px;
}
.old-site {
  padding: 22px;
  background: #fbf0c9;
  border: 4px ridge #bf8f00;
  font-family: "Times New Roman", serif;
  color: #442a00;
}
.old-header { font-size: 1.85rem; font-weight: 900; color: #9d0000; text-align: center; }
.old-marquee { margin: 18px 0; background: #0033cc; color: #ffff00; padding: 10px; text-align: center; font-weight: 900; }
.old-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 0.95rem; }
.old-site button { background: #cfcfcf; border: 3px outset #999; padding: 8px 18px; font-family: inherit; }
.new-site {
  padding: 24px;
  background: linear-gradient(135deg, #f7fffd, #eef5ff);
}
.new-nav { height: 42px; border-radius: 14px; background: var(--navy); margin-bottom: 28px; }
.new-chip { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(42,180,160,0.13); color: var(--teal-dark); font-weight: 800; }
.new-site h3 { max-width: 360px; font-size: 2.15rem; line-height: 1.04; letter-spacing: 0; }
.new-site p { color: var(--muted); max-width: 380px; }
.new-actions { display: flex; gap: 10px; margin: 20px 0; }
.new-actions span { height: 40px; border-radius: 999px; background: var(--teal); width: 136px; }
.new-actions span + span { background: var(--white); border: 1px solid var(--line); }
.new-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.new-cards span { height: 88px; border-radius: 16px; background: var(--white); border: 1px solid var(--line); }
.revamp-copy { padding-top: 0; }
.revamp-copy span, .tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(42, 180, 160, 0.12);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.revamp-copy p { color: var(--muted); }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.portfolio-card { display: grid; gap: 18px; }
.portfolio-preview {
  min-height: 160px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  position: relative;
  overflow: hidden;
  padding: 22px;
}
.portfolio-preview::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -28px;
  height: 96px;
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.9);
}
.portfolio-preview.service { background: linear-gradient(135deg, #1e8c7c, #2d6fbf); }
.portfolio-preview.retail { background: linear-gradient(135deg, #163557, #2ab4a0); }
.preview-label, .preview-line, .preview-button {
  position: relative;
  z-index: 1;
  display: block;
}
.preview-label {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}
.preview-line {
  width: 52%;
  height: 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}
.preview-line.wide { width: 76%; margin-top: 24px; }
.preview-button {
  width: 96px;
  height: 30px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--teal);
}

.direct-section { padding-top: 20px; }
.direct-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(135deg, var(--navy), #1a4a68);
  color: var(--white);
}
.direct-card h2, .direct-card h3 { color: var(--white); }
.direct-card p { color: #c7dbe4; }
.direct-grid { display: grid; gap: 14px; }
.direct-grid article {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-preview {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  align-items: center;
}
.price-stack { display: grid; gap: 12px; }
.price-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}
.price-stack span { font-size: 1.7rem; font-weight: 900; color: var(--teal-dark); }
.price-stack strong { color: var(--navy); }

.cta {
  margin: clamp(20px, 6vw, 84px);
  padding: clamp(44px, 7vw, 80px);
  border-radius: 32px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.cta h2 { color: var(--white); }
.cta p { max-width: 720px; margin-left: auto; margin-right: auto; color: #c7dbe4; }

.page-hero {
  max-width: 920px;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 84px) 24px;
}
.page-hero .compact-title {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}
.pricing-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-top: 18px; }
.plan { display: flex; flex-direction: column; align-items: flex-start; }
.plan.featured { border-color: var(--teal); background: linear-gradient(180deg, #ffffff, #effbf8); }
.plan h2 { font-size: clamp(2rem, 3.1vw, 3rem); line-height: 1.08; margin-bottom: 10px; }
.price { font-size: 2.35rem !important; font-weight: 900; color: var(--navy) !important; margin: 4px 0 12px; }
.plan .btn { margin-top: auto; }
.detail-band { padding-top: 42px; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-grid article { padding: 24px; }
.add-ons { padding-top: 48px; }
.addon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr minmax(320px, 520px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 6vw, 84px);
}
.contact-copy h1 { font-size: clamp(2.7rem, 4.8vw, 4.7rem); }
.contact-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 14px;
  margin-top: 30px;
  color: var(--muted);
}
.contact-promise span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}
.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label { font-weight: 800; color: var(--navy); font-size: 0.86rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfefe;
}
.contact-form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; }
.success { text-align: center; padding: 34px 12px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer p { margin: 0; }
.footer a { color: var(--teal-dark); font-weight: 850; }

@media (max-width: 980px) {
  .hero, .split, .pricing-preview, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 390px; }
  .browser { inset: 0 auto auto 0; }
  .trust-strip, .portfolio-grid, .pricing-grid-full, .addon-grid, .detail-grid { grid-template-columns: 1fr 1fr; }
  .sample-audit, .direct-card { grid-template-columns: 1fr; }
  .revamp-stage { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { align-items: center; }
  .brand-mark { width: 146px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .trust-strip, .portfolio-grid, .pricing-grid-full, .addon-grid, .detail-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  .hero-visual { min-height: 300px; }
  .browser { min-height: 280px; padding: 12px; }
  .mock-hero { grid-template-columns: 1fr; }
  .mock-card, .mock-grid { display: none; }
  .new-site h3 { font-size: 1.9rem; }
  .footer { flex-direction: column; }
}
