:root {
  --navy: #0c2340;
  --navy-soft: #163552;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --ink: #142235;
  --muted: #5f6c78;
  --green: #159e74;
  --green-dark: #0b7655;
  --gold: #e3b04b;
  --line: #dbe1dc;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }

.site-header {
  height: 88px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.official-logo {
  display: block;
  position: relative;
  overflow: hidden;
  background: white;
}
.official-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}
.header-logo {
  width: 288px;
  height: 71px;
}
.site-header nav { margin-left: auto; display: flex; align-items: center; justify-self: end; gap: 28px; color: #45515d; font-size: 17.5px; font-weight: 700; }
.site-header nav a:hover { color: var(--green-dark); }
.nav-services { position: relative; }
.nav-services summary { cursor: pointer; list-style: none; }
.nav-services summary::-webkit-details-marker { display: none; }
.nav-services summary::after { content: "⌄"; margin-left: 6px; color: var(--green-dark); }
.nav-menu {
  width: 290px;
  padding: 10px;
  display: grid;
  position: absolute;
  z-index: 25;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(12,35,64,.16);
}
.nav-menu a { padding: 11px 12px; border-radius: 4px; }
.nav-menu a:hover { background: var(--cream); }
.header-call { justify-self: end; color: var(--navy); font-size: 14px; font-weight: 700; text-align: right; }
.header-call span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.hero-rotator {
  height: min(760px, calc(100vh - 88px));
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: rotateHero 21s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-slide > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroImageDrift 21s ease-in-out infinite;
}
.slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,22,40,.96) 0%, rgba(5,22,40,.82) 34%, rgba(5,22,40,.2) 70%, rgba(5,22,40,.05) 100%);
}
.slide-content {
  width: min(720px, 62vw);
  position: absolute;
  z-index: 2;
  left: clamp(24px, 7vw, 112px);
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.slide-content h1,
.slide-content h2 {
  margin-bottom: 25px;
  color: white;
  font-size: clamp(52px, 5.8vw, 84px);
  line-height: .98;
  letter-spacing: -.055em;
}
.slide-content h1 em,
.slide-content h2 em { color: #86e0c1; font-family: var(--serif); font-weight: 600; }
.slide-content > p:not(.eyebrow) {
  max-width: 620px;
  color: #e1e8ec;
  font-size: 18px;
  line-height: 1.65;
}
.banner-button { margin-top: 12px; color: var(--navy); background: var(--gold); }
.banner-button:hover { background: #f0c66f; }
.slide-progress {
  display: flex;
  gap: 10px;
  position: absolute;
  z-index: 5;
  left: clamp(24px, 7vw, 112px);
  bottom: 35px;
}
.slide-progress span { width: 42px; height: 3px; background: rgba(255,255,255,.35); }
.slide-progress span:first-child { background: var(--gold); }
.hero-rotator:hover .hero-slide,
.hero-rotator:focus-within .hero-slide,
.hero-rotator:hover .hero-slide > img,
.hero-rotator:focus-within .hero-slide > img { animation-play-state: paused; }
@keyframes rotateHero {
  0% { opacity: 0; visibility: hidden; }
  3%, 30% { opacity: 1; visibility: visible; }
  33%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes heroImageDrift {
  0% { transform: scale(1.02); }
  33% { transform: scale(1.07); }
  100% { transform: scale(1.07); }
}

.hero {
  min-height: 690px;
  padding: 80px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
  overflow: hidden;
  background: var(--cream);
}

.eyebrow { margin: 0 0 18px; color: var(--green-dark); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: #74d8b6; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; color: var(--navy); font-size: clamp(52px, 6vw, 86px); line-height: .98; letter-spacing: -.055em; }
h1 em, h2 em { font-family: var(--serif); font-weight: 600; }
h1 em { color: var(--green-dark); }
.hero-intro { max-width: 610px; color: #4d5c68; font-size: 18px; line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--green-dark); box-shadow: 0 10px 24px rgba(11,118,85,.18); }
.button.primary:hover { background: #085f45; }
.button.text-link { padding: 0; }
.button.text-link span { margin-left: 8px; color: var(--green-dark); font-size: 20px; }
.trust-row { margin-top: 48px; padding-top: 28px; display: flex; gap: 48px; border-top: 1px solid #cfd6d1; }
.trust-row div { display: flex; align-items: center; gap: 12px; }
.trust-row strong { color: var(--navy); font-size: 24px; }
.trust-row span { color: var(--muted); font-size: 12px; line-height: 1.45; }

.hero-visual { min-height: 490px; position: relative; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: -80px -100px -80px 0; background: var(--navy); border-radius: 55% 0 0 45%; transform: rotate(-2deg); }
.hero-visual::after { content: ""; position: absolute; width: 160px; height: 160px; right: -10px; top: 8px; border: 1px solid rgba(227,176,75,.5); border-radius: 50%; }
.ledger-card { width: min(100%, 490px); padding: 30px; position: relative; z-index: 2; background: white; border-radius: 14px; box-shadow: 0 28px 60px rgba(2,19,37,.34); transform: rotate(-2deg); }
.ledger-head, .ledger-foot { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; }
.status { padding: 7px 10px; color: var(--green-dark); background: #e5f5ef; border-radius: 99px; font-weight: 700; }
.metric { margin-top: 34px; display: flex; justify-content: space-between; align-items: end; }
.metric span { color: var(--muted); font-size: 13px; }
.metric strong { color: var(--navy); font-size: 40px; }
.chart { height: 180px; margin: 24px 0; padding: 0 15px; display: flex; align-items: end; justify-content: space-between; gap: 18px; background: repeating-linear-gradient(to bottom, transparent, transparent 44px, #e8ece9 45px); }
.chart span { width: 42px; background: linear-gradient(var(--green), var(--green-dark)); border-radius: 5px 5px 0 0; }
.ledger-foot { padding-top: 18px; border-top: 1px solid var(--line); }
.note-card { width: 320px; padding: 17px 20px; display: flex; gap: 14px; position: absolute; z-index: 3; right: -20px; bottom: 28px; color: white; background: #173852; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,.22); }
.note-card .check { flex: 0 0 30px; height: 30px; display: grid; place-items: center; color: var(--navy); background: var(--gold); border-radius: 50%; font-weight: 900; }
.note-card div { font-size: 12px; line-height: 1.55; }
.note-card strong { font-size: 14px; }

.proof-strip { min-height: 66px; padding: 16px 6vw; display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 48px); color: #dcebe6; background: var(--navy); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.proof-strip i { color: var(--gold); font-style: normal; }
.section { padding: 110px clamp(24px, 7vw, 112px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 80px; align-items: end; }
h2 { color: var(--navy); font-size: clamp(38px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading h2 { max-width: 750px; margin-bottom: 0; }
.section-heading > p { color: var(--muted); line-height: 1.7; }
.service-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.service-grid-five { grid-template-columns: repeat(6, 1fr); }
.service-grid-five .service-card { grid-column: span 2; }
.service-grid-five .service-card:nth-child(4) { grid-column: 2 / span 2; border-top: 1px solid var(--line); }
.service-grid-five .service-card:nth-child(5) { grid-column: 4 / span 2; border-top: 1px solid var(--line); }
.service-card { min-height: 420px; padding: 38px; border-right: 1px solid var(--line); transition: background .2s ease, transform .2s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { position: relative; z-index: 1; background: var(--cream); transform: translateY(-6px); box-shadow: 0 16px 35px rgba(12,35,64,.1); }
.service-number { color: var(--green-dark); font-size: 12px; font-weight: 700; }
.service-card h3 { margin-top: 58px; color: var(--navy); font-size: 25px; letter-spacing: -.035em; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card ul { margin: 28px 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.service-card li { margin: 11px 0; font-size: 13px; font-weight: 600; }
.service-card li::before { content: "✓"; margin-right: 10px; color: var(--green); }
.card-link { margin-top: 28px; display: inline-block; color: var(--green-dark); font-size: 13px; font-weight: 700; }

.about { padding-top: 0; }
.about-panel { padding: clamp(48px, 7vw, 100px); color: white; background: var(--navy); position: relative; overflow: hidden; }
.about-panel::after { content: "QB"; position: absolute; right: -20px; top: -80px; color: rgba(255,255,255,.035); font: 700 320px/1 var(--sans); letter-spacing: -.1em; }
.about-panel h2 { max-width: 850px; position: relative; z-index: 1; color: white; }
.about-panel h2 em { color: #74d8b6; }
.about-lead { max-width: 720px; color: #c9d3db; font-size: 18px; line-height: 1.75; }
.about-values { margin-top: 65px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; z-index: 1; }
.about-values div { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); }
.about-values span { display: block; margin-bottom: 32px; color: var(--gold); font-size: 12px; }
.about-values strong { display: block; font-size: 16px; }
.about-values p { margin: 9px 0 0; color: #aebdca; font-size: 13px; }

.areas { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 9vw, 140px); align-items: center; }
.areas-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); line-height: 1.7; }
.area-list { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px; }
.area-list span { padding: 11px 15px; color: var(--navy); background: var(--cream); border: 1px solid var(--line); border-radius: 99px; font-size: 12px; font-weight: 600; }
.spanish-card { padding: 44px; color: white; background: var(--green-dark); border-radius: 6px; box-shadow: 18px 18px 0 var(--cream); }
.spanish-card .eyebrow { color: #a8f0d6; }
.spanish-card h3 { font-size: 32px; letter-spacing: -.04em; }
.spanish-card p { color: #d8f0e8; line-height: 1.7; }
.spanish-card a { display: inline-block; margin-top: 18px; font-size: 13px; font-weight: 700; }

.cta { padding: 100px clamp(24px, 7vw, 112px); color: white; background: var(--navy); }
.cta h2 { margin-bottom: 18px; color: white; }
.cta > p:not(.eyebrow) { color: #bdc9d2; }
.cta-actions { margin-top: 35px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.button.cream { color: var(--navy); background: var(--cream); }
.button.outline { color: white; border: 1px solid rgba(255,255,255,.4); }
.contact-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: clamp(48px, 9vw, 130px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: #bdc9d2; font-size: 17px; line-height: 1.7; }
.contact-details { margin-top: 35px; display: grid; gap: 10px; }
.contact-details a { width: fit-content; color: #8ee1c4; font-size: 16px; font-weight: 700; }
.contact-form { overflow: hidden; color: var(--ink); background: var(--paper); border-radius: 14px; box-shadow: 0 25px 60px rgba(0,0,0,.24); }
.contact-form-header { padding: 28px clamp(24px, 4vw, 38px); color: white; background: #203f68; }
.contact-form-header h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 27px; }
.contact-form-header p { margin: 0; color: #d8e2ef; font-size: 14px; }
.contact-form-fields { padding: clamp(28px, 4vw, 40px); display: grid; gap: 20px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-size: 13px; font-weight: 700; text-align: left; }
.form-label b { color: #c94f4f; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: white; border: 1px solid #bfc8c2; border-radius: 4px; font: inherit; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 3px solid rgba(21,158,116,.22); border-color: var(--green-dark); }
.sms-consent { padding: 16px 14px; background: #f3f1ed; border-radius: 8px; }
.contact-form .sms-consent-choice { display: grid; grid-template-columns: 18px 1fr; gap: 10px; cursor: pointer; }
.contact-form .sms-consent-choice input { width: 16px; min-height: 16px; margin: 2px 0 0; accent-color: var(--green-dark); }
.sms-consent-choice span { display: grid; gap: 6px; color: var(--ink); font-weight: 400; line-height: 1.55; }
.sms-consent-choice strong { font-size: 13px; }
.sms-consent > p { margin: 12px 0 0 28px; color: #5d6d83; font-size: 11px; line-height: 1.55; }
.contact-submit { border: 0; color: var(--navy); background: #d5a343; cursor: pointer; }
.contact-submit:hover { background: #e3b65e; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
footer { padding: 65px clamp(24px, 7vw, 112px) 30px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; color: #b8c4ce; background: #07182a; font-size: 13px; line-height: 1.8; }
.footer-logo {
  width: min(100%, 310px);
  height: 80px;
  border-radius: 4px;
}
footer > div:first-child p { max-width: 410px; margin-top: 20px; }
footer strong, footer a, footer span { display: block; }
footer strong { margin-bottom: 12px; color: white; }
.footer-product-heading { margin-top: 24px; }
footer a:hover { color: white; }
.copyright { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-bar { display: none; }

.service-hero {
  min-height: 600px;
  padding: 88px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(55px, 9vw, 145px);
  background: var(--cream);
}
.service-hero h1 { max-width: 850px; }
.breadcrumb { margin-bottom: 45px; color: var(--muted); font-size: 12px; }
.breadcrumb span { margin: 0 10px; color: var(--green); }
.service-hero-media { display: grid; gap: 0; }
.service-photo { margin: 0 0 -8px; position: relative; z-index: 2; overflow: hidden; border-radius: 8px 8px 0 0; box-shadow: 18px 18px 0 #e4dfd4; }
.service-photo img { width: 100%; aspect-ratio: 3 / 2; display: block; object-fit: cover; }
.service-photo figcaption { padding: 12px 18px; color: #d9e4e9; background: var(--navy-soft); font-size: 11px; line-height: 1.45; }
.service-summary { padding: 42px; color: white; background: var(--navy); border-radius: 6px; box-shadow: 18px 18px 0 #e4dfd4; }
.summary-kicker { color: #74d8b6; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-summary > p { margin: 22px 0 28px; color: #d5dee5; font-size: 16px; line-height: 1.7; }
.service-summary ul { margin: 0; padding: 22px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.service-summary li { margin: 13px 0; font-size: 13px; font-weight: 600; }
.service-summary li::before { content: "✓"; margin-right: 10px; color: var(--gold); }
.included-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.included-grid article { min-height: 255px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.included-grid article > span { color: var(--green-dark); font-size: 11px; font-weight: 700; }
.included-grid h3 { margin: 38px 0 12px; color: var(--navy); font-size: 21px; }
.included-grid p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.pricing-section { background: #f4f6f3; }
.pricing-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 80px; align-items: end; }
.pricing-heading h2 { max-width: 760px; margin-bottom: 0; }
.pricing-heading > p { color: var(--muted); line-height: 1.7; }
.pricing-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pricing-card { min-height: 500px; padding: 34px 28px 28px; display: flex; flex-direction: column; position: relative; background: white; border: 1px solid #cad2cc; border-radius: 8px; }
.pricing-card.featured { border: 2px solid var(--green-dark); box-shadow: 0 18px 40px rgba(11,118,85,.13); transform: translateY(-8px); }
.popular-badge { padding: 8px 18px; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); white-space: nowrap; color: white; background: var(--green-dark); border-radius: 99px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pricing-card h3 { margin-bottom: 14px; color: var(--navy); font-size: 27px; }
.price { margin-bottom: 16px; display: flex; align-items: baseline; gap: 5px; }
.price strong { color: var(--navy); font-size: 40px; letter-spacing: -.05em; }
.price span { color: var(--muted); font-size: 13px; }
.expense-range { min-height: 48px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.pricing-card ul { margin: 18px 0 28px; padding: 22px 0 0; flex: 1; list-style: none; border-top: 1px solid var(--line); }
.pricing-card li { margin: 12px 0; font-size: 13px; line-height: 1.4; }
.pricing-card li::before { content: "✓"; margin-right: 9px; color: var(--green-dark); font-weight: 900; }
.pricing-card .button { width: 100%; }
.pricing-terms { margin-top: 34px; padding: 24px 28px; background: white; border-left: 4px solid var(--gold); }
.pricing-terms strong { color: var(--navy); font-size: 14px; }
.pricing-terms p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.process-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); color: white; background: var(--navy); }
.process-section h2 { color: white; }
.process-section h2 em { color: #74d8b6; }
.process-list article { padding: 28px 0; display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.process-list article > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--navy); background: var(--gold); border-radius: 50%; font-size: 12px; font-weight: 800; }
.process-list h3 { margin-bottom: 8px; font-size: 18px; }
.process-list p { margin-bottom: 0; color: #b9c7d2; font-size: 14px; line-height: 1.7; }
.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 42px 24px 0; position: relative; cursor: pointer; list-style: none; color: var(--navy); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; color: var(--green-dark); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { padding-right: 42px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.apps-hero { min-height: 610px; padding: 100px clamp(24px, 7vw, 112px); display: flex; align-items: flex-start; justify-content: center; flex-direction: column; background: linear-gradient(115deg, var(--cream) 0%, #edf6f2 100%); }
.apps-hero h1 { max-width: 900px; }
.apps-hero > p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 19px; line-height: 1.75; }
.apps-hero .button { margin-top: 18px; }
.apps-products { display: grid; gap: 100px; }
.app-product { display: grid; grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr); gap: clamp(45px, 7vw, 100px); align-items: center; }
.app-product:nth-child(even) .app-product-copy { order: 2; }
.app-product:nth-child(even) .app-screenshot { order: 1; }
.app-product-copy h2 { margin-bottom: 22px; font-size: clamp(36px, 4vw, 56px); }
.app-product-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.app-product-copy ul { margin: 28px 0 32px; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.app-product-copy li { margin: 12px 0; font-size: 14px; font-weight: 650; }
.app-product-copy li::before { content: "✓"; margin-right: 10px; color: var(--green-dark); font-weight: 900; }
.free-badge { margin-bottom: 22px; padding: 9px 13px; display: inline-flex; color: var(--green-dark); background: #e1f5ed; border-radius: 99px; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.app-screenshot { margin: 0; overflow: hidden; background: #0f141d; border: 1px solid #273243; border-radius: 12px; box-shadow: 0 28px 70px rgba(12,35,64,.2); }
.app-screenshot img { width: 100%; display: block; }
.app-screenshot figcaption { padding: 12px 18px; color: #c8d1dc; background: #111b29; font-size: 11px; }
.apps-closing { padding: 95px clamp(24px, 7vw, 112px); text-align: center; color: white; background: var(--navy); }
.apps-closing h2 { max-width: 850px; margin: 0 auto 20px; color: white; }
.apps-closing > p:not(.eyebrow) { color: #bdc9d2; }
.apps-closing .button { margin-top: 18px; }
.apps-closing-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.product-detail-hero { min-height: 690px; padding: 90px clamp(24px, 5vw, 80px); display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 7vw, 100px); align-items: center; background: var(--cream); }
.product-detail-hero h1 { max-width: 760px; font-size: clamp(48px, 5vw, 76px); }
.product-detail-hero .button { margin-top: 18px; }
.product-detail-shot { align-self: center; }
.product-audience { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); color: white; background: var(--navy); }
.product-audience h2 { color: white; }
.product-audience ul { margin: 0; padding: 0; list-style: none; }
.product-audience li { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.18); color: #d5dee5; font-size: 16px; line-height: 1.55; }
.product-audience li::before { content: "✓"; margin-right: 12px; color: var(--gold); font-weight: 900; }

.promo-hero { min-height: 720px; padding: 70px clamp(24px, 5vw, 80px); display: grid; grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr); gap: clamp(45px, 6vw, 90px); align-items: center; color: white; background: linear-gradient(135deg, #070b11 0%, #15120a 100%); }
.promo-kicker { margin-bottom: 20px; display: block; color: #f0bd45; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.promo-hero h1 { color: white; font-size: clamp(50px, 5.2vw, 78px); }
.promo-hero h1 em { color: #e5ae2f; }
.promo-hero-copy > p:not(.promo-terms) { max-width: 650px; color: #d4d7dc; font-size: 19px; line-height: 1.7; }
.promo-price { margin: 30px 0 25px; display: flex; align-items: center; gap: 16px; }
.promo-price strong { color: #f0bd45; font-size: 54px; line-height: 1; letter-spacing: -.05em; }
.promo-price span { color: white; font-size: 14px; font-weight: 800; line-height: 1.45; text-transform: uppercase; }
.promo-button { color: #0c1724; background: #e2aa31; }
.promo-button:hover { background: #f0c35e; }
.promo-terms { max-width: 600px; margin: 20px 0 0; color: #9da6b0; font-size: 11px; line-height: 1.6; }
.promo-art { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.promo-art img { width: 100%; display: block; }
.promo-feature-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.promo-feature-grid article { min-height: 290px; padding: 28px; border-right: 1px solid var(--line); }
.promo-feature-grid article:last-child { border-right: 0; }
.promo-feature-grid span { color: #b07a09; font-size: 11px; font-weight: 800; }
.promo-feature-grid h3 { margin: 34px 0 14px; color: var(--navy); font-size: 20px; }
.promo-feature-grid p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.promo-signup { padding: 100px clamp(24px, 7vw, 112px); display: grid; grid-template-columns: minmax(300px, .7fr) minmax(480px, 1.3fr); gap: clamp(50px, 9vw, 130px); align-items: start; color: white; background: #091827; }
.promo-signup-copy { position: sticky; top: 120px; }
.promo-signup-copy h2 { color: white; }
.promo-signup-copy > p:not(.eyebrow) { color: #bdc9d2; font-size: 17px; line-height: 1.75; }
.promo-signup-copy ul { margin: 30px 0 0; padding: 24px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.promo-signup-copy li { margin: 14px 0; color: #d5dee5; }
.promo-signup-copy li::before { content: "✓"; margin-right: 10px; color: #e2aa31; font-weight: 900; }
.promo-form { width: 100%; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
}

@media (max-width: 1000px) {
  .contact-section { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .hero-rotator { height: 650px; min-height: 650px; }
  .slide-content { width: min(700px, 72vw); }
  .hero { grid-template-columns: 1fr 1fr; gap: 45px; padding-left: 5vw; padding-right: 5vw; }
  h1 { font-size: clamp(50px, 7vw, 70px); }
  .hero-visual { min-height: 450px; }
  .note-card { right: 0; }
  .section { padding-left: 5vw; padding-right: 5vw; }
  .service-card { padding: 28px; }
  .service-grid-five { grid-template-columns: repeat(2, 1fr); }
  .service-grid-five .service-card,
  .service-grid-five .service-card:nth-child(4),
  .service-grid-five .service-card:nth-child(5) { grid-column: auto; border-top: 0; }
  .service-grid-five .service-card:last-child { grid-column: 1 / -1; }
  .areas { gap: 50px; }
  .service-hero { gap: 45px; padding-left: 5vw; padding-right: 5vw; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .app-product { grid-template-columns: 1fr; }
  .app-product:nth-child(even) .app-product-copy,
  .app-product:nth-child(even) .app-screenshot { order: initial; }
  .product-detail-hero { grid-template-columns: 1fr; }
  .promo-hero { grid-template-columns: 1fr; }
  .promo-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-feature-grid article { border-bottom: 1px solid var(--line); }
  .promo-signup { grid-template-columns: 1fr; }
  .promo-signup-copy { position: static; }
}

@media (max-width: 760px) {
  body { padding-bottom: 64px; }
  .site-header { height: 70px; padding: 0 20px; }
  .header-call { font-size: 13px; }
  .header-call span { display: none; }
  .header-logo { width: 205px; height: 52px; }
  .hero-rotator { height: 640px; min-height: 640px; }
  .hero-slide > img { object-position: 66% center; }
  .slide-shade { background: linear-gradient(90deg, rgba(5,22,40,.94) 0%, rgba(5,22,40,.78) 72%, rgba(5,22,40,.25) 100%); }
  .slide-content { width: auto; left: 22px; right: 22px; }
  .slide-content h1, .slide-content h2 { font-size: clamp(44px, 13vw, 62px); }
  .slide-content > p:not(.eyebrow) { font-size: 16px; }
  .slide-progress { left: 22px; bottom: 24px; }
  .hero { min-height: auto; padding: 64px 22px 54px; display: block; }
  h1 { font-size: clamp(48px, 14vw, 66px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .button { width: 100%; }
  .trust-row { gap: 24px; }
  .trust-row div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hero-visual { min-height: 420px; margin-top: 65px; }
  .hero-visual::before { inset: -30px -40px; border-radius: 45% 0 0 40%; }
  .ledger-card { padding: 22px; }
  .chart { height: 145px; gap: 10px; }
  .chart span { width: 30px; }
  .note-card { width: 88%; right: 0; bottom: 0; }
  .proof-strip { padding: 20px; justify-content: flex-start; gap: 16px; overflow-x: auto; white-space: nowrap; }
  .section { padding: 80px 22px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid-five { grid-template-columns: 1fr; }
  .service-grid-five .service-card:last-child { grid-column: auto; }
  .service-card { min-height: auto; padding: 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 35px; }
  .about { padding-top: 0; }
  .about-panel { padding: 58px 28px; }
  .about-values { grid-template-columns: 1fr; gap: 28px; }
  .about-values span { margin-bottom: 15px; }
  .areas { grid-template-columns: 1fr; }
  .spanish-card { padding: 34px 28px; }
  .service-hero { min-height: auto; padding: 60px 22px 72px; display: block; }
  .service-hero-media { margin-top: 55px; }
  .service-photo { box-shadow: 10px 10px 0 #e4dfd4; }
  .service-summary { margin-top: 55px; padding: 32px 26px; box-shadow: 10px 10px 0 #e4dfd4; }
  .service-hero-media .service-summary { margin-top: 0; }
  .included-grid { grid-template-columns: 1fr; }
  .included-grid article { min-height: auto; }
  .pricing-heading { display: block; }
  .pricing-heading > p { margin-top: 24px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-card { min-height: auto; }
  .process-section, .faq-section { grid-template-columns: 1fr; gap: 45px; }
  .cta { padding: 75px 22px; }
  .contact-form-fields { padding: 24px 18px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  footer { padding: 55px 22px 30px; grid-template-columns: 1fr; gap: 35px; }
  .copyright { grid-column: auto; }
  .mobile-bar { height: 64px; display: grid; grid-template-columns: 1fr 1fr; position: fixed; z-index: 30; left: 0; right: 0; bottom: 0; background: var(--navy); box-shadow: 0 -8px 28px rgba(0,0,0,.2); }
  .mobile-bar a { display: grid; place-items: center; color: white; font-size: 14px; font-weight: 700; }
  .mobile-bar a:first-child { background: var(--green-dark); }
  .apps-hero { min-height: auto; padding: 75px 22px; }
  .apps-hero > p:not(.eyebrow) { font-size: 16px; }
  .apps-products { gap: 75px; }
  .app-product { gap: 35px; }
  .app-product-copy .button { width: 100%; }
  .product-detail-hero { min-height: auto; padding: 65px 22px 75px; }
  .product-detail-hero h1 { font-size: clamp(46px, 13vw, 62px); }
  .product-audience { grid-template-columns: 1fr; gap: 40px; }
  .promo-hero { min-height: auto; padding: 60px 22px; }
  .promo-hero h1 { font-size: clamp(46px, 13vw, 62px); }
  .promo-hero-copy > p:not(.promo-terms) { font-size: 16px; }
  .promo-feature-grid { grid-template-columns: 1fr; }
  .promo-feature-grid article { min-height: auto; border-right: 0; }
  .promo-signup { padding: 75px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .hero-slide, .hero-slide > img { animation: none !important; }
  .hero-slide { opacity: 0; visibility: hidden; }
  .hero-slide:first-child { opacity: 1; visibility: visible; }
}

/* Dreamweaver PHP export */
.form-honeypot { width: 1px; height: 1px; position: absolute; left: -10000px; overflow: hidden; }
.form-result { min-height: 62vh; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; background: var(--cream); }
.form-result h1 { max-width: 850px; }
.form-result > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.form-result .button { margin-top: 18px; }
.diagnostic-reference { padding: 12px 16px; border: 1px solid rgba(14, 67, 55, .18); border-radius: 8px; background: rgba(255, 255, 255, .65); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 15px !important; }
