:root {
  --ink: #071113;
  --green: #006a39;
  --green-soft: #eef5f1;
  --dark: #052824;
  --muted: #4e5757;
  --line: #dfe4e1;
  --surface: #f5f7f5;
  --white: #fff;
  --radius: 7px;
  --shadow: 0 2px 8px rgba(10, 35, 28, .07);
  --content: 872px;
  --gutter: clamp(22px, 6vw, 72px);
  --section-space: clamp(56px, 7vw, 84px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 3px; }
.ph-icon {
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: var(--ph-icon) center / contain no-repeat;
  mask: var(--ph-icon) center / contain no-repeat;
}
.ph-file-text { --ph-icon: url("assets/icons/file-text.svg"); }
.ph-tag { --ph-icon: url("assets/icons/tag.svg"); }
.ph-shield-check { --ph-icon: url("assets/icons/shield-check.svg"); }
.ph-chat-circle { --ph-icon: url("assets/icons/chat-circle.svg"); }
.ph-user { --ph-icon: url("assets/icons/user.svg"); }
.ph-magnifying-glass { --ph-icon: url("assets/icons/magnifying-glass.svg"); }
.ph-pencil-simple { --ph-icon: url("assets/icons/pencil-simple.svg"); }
.ph-check { --ph-icon: url("assets/icons/check.svg"); }
.ph-check-circle { --ph-icon: url("assets/icons/check-circle.svg"); }
.ph-arrow-right { --ph-icon: url("assets/icons/arrow-right.svg"); }
.ph-phone-call { --ph-icon: url("assets/icons/phone-call.svg"); }
.ph-monitor { --ph-icon: url("assets/icons/monitor.svg"); }
.ph-map-pin { --ph-icon: url("assets/icons/map-pin.svg"); }
.container { width: min(calc(100% - (var(--gutter) * 2)), var(--content)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--white);
  background: var(--dark);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header { border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .96); }
.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; }
.header-inner { min-height: 51px; }
.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-weight: 800;
  text-decoration: none;
}
.brand-name {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.5px;
}
.brand-name span { color: var(--ink); }
.brand-claim {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
}
.nav-list { display: flex; align-items: center; gap: 36px; margin: 0; padding: 0; list-style: none; }
.nav-list a { display: inline-flex; min-height: 44px; align-items: center; font-size: 13px; font-weight: 700; text-decoration: none; }

