:root {
  --navy: #07172a;
  --navy-2: #0d223b;
  --blue: #1f5eff;
  --blue-soft: #eaf0ff;
  --gold: #c9a464;
  --gold-2: #f0dfb8;
  --ink: #132033;
  --muted: #687385;
  --line: #e6eaf0;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 34, 59, 0.14);
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(860px, calc(100% - 40px)); }

.section-pad { padding: 92px 0; }
.bg-white { background: var(--white); }
.bg-soft { background: var(--soft); }
.bg-navy { background: var(--navy); color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,234,240,0.88);
}

.nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.brand img { width: 38px; height: 38px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--navy); }

.nav-button {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7,23,42,0.18);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.page { display: none; }
.page.active { display: block; }

.hero {
  min-height: 100vh;
  padding-top: 142px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 85% 25%, rgba(31,94,255,0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: .9;
}
.hero-shape-one {
  width: 420px;
  height: 420px;
  background: rgba(201,164,100,0.16);
  right: -150px;
  top: 150px;
}
.hero-shape-two {
  width: 260px;
  height: 260px;
  background: rgba(31,94,255,0.10);
  left: -110px;
  bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.03;
}
h1 { font-size: clamp(3rem, 7vw, 5.8rem); margin-bottom: 22px; }
h2 { font-size: clamp(2.1rem, 4.6vw, 4rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 10px; }

.hero-lead, .large-copy {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 660px;
}
.light-copy { color: rgba(255,255,255,.72); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  border: 0;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(31,94,255,0.25);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.hero-visual { position: relative; min-height: 520px; }
.dashboard-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(230,234,240,.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.main-dashboard {
  padding: 20px;
  min-height: 420px;
  transform: rotate(1deg);
}
.dashboard-top {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  padding-bottom: 20px;
}
.dashboard-top strong { margin-left: auto; color: var(--navy); }
.dot { width: 10px; height: 10px; background: var(--line); border-radius: 50%; }
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric-strip div {
  background: var(--soft);
  border-radius: 18px;
  padding: 16px;
}
.metric-strip strong { display: block; color: var(--navy); }
.metric-strip span { color: var(--muted); font-size: .82rem; }
.chart-bars {
  height: 170px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 34px 6px 22px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.chart-bars span {
  flex: 1;
  min-width: 26px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, var(--blue), #8ba7ff);
}
.mock-notification {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: #54d887;
  box-shadow: 0 0 0 8px rgba(84,216,135,.14);
}
.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(13,34,59,.16);
  border-radius: 20px;
  padding: 16px;
  max-width: 210px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.floating-card p { margin: 0; color: var(--muted); font-weight: 700; font-size: .9rem; }
.floating-one { left: -24px; top: 70px; }
.floating-two { right: -10px; bottom: 56px; }
.icon-bubble, .tile-icon {
  width: 42px; height: 42px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue);
  font-weight: 900;
  flex: 0 0 auto;
}

.split-grid, .testimonial-grid, .contact-grid, .web-showcase {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.mini-proof-grid div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.mini-proof-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--navy);
}
.mini-proof-grid span { color: var(--muted); font-size: .86rem; }

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.section-copy { color: var(--muted); font-size: 1.05rem; max-width: 760px; }

.problem-solution {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}
.problem-card, .solution-card {
  border-radius: 26px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}
.solution-card {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.problem-card ul, .solution-card ul, .package-card ul, .paid-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.problem-card li, .solution-card li, .package-card li, .paid-card li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: var(--muted);
}
.solution-card li { color: rgba(255,255,255,.72); }
.problem-card li::before, .solution-card li::before, .package-card li::before, .paid-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.solution-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.service-cards, .benefit-grid, .package-grid, .paid-grid, .web-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-tile, .benefit-grid > div, .package-card, .paid-card, .web-services-grid article {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(7,23,42,.08);
}
.service-tile { background: rgba(255,255,255,.06); color: var(--white); }
.service-tile p { color: rgba(255,255,255,.66); }
.service-tile button {
  margin-top: 18px;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-weight: 900;
  padding: 0;
}
.service-tile.highlight { background: var(--white); color: var(--ink); }
.service-tile.highlight p { color: var(--muted); }

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative;
}
.process-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}
.process-step p, .benefit-grid p, .web-services-grid p, .paid-card p, .package-card p { color: var(--muted); }

.testimonial-stack {
  display: grid;
  gap: 18px;
}
blockquote {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(13,34,59,.08);
}
blockquote p { color: var(--ink); font-size: 1.02rem; }
cite { color: var(--gold); font-style: normal; font-weight: 900; }

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
}
.muted { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  color: var(--navy);
}
.faq-item button span { color: var(--gold); font-size: 1.2rem; }
.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open div { max-height: 220px; }
.faq-item p { padding: 0 22px 20px; color: var(--muted); margin: 0; }

