:root {
  --navy: #041a2e;
  --navy-2: #082b49;
  --blue: #0b5f97;
  --paper: #f8f6f1;
  --blue-paper: #eaf4fb;
  --ink: #0e2138;
  --muted: #5d6b7d;
  --line: #d8dee6;
  --gold: #ffc663;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
a { color: inherit; }
a, .button, .example-card, .improve-grid article, .price-cards article { transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }

.hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1, 17, 31, .98), rgba(4, 28, 50, .94) 50%, rgba(4, 28, 50, .84)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.nav, .hero-layout, .section, .final-cta, .footer {
  padding-inline: max(30px, calc((100vw - 1340px) / 2));
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand, .nav a { color: #fff; font-weight: 800; text-decoration: none; }
.brand { font-size: 21px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 15px; }
.nav-cta {
  min-height: 48px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  color: #141006 !important;
  background: linear-gradient(#ffd987, var(--gold));
  border-radius: 5px;
}

.hero-layout {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(580px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 0;
}
.hero-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-pill span { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
h1 { max-width: 500px; margin-top: 24px; color: #fff; font-size: clamp(43px, 4.6vw, 55px); }
h1 em { color: var(--gold); font-style: normal; }
.hero-subcopy { max-width: 430px; margin-top: 24px; color: rgba(255,255,255,.9); font-size: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; }
.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #141006;
  background: linear-gradient(#ffd987, var(--gold));
  border: 1px solid #ffd37c;
  border-radius: 5px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.button.secondary { color: #fff; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.72); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.button.secondary:hover { background: rgba(255,255,255,.14); }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 520px; margin-top: 36px; }
.trust-strip span { display: grid; grid-template-columns: 32px 1fr; gap: 6px 10px; }
.trust-strip i { grid-row: span 2; width: 32px; height: 32px; display: grid; place-items: center; color: var(--gold); border: 2px solid var(--gold); border-radius: 50%; font-style: normal; }
.trust-strip strong { font-size: 12px; }
.trust-strip small { color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.3; }

.dashboard {
  overflow: hidden;
  color: #fff;
  background: rgba(5, 28, 50, .96);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.window-dots { height: 30px; display: flex; align-items: center; gap: 7px; padding-left: 16px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ffbd5a; }
.window-dots span:nth-child(2) { background: #e6a34c; }
.window-dots span:nth-child(3) { background: #8297a6; }
.demo-nav { min-height: 50px; display: flex; align-items: center; gap: 18px; padding: 0 18px; background: #061827; }
.demo-nav strong { margin-right: auto; font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.demo-nav nav { display: flex; gap: 18px; font-size: 11px; }
.demo-nav button { min-height: 34px; padding: 0 14px; color: var(--ink); background: #fff; border: 0; border-radius: 4px; font-weight: 900; }
.demo-hero {
  min-height: 205px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.1)),
    url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1200&q=90") center/cover;
}
.demo-hero h2 { max-width: 360px; color: #fff; font-size: 30px; }
.demo-hero a { min-height: 38px; margin-top: 18px; padding: 0 24px; display: inline-flex; align-items: center; color: var(--ink); background: #fff; border-radius: 4px; font-weight: 900; text-decoration: none; }
.demo-metrics { display: grid; grid-template-columns: 132px 1fr; min-height: 252px; background: linear-gradient(135deg, #062746, #0f3858); }
.demo-metrics ul { margin: 0; padding: 18px 14px; list-style: none; border-right: 1px solid rgba(255,255,255,.1); }
.demo-metrics li { padding: 9px; color: rgba(255,255,255,.78); font-size: 12px; }
.demo-metrics li.active { color: #fff; background: rgba(255,255,255,.08); border-radius: 5px; }
.metric-panel { padding: 18px; }
.metric-head { display: flex; justify-content: space-between; gap: 10px; }
.metric-head span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 4px; font-size: 12px; }
.metric-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.metric-cards article { min-height: 84px; padding: 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; background: rgba(255,255,255,.04); }
.metric-cards span { display: block; color: rgba(255,255,255,.8); font-size: 11px; }
.metric-cards strong { display: block; margin-top: 7px; font-size: 25px; }
.metric-cards em { color: var(--gold); font-size: 12px; font-style: normal; }
.chart { height: 95px; margin-top: 12px; padding: 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; background: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0/100% 24px, linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px) 0 0/45px 100%; }
.chart svg { width: 100%; height: 100%; }
.chart path { fill: none; stroke: #ffd98a; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }

.section { padding-top: 52px; padding-bottom: 52px; text-align: center; }
.eyebrow { margin-bottom: 12px; color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.section h2 { max-width: 850px; margin: 0 auto; font-size: 34px; }
.improve { background: var(--paper); }
.improve-grid, .example-grid, .price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.improve-grid article { min-height: 205px; padding: 28px; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 18px 45px rgba(10,28,48,.08); }
.improve-grid article:hover, .price-cards article:hover { transform: translateY(-5px); border-color: #b8c8d7; box-shadow: 0 24px 50px rgba(10,28,48,.13); }
.improve-grid i { width: 56px; height: 56px; margin-bottom: 26px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-style: normal; font-size: 25px; }
.improve-grid h3 { font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.improve-grid p { margin-top: 16px; color: var(--muted); }

.examples { background: var(--blue-paper); }
.example-card { min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; padding: 24px; color: #fff; background-size: cover; background-position: center; border-radius: 6px; text-align: left; text-decoration: none; }
.example-card:hover { transform: translateY(-5px); box-shadow: 0 22px 38px rgba(10,28,48,.2); }
.example-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78)); }
.example-card > * { position: relative; z-index: 1; }
.example-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 32px; }
.example-card span { max-width: 240px; margin-top: 8px; font-weight: 800; }
.example-card b { width: fit-content; margin-top: 24px; padding-bottom: 4px; border-bottom: 2px solid var(--gold); }
.barber { background-image: url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1000&q=90"); }
.cafe { background-image: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1000&q=90"); }
.services { background-image: url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1000&q=90"); }
.more-link { min-height: 45px; width: fit-content; margin: 28px auto 0; padding: 0 30px; display: flex; align-items: center; gap: 18px; color: var(--ink); border: 2px solid var(--blue); border-radius: 5px; font-weight: 900; text-decoration: none; }
.demo-note { max-width: 720px; margin: 28px auto 0; color: var(--muted); font-size: 14px; }

.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; text-align: left; }
.process-grid article { min-height: 180px; padding: 24px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); }
.process-grid i { width: 36px; height: 36px; margin-bottom: 24px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-style: normal; font-weight: 900; }
.process-grid h3 { font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.process-grid p { margin-top: 10px; color: var(--muted); font-size: 14px; }

.about-section { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: center; text-align: left; background: var(--blue-paper); }
.about-copy h2 { max-width: 600px; margin: 0; text-align: left; font-size: 38px; }
.about-copy p:not(.eyebrow) { max-width: 620px; margin-top: 18px; color: var(--muted); font-size: 17px; }
.about-card { min-height: 260px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: var(--navy); border-radius: 8px; box-shadow: 0 20px 45px rgba(10,28,48,.18); }
.about-card span { color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.about-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 38px; line-height: 1.02; }
.about-card small { color: rgba(255,255,255,.75); }

.faq-section { background: var(--paper); }
.faq-grid { max-width: 900px; margin: 30px auto 0; text-align: left; }
.faq-grid details { padding: 20px 0; border-top: 1px solid var(--line); }
.faq-grid details:last-child { border-bottom: 1px solid var(--line); }
.faq-grid summary { cursor: pointer; font-weight: 900; list-style: none; }
.faq-grid summary::after { content: "+"; float: right; color: var(--blue); font-size: 22px; line-height: 1; }
.faq-grid details[open] summary::after { content: "–"; }
.faq-grid details p { max-width: 760px; margin-top: 12px; color: var(--muted); }

.pricing { background: var(--paper); }
.price-cards article { min-height: 280px; position: relative; padding: 34px 38px 22px; background: #fff; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 18px 45px rgba(10,28,48,.08); }
.price-cards i { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; font-style: normal; font-weight: 900; }
.price-cards h3 { font-family: Arial, Helvetica, sans-serif; font-size: 16px; }
.price-cards small { display: block; margin-top: 10px; color: var(--muted); }
.price-cards strong { display: block; margin: 14px 0; font-size: 40px; line-height: 1; }
.price-cards ul { margin: 0; padding: 0; list-style: none; text-align: left; }
.price-cards li { margin-top: 10px; color: var(--muted); font-size: 14px; }
.price-cards li::before { content: "✓"; margin-right: 12px; color: var(--blue); font-weight: 900; }
.price-cards article > span { margin-top: 18px; padding: 6px 16px; display: inline-flex; background: #e5eef5; border-radius: 999px; font-size: 12px; }
.transparent { margin-top: 22px; }
.pricing-note { max-width: 760px; margin: 10px auto 0; color: var(--muted); font-size: 13px; }

.final-cta { display: grid; grid-template-columns: 1fr 1.05fr; color: #fff; background: var(--navy); }
.final-cta > div { padding: 52px 46px 52px 0; }
.final-cta .eyebrow { color: rgba(255,255,255,.82); }
.final-cta h2 { max-width: 440px; color: #fff; font-size: 48px; }
.final-cta p:not(.eyebrow) { max-width: 470px; margin-top: 18px; color: rgba(255,255,255,.86); font-size: 18px; }
.final-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.faces { display: flex; }
.faces b { width: 34px; height: 34px; margin-left: -8px; border: 2px solid #fff; border-radius: 50%; background: linear-gradient(135deg, #c98c5e, #375b7a); }
.final-row small { color: rgba(255,255,255,.8); line-height: 1.2; }
.final-cta figure { min-height: 282px; margin: 0; background: linear-gradient(90deg, rgba(4,26,46,.18), transparent), url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=90") center/cover; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: rise-in .65s ease both; }
  .dashboard { animation: rise-in .75s .1s ease both; }
  @keyframes rise-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
}

.footer { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.25fr; gap: 48px; padding-top: 40px; padding-bottom: 24px; color: #fff; background: #03192c; }
.footer strong { display: block; margin-bottom: 13px; }
.footer p, .footer a, .footer span { display: block; color: rgba(255,255,255,.75); font-size: 14px; text-decoration: none; }
.copyright { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }

@media (max-width: 900px) {
  .nav, .hero-layout, .section, .final-cta, .footer { padding-inline: 28px; }
  .hero-layout { grid-template-columns: 1fr; }
  .dashboard { max-width: 620px; }
  .improve-grid, .example-grid, .price-cards, .process-grid, .final-cta, .footer { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; gap: 28px; }
}

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

  .nav { align-items: flex-start; flex-direction: column; padding: 20px; }
  .nav-links {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-size: 13px;
  }

  .nav-links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .nav-cta, .button { width: 100%; justify-content: center; }
  .hero-layout, .section, .final-cta, .footer { padding-inline: 18px; }
  h1 {
    max-width: 340px;
    font-size: 31px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  h1 em {
    display: inline;
  }

  .hero-copy,
  .hero-subcopy {
    max-width: 340px;
  }
  .hero-subcopy { font-size: 17px; }
  .hero-actions, .trust-strip { grid-template-columns: 1fr; flex-direction: column; }
  .demo-nav nav { display: none; }
  .dashboard {
    max-width: 100%;
  }

  .demo-hero {
    min-height: 190px;
    padding: 24px 18px;
  }

  .demo-hero h2 {
    max-width: 300px;
    font-size: 27px;
  }

  .demo-metrics { display: none; }
  .demo-metrics ul { display: none; }
  .metric-cards { grid-template-columns: 1fr; }
  .section { padding-top: 46px; padding-bottom: 46px; }
  .section h2 { font-size: 29px; }
  .about-copy h2 { font-size: 31px; }
  .about-card strong { font-size: 34px; }
  .final-cta,
  .final-cta > div,
  .final-cta figure,
  .final-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .final-cta > div { padding: 42px 0; }
  .final-cta h2 { max-width: 100%; font-size: 38px; }
  .final-cta p:not(.eyebrow) { max-width: 100%; }
  .final-row {
    align-items: stretch;
    flex-direction: column;
  }

  .final-row small {
    display: block;
    width: 100%;
  }
}