.section { position: relative; padding-block: var(--section-space); }
.section::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}
.eyebrow {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; letter-spacing: -.025em; }
h1 { max-width: 620px; margin-bottom: 12px; font-size: clamp(36px, 3.5vw, 42px); line-height: 1.04; }
h2 { margin-bottom: 12px; font-size: clamp(22px, 2vw, 26px); line-height: 1.12; }
h3 { margin-bottom: 8px; font-size: 16px; line-height: 1.25; }
p { margin-top: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 20px; }
.hero-actions .button { min-height: 46px; padding-inline: 24px; }

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--white);
  background: linear-gradient(105deg, #006b39, #087b43);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 95, 49, .13);
  cursor: pointer;
}
.button:hover { background: #005b31; }
.button-small { min-width: 81px; min-height: 30px; padding: 7px 14px; }
.button-outline { border-color: #aeb6b2; color: var(--ink); background: var(--white); box-shadow: none; }
.button-outline:hover { background: var(--surface); }
.text-link { display: inline-flex; min-height: 28px; align-items: center; gap: 8px; color: var(--green); font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link::after {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background-color: currentColor;
  content: "";
  -webkit-mask: url("assets/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("assets/icons/arrow-right.svg") center / contain no-repeat;
  transition: transform .2s ease;
}
.text-link:hover::after { transform: translateX(3px); }
.services, .pricing-section, .service-page-section { padding-block: var(--section-space); }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 18px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 240px; margin: 0 auto 0 0; color: #263131; font-size: 12.5px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { position: relative; display: flex; min-height: 242px; flex-direction: column; padding: 17px 16px 13px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .98); box-shadow: var(--shadow); cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.service-card.is-active { border-color: var(--green); box-shadow: 0 8px 24px rgba(0, 106, 57, .1); }
.service-card-select {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.service-card-select:focus-visible { outline: 3px solid rgba(0, 106, 57, .28); outline-offset: 5px; border-radius: 3px; }
.service-card-title { display: block; margin: 0; font-size: 14px; font-weight: 700; line-height: 1.25; letter-spacing: -.025em; }
.service-card > p { margin-bottom: 10px; font-size: 12.5px; line-height: 1.55; }
.check-list { margin: 0 0 13px; padding: 0; list-style: none; font-size: 12px; line-height: 1.6; }
.check-list li { position: relative; padding-left: 19px; }
.check-list li::before {
  position: absolute;
  top: .27em;
  left: 1px;
  width: 12px;
  height: 12px;
  background-color: var(--green);
  content: "";
  -webkit-mask: url("assets/icons/check.svg") center / contain no-repeat;
  mask: url("assets/icons/check.svg") center / contain no-repeat;
}
.service-card .text-link { margin-top: auto; }
.goal-picker { padding-block: clamp(48px, 6vw, 76px); background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%); }
.goal-picker > .container { width: min(calc(100% - (var(--gutter) * 2)), 1220px); }
.goal-picker-heading { max-width: 980px; margin: 0 auto 36px; text-align: center; }
.goal-hero-badge { display: inline-flex; min-height: 38px; align-items: center; justify-content: center; gap: 9px; margin: 0 0 18px; padding: 8px 18px; border-radius: 999px; color: var(--white); background: linear-gradient(110deg, #006f3c, #078444); font-size: 14px; font-weight: 800; line-height: 1.2; box-shadow: 0 5px 14px rgba(0, 106, 57, .18); }
.goal-hero-badge .ph-icon { width: 18px; height: 18px; }
.goal-picker-heading h1 { max-width: none; margin-bottom: 12px; font-size: clamp(34px, 4vw, 48px); }
.goal-picker-heading h1 span { color: var(--green); }
.goal-picker-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 16px; }
.goal-grid { max-width: 900px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-inline: auto; }
.goal-card { width: 100%; min-height: clamp(456px, 39vw, 560px); padding: 14px 14px 16px; overflow: hidden; border-radius: 16px; }
.goal-card.is-active { background: linear-gradient(180deg, #fff 58%, #f1f8f3 100%); }
.goal-card-visual { position: relative; height: clamp(176px, 16vw, 230px); flex: 0 0 auto; margin-bottom: 52px; overflow: visible; border-radius: 12px; color: var(--green); }
.goal-card-visual > img { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.goal-card-visual-calls { background: #073e30; }
.goal-card-visual-website { background: #eee8df; }
.goal-card-visual-both { background: #e8eee9; }
.goal-number { position: absolute; top: 14px; left: 14px; z-index: 3; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--white); font-size: 13px; font-weight: 800; box-shadow: 0 3px 10px rgba(4, 38, 29, .12); }
.goal-recommended { position: absolute; top: 14px; right: 14px; z-index: 4; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; color: var(--white); background: var(--green); font-size: 11px; font-weight: 800; line-height: 1; box-shadow: 0 4px 12px rgba(0, 106, 57, .2); }
.goal-recommended .ph-icon { width: 13px; height: 13px; }
.goal-visual-badge { position: absolute; z-index: 4; bottom: -34px; left: 50%; display: grid; width: 70px; height: 70px; place-items: center; border: 4px solid var(--white); border-radius: 50%; color: var(--green); background: var(--white); box-shadow: 0 5px 16px rgba(7, 44, 33, .17); transform: translateX(-50%); }
.goal-visual-badge .ph-icon { width: 36px; height: 36px; }
.goal-card.is-active .goal-visual-badge { color: var(--white); background: var(--green); }
.goal-visual-badge-left { left: 38%; }
.goal-visual-badge-right { left: 62%; }
.goal-visual-plus { position: absolute; z-index: 5; bottom: -16px; left: 50%; color: var(--green); font-size: 22px; font-weight: 800; transform: translateX(-50%); }
.goal-card-copy { display: flex; flex: 1; flex-direction: column; align-items: center; text-align: center; }
.goal-card .service-card-title { margin-bottom: 12px; font-size: clamp(22px, 1.8vw, 28px); line-height: 1.18; }
.goal-card.is-active .service-card-title { color: var(--green); }
.goal-card .service-card-title a { color: inherit; text-decoration: none; }
.goal-card .service-card-title a:hover { color: var(--green); }
.goal-card-copy > p { max-width: 310px; margin-bottom: 16px; color: #263130; font-size: clamp(13px, 1vw, 16px); line-height: 1.65; }
.goal-select-button { display: flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; margin-top: auto; padding: 10px 14px; border: 1px solid #d5ded9; border-radius: 8px; color: var(--green); background: var(--white); font-size: clamp(13px, 1vw, 15px); font-weight: 800; text-align: center; }
.goal-select-button:hover { border-color: #a4c8b5; background: #f7faf8; }
.goal-select-button[aria-pressed="true"] { border-color: transparent; background: #e5f2e9; }
.goal-select-icon { width: 18px; height: 18px; flex: 0 0 18px; background-color: currentColor; -webkit-mask: url("assets/icons/arrow-right.svg") center / contain no-repeat; mask: url("assets/icons/arrow-right.svg") center / contain no-repeat; }
.goal-select-button[aria-pressed="true"] .goal-select-icon { -webkit-mask-image: url("assets/icons/check-circle.svg"); mask-image: url("assets/icons/check-circle.svg"); }
.goal-trust-strip { display: grid; width: 100%; max-width: 1220px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 30px auto 0; padding: 14px 18px; border: 1px solid var(--line); border-radius: 14px; color: #25302e; background: var(--white); font-size: 13px; font-weight: 700; list-style: none; box-shadow: 0 7px 22px rgba(5, 40, 31, .07); }
.goal-trust-strip li { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 10px; padding-inline: 14px; text-align: center; }
.goal-trust-strip li + li { border-left: 1px solid var(--line); }
.goal-trust-strip .ph-icon { width: 24px; height: 24px; flex: 0 0 24px; color: var(--green); }
[data-service-panel][hidden] { display: none !important; }
.service-content.is-changing [data-service-panel]:not([hidden]) { animation: service-content-reveal .22s ease both; }
@keyframes service-content-reveal {
  from { opacity: .72; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.process { padding: clamp(32px, 4vw, 48px) 0; color: var(--white); }
.process > .container {
  padding: clamp(32px, 4vw, 44px) clamp(22px, 4vw, 40px);
  border-radius: var(--radius);
  background: radial-gradient(circle at 48% 25%, #0b3832 0, var(--dark) 52%, #04231f 100%);
}
.process .eyebrow { color: #dbeae4; }
.process-heading { margin-bottom: 22px; }
.process-heading h2, .process-heading > p { color: var(--white); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.process-top { display: flex; align-items: center; gap: 10px; }
.process-icon { --hex-border: #18a75c; --hex-fill: #07302a; display: grid; width: 48px; height: 44px; flex: 0 0 48px; place-items: center; border: 1px solid #18a75c; border-radius: 50%; }
.process-icon .ph-icon { width: 23px; height: 23px; }
.process-number { color: #19a85f; font-size: 20px; font-weight: 800; }
.process-line { height: 1px; flex: 1; background: #3d7e63; }
.process-copy { padding-left: 58px; }
.process-copy h3 { margin: -3px 0 7px; color: var(--white); }
.process-copy p { margin-bottom: 0; font-size: 12px; line-height: 1.6; }

.google-sales-section { padding-block: clamp(64px, 8vw, 104px); background: linear-gradient(180deg, #f7faf8 0%, #fff 38%, #f7faf8 100%); }
.google-sales-section > .container, .website-sales-section > .container { width: min(calc(100% - 40px), 1120px); }
.google-sales-intro { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(40px, 6vw, 76px); align-items: center; }
.google-sales-copy h2 { max-width: 520px; margin-bottom: 18px; font-size: clamp(36px, 5vw, 60px); line-height: 1; }
.google-sales-copy > p:last-child { max-width: 530px; margin-bottom: 0; color: #303b38; font-size: 16px; line-height: 1.7; }
.google-sales-lead { margin-bottom: 14px; color: var(--green); font-size: clamp(17px, 2vw, 21px); }
.google-sales-pillars, .website-sales-services { display: grid; gap: 14px; }
.google-sales-pillar { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 17px; align-items: start; padding: 20px; border: 1px solid #d6e4dc; border-radius: 12px; background: var(--white); box-shadow: 0 8px 22px rgba(5, 54, 38, .07); }
.google-sales-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.google-sales-icon .ph-icon { width: 25px; height: 25px; }
.google-sales-pillar h3, .website-sales-service h3 { margin-bottom: 5px; color: var(--dark); font-size: 17px; }
.google-sales-pillar p, .website-sales-service > div > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.google-sales-quote { margin: clamp(38px, 5vw, 58px) 0 0; padding: 22px 28px; border: 0; border-radius: 12px; color: var(--white); background: var(--dark); text-align: center; box-shadow: 0 12px 28px rgba(5, 40, 36, .14); }
.google-sales-quote p { margin: 0; font-size: clamp(17px, 2vw, 22px); font-weight: 800; line-height: 1.4; }
.google-benefits { padding-top: clamp(70px, 9vw, 110px); }
.google-benefits-heading { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.google-benefits-heading h2 { margin-bottom: 0; font-size: clamp(30px, 4vw, 44px); }
.google-benefits-grid, .website-delivery-grid, .combined-benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.google-benefit-card { position: relative; min-width: 0; padding: 24px 20px 20px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 6px 18px rgba(5, 54, 38, .055); }
.google-benefit-card::after { position: absolute; right: -24px; bottom: -32px; width: 92px; height: 92px; border-radius: 50%; background: var(--green-soft); content: ""; }
.google-benefit-number { position: relative; z-index: 1; display: block; margin-bottom: 14px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.google-benefit-card h3 { position: relative; z-index: 1; margin-bottom: 8px; color: var(--dark); font-size: 17px; line-height: 1.3; }
.google-benefit-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.google-sales-summary { margin-top: clamp(70px, 9vw, 110px); padding: clamp(34px, 5vw, 56px); border-radius: 18px; color: var(--white); background: radial-gradient(circle at 82% 15%, #155644 0, var(--dark) 55%, #04231f 100%); text-align: center; }
.google-sales-summary h2 { max-width: 700px; margin: 0 auto 24px; color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.google-sales-flow { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; justify-content: center; margin: 0 auto 24px; color: #f3faf6; font-size: 14px; line-height: 1.5; }
.google-sales-flow strong { padding: 8px 11px; border: 1px solid #3a7c61; border-radius: 999px; background: rgba(255,255,255,.06); }
.google-sales-flow span { color: #45c77f; font-size: 20px; }
.google-sales-summary > p:not(.eyebrow, .google-sales-flow) { max-width: 790px; margin: 0 auto; color: #dce9e5; font-size: 15px; line-height: 1.7; }
.google-sales-summary blockquote { max-width: 760px; margin: 30px auto 0; padding-top: 26px; border-top: 1px solid #3a6b5b; }
.google-sales-summary blockquote p { margin: 0; color: var(--white); font-size: clamp(18px, 2.4vw, 24px); font-weight: 800; line-height: 1.45; }

.website-sales-section { padding-block: clamp(64px, 8vw, 104px); background: linear-gradient(180deg, #f7faf8 0%, #fff 48%, #f7faf8 100%); }
.website-sales-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 72px); align-items: center; }
.website-sales-copy h2 { max-width: 570px; margin-bottom: 18px; font-size: clamp(36px, 4.6vw, 56px); line-height: 1.03; }
.website-sales-copy > p:last-child { max-width: 550px; margin-bottom: 0; color: #303b38; font-size: 16px; line-height: 1.7; }
.website-sales-lead, .combined-sales-lead { max-width: 580px; margin-bottom: 15px; color: var(--green); font-size: clamp(17px, 2vw, 20px); line-height: 1.5; }
.website-sales-service { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 16px; padding: 19px 20px; border: 1px solid #d6e4dc; border-radius: 12px; background: var(--white); box-shadow: 0 8px 22px rgba(5, 54, 38, .07); }
.website-sales-icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.website-sales-icon .ph-icon { width: 24px; height: 24px; }
.website-sales-number { margin: 0 0 3px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.website-section-heading { max-width: 790px; margin: 0 auto 34px; text-align: center; }
.website-section-heading h2, .combined-section-heading h2 { margin-bottom: 12px; font-size: clamp(30px, 4vw, 44px); }
.website-section-heading > p:last-child { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 15px; line-height: 1.65; }
.customer-questions { padding-top: clamp(76px, 10vw, 120px); text-align: center; }
.customer-question-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; text-align: left; }
.customer-question-card { min-width: 0; padding: 24px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 7px 20px rgba(5, 54, 38, .06); }
.customer-question-card > span { display: block; margin-bottom: 16px; color: var(--green); font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.customer-question-card h3 { margin-bottom: 9px; color: var(--dark); font-size: 18px; line-height: 1.25; }
.customer-question-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.customer-questions-note { max-width: 820px; margin: 24px auto 20px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.website-section-cta { min-height: 48px; }
.website-study { margin-top: clamp(76px, 10vw, 120px); padding: clamp(34px, 5vw, 54px); border-radius: 18px; color: var(--white); background: radial-gradient(circle at 80% 10%, #155644 0, var(--dark) 55%, #04231f 100%); }
.website-study > header { max-width: 720px; margin: 0 auto 30px; text-align: center; }
.website-study h2 { margin-bottom: 12px; color: var(--white); font-size: clamp(29px, 4vw, 42px); }
.website-study > header > p:last-child { margin: 0; color: #dce9e5; line-height: 1.65; }
.website-study-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.website-study-grid article { padding: 22px 18px; border: 1px solid #356e5a; border-radius: 12px; background: rgba(255,255,255,.055); text-align: center; }
.website-study-grid strong { display: block; margin-bottom: 9px; color: #58d68d; font-size: clamp(34px, 4vw, 48px); line-height: 1; }
.website-study-grid p { margin: 0; color: #e5efeb; font-size: 13px; line-height: 1.5; }
.website-study-conclusion { max-width: 760px; margin: 30px auto 0; padding-top: 25px; border-top: 1px solid #376859; text-align: center; }
.website-study-conclusion strong { display: block; margin-bottom: 7px; font-size: 18px; }
.website-study-conclusion p { margin: 0; color: #dce9e5; line-height: 1.6; }
.website-delivery { padding-top: clamp(76px, 10vw, 120px); }
.website-delivery-grid article { padding: 24px 21px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 7px 20px rgba(5, 54, 38, .055); }
.website-delivery-grid .ph-icon { width: 30px; height: 30px; margin-bottom: 16px; color: var(--green); }
.website-delivery-grid h3 { margin-bottom: 8px; color: var(--dark); font-size: 18px; }
.website-delivery-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.website-delivery-note { max-width: 820px; margin: 24px auto 0; color: var(--muted); font-size: 13px; line-height: 1.65; text-align: center; }
.website-optimization { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(36px, 6vw, 72px); align-items: center; padding-top: clamp(76px, 10vw, 120px); }
.website-optimization-copy h2 { margin-bottom: 16px; font-size: clamp(30px, 4vw, 44px); }
.website-optimization-copy > p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 1.7; }
.website-optimization-mantra { margin-top: 22px; color: var(--green) !important; font-size: 18px !important; }
.website-optimization-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.website-optimization-steps li { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 15px; padding: 18px; border: 1px solid #d6e4dc; border-radius: 12px; background: var(--white); box-shadow: 0 6px 18px rgba(5, 54, 38, .055); }
.website-optimization-steps li > span { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: 12px; font-weight: 800; }
.website-optimization-steps h3 { margin-bottom: 5px; color: var(--dark); font-size: 16px; }
.website-optimization-steps p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.website-monthly { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(36px, 6vw, 70px); align-items: center; margin-top: clamp(76px, 10vw, 120px); padding: clamp(34px, 5vw, 56px); border-radius: 18px; color: var(--white); background: var(--dark); }
.website-monthly h2, .combined-care h2 { margin-bottom: 15px; color: var(--white); font-size: clamp(30px, 4vw, 44px); }
.website-monthly-copy > p:not(.eyebrow), .combined-care-copy > p:not(.eyebrow) { color: #dce9e5; font-size: 14px; line-height: 1.7; }
.website-monthly-copy .button { margin-top: 8px; }
.website-monthly-list { margin: 0; padding: 22px; border: 1px solid #376f5c; border-radius: 12px; background: rgba(255,255,255,.055); list-style: none; }
.website-monthly-list li { position: relative; padding: 8px 0 8px 30px; color: #eef7f3; font-size: 13px; line-height: 1.45; }
.website-monthly-list li::before { position: absolute; top: 9px; left: 0; width: 19px; height: 19px; background: #58d68d; content: ""; -webkit-mask: url("assets/icons/check-circle.svg") center / contain no-repeat; mask: url("assets/icons/check-circle.svg") center / contain no-repeat; }

.combined-sales-section { padding-block: clamp(64px, 8vw, 104px); background: linear-gradient(180deg, #f7faf8 0%, #fff 44%, #f7faf8 100%); }
.combined-sales-section > .container { width: min(calc(100% - 40px), 1160px); }
.combined-sales-intro { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(40px, 6vw, 74px); align-items: center; }
.combined-sales-copy h2 { max-width: 600px; margin-bottom: 18px; font-size: clamp(36px, 4.6vw, 56px); line-height: 1.03; }
.combined-sales-copy > p:last-child { max-width: 570px; margin-bottom: 0; color: #303b38; font-size: 16px; line-height: 1.7; }
.combined-channel-system { display: grid; grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr); gap: 14px; align-items: center; }
.combined-channel-card { min-width: 0; min-height: 280px; padding: 24px 21px; border: 1px solid #d5e3dc; border-radius: 14px; background: var(--white); box-shadow: 0 9px 26px rgba(5, 54, 38, .075); }
.combined-channel-icon { display: grid; width: 48px; height: 48px; margin-bottom: 22px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.combined-channel-icon .ph-icon { width: 25px; height: 25px; }
.combined-channel-label { margin: 0 0 8px; color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.combined-channel-card h3 { margin-bottom: 10px; color: var(--dark); font-size: 20px; line-height: 1.25; }
.combined-channel-card > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.combined-channel-arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid #bdd7ca; border-radius: 50%; color: var(--green); background: #f0f7f3; }
.combined-channel-arrow .ph-icon { width: 22px; height: 22px; }
.combined-channel-result { display: flex; grid-column: 1 / -1; gap: 10px; align-items: center; justify-content: center; margin: 2px 0 0; padding: 14px 18px; border: 1px solid #c7ddd1; border-radius: 10px; color: #183b30; background: #edf6f1; font-size: 13px; text-align: center; }
.combined-channel-result .ph-icon { width: 21px; height: 21px; flex: 0 0 auto; color: var(--green); }
.combined-google-feature { padding-top: clamp(78px, 10vw, 122px); }
.combined-section-heading { max-width: 820px; margin: 0 auto 36px; text-align: center; }
.combined-section-heading > p:last-child { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 15px; line-height: 1.65; }
.combined-journey, .combined-benefits, .combined-delivery { padding-top: clamp(78px, 10vw, 122px); }
.combined-journey-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.combined-journey-list li { position: relative; min-width: 0; padding: 23px 18px 21px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 7px 20px rgba(5, 54, 38, .055); }
.combined-journey-list li > span { display: grid; width: 36px; height: 36px; margin-bottom: 17px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: 11px; font-weight: 800; }
.combined-journey-list h3 { min-height: 43px; margin-bottom: 8px; color: var(--dark); font-size: 16px; line-height: 1.3; }
.combined-journey-list p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.combined-benefits-grid article { min-width: 0; padding: 25px 22px; border: 1px solid #d4e2da; border-radius: 12px; background: var(--white); box-shadow: 0 7px 20px rgba(5, 54, 38, .055); }
.combined-benefits-grid .ph-icon { width: 30px; height: 30px; margin-bottom: 17px; color: var(--green); }
.combined-benefits-grid h3 { margin-bottom: 8px; color: var(--dark); font-size: 18px; line-height: 1.3; }
.combined-benefits-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.combined-delivery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.combined-delivery-card { min-width: 0; padding: clamp(24px, 3vw, 32px); border: 1px solid #bcd6c8; border-radius: 14px; background: var(--white); box-shadow: 0 10px 28px rgba(5, 54, 38, .075); }
.combined-delivery-title { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 15px; align-items: center; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.combined-delivery-title > .ph-icon { width: 44px; height: 44px; padding: 10px; border-radius: 50%; color: var(--white); background: var(--green); }
.combined-delivery-title p { margin: 0 0 2px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.combined-delivery-title h3 { margin: 0; color: var(--dark); font-size: 22px; }
.combined-delivery-card ul, .combined-care-list { margin: 0; padding: 0; list-style: none; }
.combined-delivery-card li { position: relative; padding: 8px 0 8px 30px; color: #34433f; font-size: 14px; line-height: 1.5; }
.combined-delivery-card li::before, .combined-care-list li::before { position: absolute; left: 0; width: 19px; height: 19px; background: var(--green); content: ""; -webkit-mask: url("assets/icons/check-circle.svg") center / contain no-repeat; mask: url("assets/icons/check-circle.svg") center / contain no-repeat; }
.combined-delivery-card li::before { top: 9px; }
.combined-delivery-connection { display: grid; max-width: 880px; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; align-items: center; margin: 24px auto 0; padding: 18px 21px; border: 1px solid #bdd7ca; border-radius: 12px; background: #edf6f1; }
.combined-delivery-connection .ph-icon { width: 30px; height: 30px; color: var(--green); }
.combined-delivery-connection p { margin: 0; color: #2f403a; font-size: 13.5px; line-height: 1.6; }
.combined-care { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .86fr); gap: clamp(36px, 6vw, 70px); align-items: center; margin-top: clamp(78px, 10vw, 122px); padding: clamp(36px, 5vw, 58px); border-radius: 18px; color: var(--white); background: radial-gradient(circle at 85% 10%, #155644 0, var(--dark) 55%, #04231f 100%); }
.combined-care-copy .button { min-height: 48px; margin-top: 8px; }
.combined-care-list { padding: 22px; border: 1px solid #39725f; border-radius: 12px; background: rgba(255,255,255,.055); }
.combined-care-list li { position: relative; padding: 8px 0 8px 30px; color: #eef7f3; font-size: 13px; line-height: 1.5; }
.combined-care-list li::before { top: 9px; background: #58d68d; }
.combined-sales-summary { margin-top: clamp(70px, 9vw, 110px); padding: clamp(34px, 5vw, 54px); border: 1px solid #bdd7ca; border-radius: 18px; background: linear-gradient(145deg, #edf6f1 0%, #fff 78%); text-align: center; }
.combined-sales-summary h2 { max-width: 760px; margin: 0 auto 24px; color: var(--dark); font-size: clamp(29px, 4vw, 42px); }
.combined-sales-flow { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; justify-content: center; margin: 0 auto 28px; color: var(--dark); font-size: 14px; line-height: 1.5; }
.combined-sales-flow strong { padding: 8px 11px; border: 1px solid #b7d3c5; border-radius: 999px; background: var(--white); }
.combined-sales-flow span { color: var(--green); font-size: 20px; }
.combined-sales-summary blockquote { max-width: 790px; margin: 0 auto; padding-top: 26px; border-top: 1px solid #c7dbd0; }
.combined-sales-summary blockquote p { margin: 0; color: var(--green); font-size: clamp(18px, 2.4vw, 24px); font-weight: 800; line-height: 1.45; }

.closing-heading { max-width: 620px; margin: 0 auto 24px; text-align: center; }
.closing-heading h2 { margin-bottom: 8px; }
.closing-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.website-pricing-section .closing-heading { max-width: 860px; margin-bottom: 28px; }
.website-pricing-section .closing-heading > p:last-child { font-size: clamp(14px, 1.5vw, 17px); }
.closing-heading h2 > span { display: block; }
.closing-heading h2 [data-service-panel="webseiten"] strong { display: block; color: var(--green); }
.website-pricing-section > .container { width: min(calc(100% - 40px), 1220px); }
.website-price-card { width: min(100%, 620px); margin-inline: auto; padding: clamp(24px, 4vw, 34px); border: 1px solid var(--green); border-radius: 14px; background: var(--white); box-shadow: 0 12px 34px rgba(5, 54, 38, .1); }
.website-price-badge { width: fit-content; margin: 0 auto 14px; padding: 6px 14px; border-radius: 5px; color: var(--white); background: linear-gradient(110deg, #006f3c, #078444); font-size: 12px; font-weight: 800; line-height: 1.2; text-transform: uppercase; letter-spacing: .035em; }
.website-price-card h3 { max-width: 480px; margin: 0 auto 14px; font-size: clamp(24px, 3vw, 34px); line-height: 1.08; text-align: center; }
.website-price-amount { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 18px; }
.website-price-amount strong { color: var(--green); font-size: clamp(48px, 7vw, 66px); line-height: 1; }
.website-price-amount span { color: var(--ink); font-size: 18px; }
.website-price-features { margin: 0; padding: 0; list-style: none; }
.website-price-features li { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 12px; padding: 12px 4px; border-bottom: 1px solid var(--line); }
.website-price-features .ph-icon { width: 22px; height: 22px; color: var(--green); }
.website-price-features strong { display: block; margin-bottom: 2px; font-size: 14px; }
.website-price-features p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.website-price-care { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; align-items: center; margin-top: 18px; padding: 16px 18px; border: 1px solid #b8d5c7; border-radius: 10px; background: #f6faf8; }
.website-price-care > .ph-icon { width: 44px; height: 44px; color: var(--green); }
.website-price-care strong { display: block; margin-bottom: 5px; font-size: 15px; }
.website-price-care p { margin: 0; color: #394543; font-size: 12px; line-height: 1.5; }
.website-price-cta { display: flex; width: 100%; min-height: 50px; margin-top: 14px; font-size: 16px; }
.website-price-note { display: flex; justify-content: center; gap: 22px; margin: 12px 0 0; color: var(--muted); font-size: 11.5px; }
.website-price-note span + span::before { margin-right: 22px; color: #9baba4; content: "·"; }
.combined-intro-offer { display: grid; max-width: 900px; grid-template-columns: 54px minmax(0, 1fr); gap: 16px; align-items: center; margin: 0 auto 34px; padding: 19px 22px; border: 1px solid #acd2bf; border-radius: 13px; background: linear-gradient(105deg, #edf7f1, #f8fbf9); box-shadow: 0 8px 24px rgba(0, 106, 57, .08); }
.combined-intro-offer-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.combined-intro-offer-icon .ph-icon { width: 28px; height: 28px; }
.combined-intro-offer p { margin: 0; color: #384541; font-size: 12px; line-height: 1.5; }
.combined-intro-offer div > p:first-child { margin-bottom: 3px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.combined-intro-offer h3 { margin: 0 0 4px; color: var(--dark); font-size: clamp(19px, 2vw, 24px); line-height: 1.2; }
.combined-pricing-grid { display: grid; grid-auto-flow: row; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 24px; row-gap: 0; align-items: stretch; }
.combined-price-card { position: relative; display: grid; min-width: 0; overflow: hidden; grid-row: span 6; grid-template-rows: subgrid; padding: 28px 24px 0; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 8px 24px rgba(5, 54, 38, .07); }
.combined-price-card-featured { overflow: visible; border: 2px solid var(--green); background: linear-gradient(180deg, #fff 68%, #f3f8f5 100%); box-shadow: 0 14px 32px rgba(0, 106, 57, .13); }
.combined-price-badge { position: absolute; top: -16px; left: 50%; width: min(72%, 250px); margin: 0; padding: 7px 12px; border-radius: 5px; color: var(--white); background: linear-gradient(110deg, #006a39, #078444); font-size: 13px; font-weight: 800; line-height: 1.2; text-align: center; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 5px 14px rgba(0, 106, 57, .18); transform: translateX(-50%); }
.combined-price-card-featured .combined-price-card-header { padding-top: 8px; }
.combined-price-card-header { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 14px; align-items: center; }
.combined-price-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--green); background: #e4f1ea; }
.combined-price-icon .ph-icon { width: 25px; height: 25px; }
.combined-price-card h3 { margin: 0 0 3px; color: var(--dark); font-size: 20px; line-height: 1.15; text-align: left; text-transform: uppercase; }
.combined-price-card-header p { margin: 0; color: #35413d; font-size: 12px; font-weight: 700; line-height: 1.35; }
.combined-price-intro { margin-top: 16px; padding-top: 14px; border-top: 1px solid #cfe0d7; }
.combined-price-intro strong { display: block; margin-bottom: 4px; color: var(--green); font-size: 13px; }
.combined-price-intro p { margin: 0; color: #394440; font-size: 12px; line-height: 1.45; }
.combined-price-offer { width: 100%; margin: 18px 0 16px; text-align: center; }
.combined-price-old { display: flex; min-height: 38px; align-items: center; justify-content: center; gap: 8px; margin: 0 auto 7px; padding: 7px 10px; border: 1px solid #e9c5c0; border-radius: 8px; color: #743d37; background: #fff6f4; font-size: 16px; font-weight: 800; line-height: 1.25; }
.combined-price-old span { color: #81433d; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.combined-price-old del { text-decoration-color: #c43126; text-decoration-thickness: 3px; }
.combined-price-amount { display: flex; width: 100%; min-height: 54px; gap: 8px; align-items: baseline; justify-content: center; margin: 0; white-space: nowrap; }
.combined-price-amount strong { color: var(--green); font-size: clamp(40px, 4vw, 54px); line-height: 1; letter-spacing: -.035em; }
.combined-price-period { color: var(--ink); font-size: 15px; text-align: left; }
.combined-price-duration { margin: 4px 0 0; color: var(--green); font-size: 11px; font-weight: 800; line-height: 1.35; }
.combined-price-features { flex: 1; margin: 0 0 22px; padding: 0; list-style: none; }
.combined-price-features li { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 8px; align-items: start; padding: 4px 0; color: #242b29; font-size: 12.5px; line-height: 1.35; }
.combined-price-features .ph-icon { display: block; width: 16px; height: 16px; flex: 0 0 16px; color: var(--green); background-color: currentColor; -webkit-mask: url("assets/icons/check-circle.svg") center / contain no-repeat; mask: url("assets/icons/check-circle.svg") center / contain no-repeat; }
.combined-price-cta { display: flex; min-height: 46px; align-items: center; justify-content: center; margin-top: 0; padding: 9px 13px; border: 1px solid var(--green); border-radius: 7px; color: var(--green); background: var(--white); font-size: 14px; font-weight: 800; line-height: 1.25; text-align: center; text-decoration: none; }
.combined-price-cta:hover { color: #004f2a; background: var(--green-soft); }
.combined-price-cta-filled { color: var(--white); background: linear-gradient(110deg, #006a39, #078444); }
.combined-price-cta-filled:hover { color: var(--white); background: #005b31; }
.combined-price-focus { display: grid; min-height: 76px; grid-template-columns: 30px minmax(0, 1fr); gap: 10px; align-items: center; margin: 16px -24px 0; padding: 13px 18px; border-radius: 0 0 13px 13px; background: #f0f7f3; }
.combined-price-focus > .ph-icon { width: 27px; height: 27px; color: var(--green); }
.combined-price-focus p { margin: 0; color: #35413d; font-size: 11.5px; line-height: 1.4; }
.combined-price-focus strong { color: var(--green); }
.combined-pricing-assurance { grid-column: 1 / -1; margin-top: 24px; padding: 16px 20px; border: 1px solid #e0ebe5; border-radius: 12px; background: linear-gradient(100deg, #f3f8f5, #f8faf9); }
.combined-pricing-assurance > h3 { margin: 0 0 14px; color: var(--dark); font-size: 18px; text-align: center; }
.combined-pricing-assurance-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.combined-pricing-assurance-grid article { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 11px; align-items: center; padding: 2px 20px; }
.combined-pricing-assurance-grid article + article { border-left: 1px solid #ccdcd3; }
.combined-assurance-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--green); background: #dcece4; }
.combined-assurance-icon .ph-icon { width: 23px; height: 23px; }
.combined-pricing-assurance h4 { margin: 0 0 3px; color: var(--dark); font-size: 12px; }
.combined-pricing-assurance p { margin: 0; color: #4a5551; font-size: 10.5px; line-height: 1.4; }
.combined-pricing-note { grid-column: 1 / -1; max-width: 900px; margin: 16px auto 0; color: var(--muted); font-size: 11.5px; line-height: 1.5; text-align: center; }
.small-business-tax-note { max-width: 900px; margin: 20px auto 0; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }

.contact-showcase { padding: clamp(48px, 6vw, 70px) 0; background: linear-gradient(100deg, #f7f6f2 0%, #fff 72%); }
.contact-layout { max-width: 760px; text-align: center; }
.contact-copy > p:not(.eyebrow), .contact-variant > p { max-width: 650px; margin: 0 auto 28px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.trust-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 0; padding: 0; list-style: none; }
.trust-list li { display: grid; grid-template-columns: 1fr; gap: 9px; justify-items: center; text-align: center; }
.trust-icon { display: grid; width: 44px; height: 40px; place-items: center; border: 1px solid #8ab7a1; border-radius: 50%; color: var(--green); }
.trust-icon .ph-icon { width: 17px; height: 17px; }

/* A restrained hexagon motif keeps all Phosphor interface icons consistent. */
:where(.process-icon, .trust-icon) {
  --hex-border: #9dc5b1;
  --hex-fill: var(--green-soft);
  position: relative;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: var(--hex-border);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
:where(.process-icon, .trust-icon)::before {
  position: absolute;
  z-index: 0;
  inset: 1px;
  background: var(--hex-fill);
  clip-path: inherit;
  content: "";
}
:where(.process-icon, .trust-icon) .ph-icon {
  position: relative;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: #b9d5c7;
    box-shadow: 0 10px 24px rgba(5, 56, 39, .1);
    transform: translateY(-2px);
  }

}

.service-card:focus-within {
  border-color: #94bfa9;
  box-shadow: 0 10px 24px rgba(5, 56, 39, .1);
  transform: translateY(-2px);
}
.trust-list h3 { margin-bottom: 4px; font-size: 12px; }
.trust-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.contact-cta { color: var(--white); background: radial-gradient(circle at 78% 35%, #155644 0, var(--dark) 55%, #04231f 100%); }
.contact-cta-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(44px, 6vw, 72px); align-items: center; padding-block: clamp(56px, 7vw, 80px); }
.contact-cta-copy { width: min(100%, 470px); justify-self: end; }
.contact-cta h2 { max-width: 430px; margin-bottom: 18px; color: var(--white); font-size: clamp(30px, 3.5vw, 42px); line-height: 1.08; }
.contact-cta-copy > p, .contact-cta-variant > p { max-width: 360px; margin-bottom: 18px; color: #dce9e5; font-size: 13px; line-height: 1.6; }
.cta-list { margin: 0; color: var(--white); font-size: 12px; }
.cta-list li::before { background-color: #e9f5ef; }
.contact-cta-process { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(221, 239, 231, .22); }
.contact-cta-process h3 { margin-bottom: 16px; color: var(--white); font-size: 16px; }
.contact-cta-process ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.contact-cta-process li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 13px; align-items: start; padding: 12px 14px; border: 1px solid rgba(221, 239, 231, .16); border-radius: 10px; background: rgba(255, 255, 255, .045); }
.contact-cta-process li > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: var(--dark); background: #dff1e7; font-size: 10px; font-weight: 800; }
.contact-cta-process strong { display: block; margin: 1px 0 3px; color: var(--white); font-size: 13px; }
.contact-cta-process li p { margin: 0; color: #cfe1da; font-size: 11.5px; line-height: 1.5; }
.contact-cta-reassurance { display: flex; gap: 9px; align-items: center; max-width: none !important; margin: 17px 0 0 !important; color: #e5f2ec !important; font-size: 11.5px !important; }
.contact-cta-reassurance .ph-icon { width: 20px; height: 20px; flex: 0 0 auto; color: #6fe2a2; }
.contact-widget { width: 100%; min-width: 0; justify-self: start; }
.chat-widget-host {
  container-type: inline-size;
  width: 100%;
  max-width: 470px;
  min-height: 48px;
  margin: 0 auto;
  overflow: hidden;
}
.widget-fallback { padding: 10px; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); }

.faq-section { background: var(--surface); }
.faq-heading { margin-bottom: 24px; text-align: center; }
.faq-heading h2 { margin-bottom: 0; }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: start; }
.faq-list details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.faq-list details[open] { border-color: #a5c8b7; }
.faq-list summary {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 48px 14px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  background-color: var(--green);
  content: "";
  -webkit-mask: url("assets/icons/plus.svg") center / contain no-repeat;
  mask: url("assets/icons/plus.svg") center / contain no-repeat;
}
.faq-list details[open] summary::after {
  -webkit-mask-image: url("assets/icons/minus.svg");
  mask-image: url("assets/icons/minus.svg");
}
.faq-list details[open] summary { color: var(--green); }
.faq-list details p { margin: 0; padding: 0 16px 18px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.site-footer { color: var(--white); background: #000; }
.footer-inner { min-height: 39px; }
.footer-inner p { margin: 0; font-size: 11px; }
.footer-inner nav { display: flex; gap: 30px; }
.footer-inner a { display: inline-flex; min-height: 28px; align-items: center; font-size: 11px; text-decoration: none; }

.service-page-hero { padding-block: clamp(64px, 9vw, 104px); background: linear-gradient(115deg, #f3f8f5 0%, #fff 72%); }
.service-page-hero-inner { max-width: 720px; text-align: center; }
.service-page-hero h1 { max-width: 700px; margin-inline: auto; }
.service-page-lead { max-width: 640px; margin: 0 auto 26px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.service-page-hero .hero-actions { justify-content: center; }
.service-page-heading { max-width: 650px; margin: 0 auto 28px; text-align: center; }
.service-page-heading p:last-child { margin-bottom: 0; color: var(--muted); }
.service-page-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-page-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.service-page-card h3 { color: var(--green); }
.service-page-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-page-cta { padding-block: clamp(50px, 7vw, 76px); color: var(--white); background: var(--dark); text-align: center; }
.service-page-cta h2 { color: var(--white); }
.service-page-cta p { max-width: 580px; margin: 0 auto 24px; color: #dce9e5; }
.service-page-cta .button { min-height: 46px; }

.legal-page { min-height: 100vh; background: var(--surface); }
.legal-content { max-width: 680px; padding-block: 60px; }
.legal-content .brand { margin-bottom: 70px; }
.legal-content h1 { margin-bottom: 24px; }
.legal-content > p { max-width: 600px; }
.legal-section { max-width: 640px; margin-bottom: 38px; }
.legal-section h2 { margin-bottom: 16px; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.2; }
.legal-section p, .legal-address { margin: 0; color: var(--muted); line-height: 1.7; }
.legal-address { font-style: normal; }
.legal-address p + p { margin-top: 22px; }
.legal-section p + p, .legal-contact, .legal-address + p { margin-top: 16px; }
.legal-list { margin: 14px 0 18px; padding-left: 22px; color: var(--muted); }
.legal-list li + li { margin-top: 5px; }
.legal-section code { overflow-wrap: anywhere; color: var(--ink); font-size: .92em; }
.legal-section a { color: var(--green); font-weight: 700; }
.legal-contact a { display: inline-flex; min-height: 24px; align-items: center; }

a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid #e2b93b; outline-offset: 3px; }

@media (max-width: 900px) {
  .combined-pricing-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .combined-price-card { display: flex; width: min(100%, 560px); min-height: 0; flex-direction: column; grid-row: auto; margin-inline: auto; }
  .combined-price-cta { margin-top: auto; }
  .combined-pricing-assurance { margin-top: 0; }
  .combined-pricing-assurance-grid { grid-template-columns: 1fr; }
  .combined-pricing-assurance-grid article { padding: 12px 4px; }
  .combined-pricing-assurance-grid article + article { border-top: 1px solid #ccdcd3; border-left: 0; }
  .combined-pricing-note { margin-top: -12px; }
}

@media (max-width: 820px) {
  :root { --gutter: 28px; }
  .service-grid { gap: 16px; }
  .goal-grid, .google-sales-intro, .website-sales-intro, .website-optimization, .website-monthly, .combined-sales-intro, .combined-care { grid-template-columns: 1fr; }
  .goal-card { max-width: 480px; min-height: 0; margin-inline: auto; }
  .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .service-card > p, .check-list, .process-copy p, .contact-copy > p:not(.eyebrow), .contact-variant > p, .contact-cta-copy > p, .contact-cta-variant > p { font-size: 12.5px; }
  .google-sales-copy, .website-sales-copy, .website-optimization-copy, .combined-sales-copy { text-align: center; }
  .google-sales-copy h2, .google-sales-copy > p:last-child, .website-sales-copy h2, .website-sales-copy > p, .website-optimization-copy h2, .website-optimization-copy > p, .combined-sales-copy h2, .combined-sales-copy > p { margin-inline: auto; }
  .google-benefits-grid, .website-delivery-grid, .combined-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .customer-question-grid, .website-study-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .combined-journey-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-list h3 { font-size: 12px; }
  .trust-list p { font-size: 11px; }
  .trust-list { gap: 10px; }
  .contact-cta-grid { gap: 28px; }
  .text-link, .footer-inner a { min-height: 44px; }
}

@media (max-width: 720px) {
  .header-inner { min-height: 62px; align-items: flex-start; flex-direction: column; gap: 13px; padding-block: 15px; }
  .nav-list { width: calc(100vw - (var(--gutter) * 2)); gap: 7px 18px; overflow-x: auto; padding-bottom: 3px; }
  .service-grid, .contact-cta-grid, .service-page-card-grid { grid-template-columns: 1fr; }
  .contact-cta-copy, .contact-widget { justify-self: center; }
  .service-card { min-height: 0; }
  .goal-picker > .container { width: 100%; }
  .goal-picker-heading { padding-inline: var(--gutter); }
  .goal-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px var(--gutter) 18px;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .goal-grid::-webkit-scrollbar { display: none; }
  .goal-card { max-width: none; flex: 0 0 84vw; margin-inline: 0; scroll-snap-align: center; }
  .goal-trust-strip { width: calc(100% - (var(--gutter) * 2)); margin-inline: var(--gutter); }
  .trust-list { grid-template-columns: 1fr; gap: 16px; }
  .trust-list h3 { font-size: 13px; }
  .contact-cta-grid { gap: 24px; }
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }
  .split-heading,
  .service-card,
  .service-card-select,
  .process-copy,
  .closing-heading,
  .faq-heading,
  .faq-list details,
  .contact-copy,
  .contact-cta-copy { text-align: center; }
  .split-heading, .service-grid, .contact-cta-grid { grid-template-columns: 1fr; }
  .service-page-hero { padding-block: 52px; }
  .service-page-lead { font-size: 15px; }
  .service-page-card { padding: 22px; text-align: center; }
  .hero-actions { justify-content: center; }
  h1 { font-size: clamp(32px, 9.5vw, 42px); }
  h2 { font-size: 24px; }
  h3 { font-size: 17px; }
  .split-heading > p, .contact-copy > p:not(.eyebrow), .contact-variant > p, .contact-cta-copy > p, .contact-cta-variant > p { margin-inline: auto; }
  .split-heading > p, .service-card > p, .process-copy p, .closing-heading > p:last-child, .contact-copy > p:not(.eyebrow), .contact-variant > p, .contact-cta-copy > p, .contact-cta-variant > p { font-size: 14px; }
  .split-heading { gap: 10px; }
  .service-card { padding: 22px; }
  .goal-picker-heading { margin-bottom: 28px; }
  .goal-hero-badge { min-height: 34px; margin-bottom: 14px; padding: 7px 14px; font-size: 12px; }
  .goal-picker-heading h1 { font-size: 28px; }
  .goal-picker-heading h1 br { display: none; }
  .goal-picker-heading > p:last-child { font-size: 14px; }
  .goal-card { padding: 12px 12px 14px; }
  .goal-card-visual { height: 190px; }
  .goal-card .service-card-title { font-size: 23px; }
  .goal-card-copy > p { font-size: 14px; }
  .goal-select-button { width: 100%; font-size: 14px; }
  .goal-trust-strip { grid-template-columns: 1fr; gap: 0; border-radius: 18px; }
  .goal-trust-strip li { min-height: 58px; padding: 8px; }
  .goal-trust-strip li + li { border-top: 1px solid var(--line); border-left: 0; }
  .service-card .check-list, .cta-list { width: fit-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .service-card .text-link { justify-content: center; }
  .check-list, .text-link { font-size: 14px; }
  .text-link { min-height: 44px; }
  .process-heading { margin-bottom: 34px; }
  .process-list { grid-template-columns: 1fr; row-gap: 44px; }
  .process-top { justify-content: center; gap: 12px; margin-bottom: 12px; }
  .process-line { display: none; }
  .process-copy { padding-left: 0; }
  .process-copy h3 { margin: 0 0 10px; }
  .process-copy p { max-width: 380px; margin-inline: auto; }
  .pricing-section { padding-block: 56px; }
  .closing-heading { margin-bottom: 30px; }
  .website-price-card { padding: 22px 18px; text-align: left; }
  .website-price-card h3 { font-size: 26px; }
  .website-price-amount strong { font-size: 52px; }
  .website-price-features li { padding-block: 12px; }
  .website-price-care { grid-template-columns: 38px minmax(0, 1fr); padding: 14px; }
  .website-price-care > .ph-icon { width: 36px; height: 36px; }
  .website-price-note { align-items: center; flex-direction: column; gap: 3px; }
  .website-price-note span + span::before { display: none; }
  .combined-intro-offer { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; padding: 17px; text-align: left; }
  .combined-intro-offer-icon { width: 44px; height: 44px; }
  .combined-intro-offer-icon .ph-icon { width: 23px; height: 23px; }
  .combined-price-card { padding: 28px 22px 0; }
  .combined-price-card-featured { padding-top: 36px; }
  .combined-price-amount strong { font-size: 46px; }
  .combined-price-features li { font-size: 14px; }
  .combined-price-focus { margin-inline: -22px; }
  .google-sales-section > .container, .website-sales-section > .container, .combined-sales-section > .container { width: calc(100% - 40px); }
  .google-sales-copy h2 { font-size: 38px; }
  .google-sales-copy > p:last-child, .website-sales-copy > p:last-child, .combined-sales-copy > p:last-child { font-size: 15px; }
  .google-sales-pillar, .website-sales-service { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 17px; text-align: left; }
  .google-sales-icon { width: 42px; height: 42px; }
  .google-sales-icon .ph-icon { width: 22px; height: 22px; }
  .google-benefits-grid, .customer-question-grid, .website-study-grid, .website-delivery-grid, .combined-channel-system, .combined-journey-list, .combined-benefits-grid, .combined-delivery-grid { grid-template-columns: 1fr; }
  .google-benefit-card { padding: 22px 18px 19px; text-align: left; }
  .google-sales-summary, .website-study, .combined-sales-summary { padding: 34px 18px; }
  .google-sales-flow, .combined-sales-flow { align-items: stretch; flex-direction: column; }
  .google-sales-flow span, .combined-sales-flow span { transform: rotate(90deg); }
  .website-sales-copy h2, .combined-sales-copy h2 { font-size: 36px; }
  .website-sales-icon { width: 42px; height: 42px; }
  .customer-question-card, .website-delivery-grid article { text-align: left; }
  .website-optimization-steps li { grid-template-columns: 40px minmax(0, 1fr); padding: 16px; text-align: left; }
  .website-monthly { padding: 34px 18px; text-align: center; }
  .website-monthly-list { text-align: left; }
  .combined-channel-card { min-height: 0; text-align: left; }
  .combined-channel-arrow { margin-inline: auto; transform: rotate(90deg); }
  .combined-channel-result { grid-column: auto; }
  .combined-journey-list h3 { min-height: 0; }
  .combined-journey-list li, .combined-benefits-grid article { text-align: left; }
  .combined-delivery-title h3 { font-size: 20px; }
  .combined-delivery-connection { grid-template-columns: 30px minmax(0, 1fr); padding: 16px; text-align: left; }
  .combined-care { padding: 34px 18px; text-align: center; }
  .combined-care-list { text-align: left; }
  .contact-showcase { padding-block: 56px; }
  .trust-list p { font-size: 13px; }
  .contact-cta .container { width: calc(100% - 20px); }
  .contact-cta-grid { gap: 28px; padding-block: 52px; }
  .contact-cta-copy { padding-inline: 10px; }
  .contact-cta h2 { margin-inline: auto; }
  .contact-cta-process { text-align: left; }
  .contact-cta-reassurance { justify-content: center; text-align: left; }
  .cta-list { font-size: 14px; }
  .faq-heading { margin-bottom: 20px; }
  .faq-list { gap: 10px; }
  .faq-list summary { min-height: 62px; justify-content: center; padding-inline: 48px; font-size: 15px; }
  .faq-list details p { font-size: 14px; }
  .footer-inner a { display: inline-flex; min-height: 44px; align-items: center; }
  .legal-contact a { min-height: 44px; }
}

@media (max-width: 400px) {
  .nav-list { justify-content: space-between; gap: 8px; overflow-x: visible; }
  .nav-list a { font-size: 12px; }
  .nav-list .button-small { min-width: 0; padding-inline: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .combined-price-amount strong { font-size: 42px; }
  .combined-price-period { font-size: 13px; }
  .combined-price-card-header { grid-template-columns: 42px minmax(0, 1fr); gap: 11px; }
  .combined-price-icon { width: 42px; height: 42px; }
  .footer-inner { align-items: center; flex-direction: column; gap: 8px; padding-block: 14px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