.contact-section { position: relative; }
.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.contact-points span {
  color: rgba(255,255,255,.72);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.quote-form {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 14px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 14px 14px;
  border-radius: 16px;
  outline: none;
}
select option { color: var(--ink); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
::placeholder { color: rgba(255,255,255,.38); }
.form-note { color: rgba(255,255,255,.48); font-size: .82rem; margin: 12px 0 0; }

.page-hero {
  padding: 160px 0 86px;
  background:
    radial-gradient(circle at 75% 20%, rgba(201,164,100,.18), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.page-hero h1 { max-width: 920px; font-size: clamp(2.7rem, 6vw, 5.2rem); }
.page-hero p:not(.eyebrow):not(.breadcrumb) { max-width: 720px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.breadcrumb { color: rgba(255,255,255,.55); }
.breadcrumb button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  padding: 0;
  font-weight: 900;
}

.package-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-10px);
}
.package-card.featured p,
.package-card.featured li { color: rgba(255,255,255,.72); }
.package-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 900;
}
.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.package-card.featured .text-link { color: var(--gold); }

.paid-grid { grid-template-columns: 1fr 1fr; }
.platform-badge {
  display: inline-flex;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.flow-diagram, .tech-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.flow-diagram div, .tech-flow div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  font-weight: 900;
}
.flow-diagram span, .tech-flow > span {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.5rem;
}
.tech-flow div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: var(--white);
}
.tech-flow div span {
  display: block;
  color: rgba(255,255,255,.58);
  font-weight: 600;
  font-size: .9rem;
}
.web-showcase { align-items: center; }
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.check-list span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 900;
}
.check-list span::before {
  content: "✓";
  color: var(--gold);
  margin-right: 9px;
}
.website-mockup {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 18px;
  transform: rotate(-1.4deg);
}
.browser-bar {
  display: flex;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.browser-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.mock-hero {
  height: 150px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  margin: 20px 0;
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mock-grid span {
  height: 92px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.mock-lines { margin-top: 18px; display: grid; gap: 10px; }
.mock-lines span {
  height: 12px;
  border-radius: 99px;
  background: var(--line);
}
.mock-lines span:nth-child(2) { width: 80%; }
.mock-lines span:nth-child(3) { width: 62%; }

.site-footer {
  background: #06101d;
  color: var(--white);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 34px;
}
.footer-brand { color: var(--white); margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,.55); }
.site-footer h4 { margin: 0 0 12px; }
.site-footer button {
  display: block;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.65);
  padding: 4px 0;
  font-weight: 700;
}
.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-button { text-align: center; }
  .hero-grid, .split-grid, .testimonial-grid, .contact-grid, .web-showcase, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 120px; }
  .hero-visual { min-height: 440px; }
  .service-cards, .benefit-grid, .package-grid, .process-line, .web-services-grid, .paid-grid {
    grid-template-columns: 1fr 1fr;
  }
  .problem-solution {
    grid-template-columns: 1fr;
  }
  .solution-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 64px 0; }
  .hero { min-height: auto; }
  .hero-grid { gap: 26px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions, .btn { width: 100%; }
  .trust-row span { flex: 1 1 calc(50% - 10px); text-align: center; }
  .hero-visual { display: none; }
  .mini-proof-grid, .service-cards, .benefit-grid, .package-grid, .process-line, .web-services-grid, .paid-grid, .footer-grid, .form-row, .check-list {
    grid-template-columns: 1fr;
  }
  .package-card.featured { transform: none; }
  .page-hero { padding-top: 126px; }
  .flow-diagram, .tech-flow { display: grid; }
  .flow-diagram span, .tech-flow > span { justify-content: center; transform: rotate(90deg); }
}
