:root {
  --ink: #06121f;
  --muted: #5b6573;
  --line: #dce4ed;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #155eef;
  --blue-dark: #0b3fb8;
  --cyan: #19c2ff;
  --green: #2bd982;
  --shadow: 0 24px 70px rgba(6, 18, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(6, 18, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 18, 31, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(246, 248, 251, 0.9);
  border-bottom: 1px solid rgba(220, 228, 237, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-mark rect,
.logo-preview svg rect {
  fill: var(--ink);
}

.brand-mark .brand-m,
.logo-preview svg .brand-m {
  fill: var(--white);
}

.brand-mark .brand-spark,
.logo-preview svg .brand-spark {
  stroke: var(--cyan);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(21, 94, 239, 0.22);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 84% 18%, rgba(25, 194, 255, 0.22), transparent 32%),
    radial-gradient(circle at 8% 10%, rgba(21, 94, 239, 0.12), transparent 28%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 36px clamp(20px, 5vw, 72px) auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(21, 94, 239, 0.2);
  border-radius: 999px;
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin-bottom: 22px;
  padding: 0 14px;
  border: 1px solid rgba(21, 94, 239, 0.14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(6, 18, 31, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(43, 217, 130, 0.14);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 18, 31, 0.06);
}

.hero-stats dt {
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(220, 228, 237, 0.9);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(220, 228, 237, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow), 0 0 0 12px rgba(255, 255, 255, 0.5);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c5ced8;
}

.browser-top p {
  margin: 0 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mock-site {
  min-height: 490px;
  padding: 28px;
  background:
    radial-gradient(circle at 72% 20%, rgba(25, 194, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(21, 94, 239, 0.12), rgba(25, 194, 255, 0.12)),
    #f9fbfe;
}

.mock-nav {
  width: 58%;
  height: 18px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), #8ea4ba);
}

.mock-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.mock-panel {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mock-panel.large {
  grid-row: span 2;
  min-height: 316px;
  background:
    linear-gradient(150deg, rgba(25, 194, 255, 0.16), transparent 42%),
    var(--ink);
  color: var(--white);
}

.mock-panel span {
  display: block;
  margin-bottom: 12px;
  color: #7b8794;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-panel.large span {
  color: rgba(255, 255, 255, 0.66);
}

.mock-panel strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.mock-panel em {
  display: block;
  max-width: 180px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.mock-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mock-lines i {
  height: 14px;
  border-radius: 999px;
  background: #dce4ed;
}

.mock-lines i:nth-child(2) {
  width: 74%;
}

.mock-lines i:nth-child(3) {
  width: 54%;
}

.trust-card {
  position: absolute;
  right: -22px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 18, 31, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.mini-card {
  position: absolute;
  left: -20px;
  top: 44px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(220, 228, 237, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(6, 18, 31, 0.14);
}

.mini-card strong {
  font-size: 14px;
  font-weight: 900;
}

.mini-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(43, 217, 130, 0.16);
}

.logo-showcase,
.section,
.site-footer,
.credibility,
.final-cta {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.logo-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(25, 194, 255, 0.18), transparent 28%),
    var(--ink);
}

.logo-showcase h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.logo-showcase .section-kicker {
  color: var(--cyan);
}

.logo-preview {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 330px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.logo-preview svg {
  width: 72px;
  height: 72px;
}

.logo-preview svg rect {
  fill: var(--white);
}

.logo-preview svg .brand-m {
  fill: var(--ink);
}

.logo-preview svg .brand-spark {
  stroke: var(--blue);
}

.logo-preview strong,
.logo-preview span {
  display: block;
}

.logo-preview strong {
  font-size: 24px;
}

.logo-preview span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.credibility div {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 30px;
  background: var(--white);
}

.credibility strong {
  font-size: 19px;
  font-weight: 900;
}

.credibility span {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading p:not(.section-kicker),
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.project-grid,
.pricing-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card,
.price-card,
.service-grid article,
.audience-grid article,
.faq details,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(6, 18, 31, 0.06);
}

.project-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(6, 18, 31, 0.12);
}

.project-preview {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.42), transparent),
    var(--blue);
  background-position: center;
  background-size: cover;
}

.preview-one {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 31, 0), rgba(6, 18, 31, 0.16)),
    url("assets/case-installatiebedrijf.png");
}

.preview-two {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 31, 0), rgba(6, 18, 31, 0.18)),
    url("assets/case-coach-consultant.png");
  background-color: #06121f;
}

.preview-three {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 31, 0), rgba(6, 18, 31, 0.14)),
    url("assets/case-lokale-specialist.png");
  background-color: #0ea5e9;
}

.case-window {
  width: min(100%, 360px);
  min-height: 188px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 58px rgba(6, 18, 31, 0.22);
}

.project-preview .case-window {
  display: none;
}

.case-window > span {
  display: block;
  width: 54%;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ink);
}

.case-hero {
  height: 72px;
  margin-bottom: 14px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.3) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #155eef, #19c2ff);
}

.case-row,
.case-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.case-row i,
.case-gallery i,
.case-lines i {
  display: block;
  min-height: 32px;
  border-radius: 6px;
  background: #e9eef5;
}

.case-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.case-gallery i {
  min-height: 62px;
  background: linear-gradient(135deg, #d8f2ff, #8bdcff);
}

.case-profile {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 32%, #f4c7a1 0 16%, transparent 17%),
    radial-gradient(circle at 50% 70%, #155eef 0 31%, transparent 32%),
    #dce4ed;
}

.case-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.case-lines i {
  min-height: 10px;
  border-radius: 999px;
}

.case-lines i:nth-child(2) {
  width: 72%;
}

.case-lines i:nth-child(3) {
  width: 52%;
}

.case-button {
  width: 118px;
  height: 28px;
  border-radius: 999px;
  background: var(--blue);
}

.project-card p,
.project-card h3,
.project-card span {
  margin-left: 22px;
  margin-right: 22px;
}

.project-card p {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
}

.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 22px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.case-results div {
  padding: 14px;
  background: #fbfcfe;
}

.case-results dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-results dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 194, 255, 0.1), transparent 30%),
    var(--white);
  box-shadow: 0 16px 46px rgba(6, 18, 31, 0.06);
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.avatar-two {
  background: var(--blue);
}

.avatar-three {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.testimonial-grid blockquote {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.case-showcase {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, rgba(25, 194, 255, 0.13), transparent 28%),
    var(--white);
  box-shadow: 0 18px 52px rgba(6, 18, 31, 0.08);
}

.case-showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.case-showcase-header h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.case-controls {
  display: flex;
  gap: 10px;
}

.case-control,
.case-dots button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.case-control {
  width: 46px;
  height: 46px;
  font-size: 20px;
}

.case-control:hover,
.case-dots button.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.case-slider {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.case-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.case-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.case-browser,
.case-image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(6, 18, 31, 0.12);
}

.case-image-frame {
  display: block;
  margin: 0;
}

.case-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: top center;
}

.case-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.case-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c5ced8;
}

.case-browser-bar p {
  margin: 0 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.concept-site {
  min-height: 510px;
  padding: clamp(20px, 4vw, 42px);
}

.concept-site nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
}

.concept-site nav strong {
  margin-right: auto;
  font-size: 18px;
  font-weight: 900;
}

.concept-site nav i {
  width: 54px;
  height: 12px;
  border-radius: 999px;
  background: rgba(6, 18, 31, 0.14);
}

.concept-site section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 26px;
  align-items: center;
}

.concept-site section span,
.case-copy p {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-site h4 {
  max-width: 540px;
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.94;
  letter-spacing: 0;
}

.concept-site p {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.concept-site button {
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-weight: 900;
}

.concept-site aside {
  min-height: 190px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 18, 31, 0.14);
}

.concept-site aside b {
  display: block;
  padding: 40px 24px 4px;
  font-size: 54px;
  line-height: 1;
}

.concept-site aside small {
  display: block;
  padding: 0 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.concept-cards i,
.concept-lines i {
  display: block;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.concept-cards i {
  min-height: 80px;
}

.concept-blue {
  background:
    radial-gradient(circle at 78% 18%, rgba(25, 194, 255, 0.26), transparent 25%),
    linear-gradient(135deg, #eef5ff, #ffffff);
}

.concept-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(25, 194, 255, 0.2), transparent 28%),
    var(--ink);
}

.concept-dark nav i,
.concept-dark .concept-lines i {
  background: rgba(255, 255, 255, 0.16);
}

.concept-dark section span,
.concept-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.concept-dark button {
  background: var(--cyan);
  color: var(--ink);
}

.portrait-card {
  background:
    radial-gradient(circle at 50% 28%, #f1c7a6 0 14%, transparent 15%),
    radial-gradient(circle at 50% 70%, #155eef 0 34%, transparent 35%),
    rgba(255, 255, 255, 0.08) !important;
}

.concept-lines {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 42px;
}

.concept-lines i {
  min-height: 14px;
}

.concept-lines i:nth-child(2) {
  width: 72%;
}

.concept-lines i:nth-child(3) {
  width: 52%;
}

.concept-cyan {
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(135deg, #dff7ff, #ffffff);
}

.gallery-stack {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--white) !important;
}

.gallery-stack i {
  display: block;
  min-height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #155eef, #19c2ff);
}

.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.case-copy h3 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.case-copy > span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.case-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
}

.case-copy li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
}

.case-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.case-dots button {
  min-height: 38px;
  padding: 0 14px;
}

.services {
  background: var(--white);
}

.audience {
  background:
    radial-gradient(circle at 12% 18%, rgba(21, 94, 239, 0.08), transparent 26%),
    var(--paper);
}

.audience-grid article {
  padding: 28px;
}

.audience-grid h3 {
  margin-bottom: 12px;
}

.audience-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.price-card,
.lead-form {
  padding: 26px;
}

.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--blue);
  background: #edf4ff;
  font-weight: 900;
}

.service-grid p,
.price-card li,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-grid {
  align-items: stretch;
}

.hosting-heading {
  margin-top: 34px;
  margin-bottom: 18px;
}

.hosting-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.hosting-heading span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.maintenance-plan {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(6, 18, 31, 0.06);
}

.maintenance-plan.featured-care {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(25, 194, 255, 0.18), transparent 28%),
    var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.maintenance-plan p {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.maintenance-plan.featured-care p,
.maintenance-plan.featured-care span,
.maintenance-plan.featured-care li {
  color: rgba(255, 255, 255, 0.74);
}

.maintenance-plan strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 44px;
  line-height: 1;
}

.maintenance-plan ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.maintenance-plan li {
  color: var(--muted);
  line-height: 1.55;
}

.maintenance-plan li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
}

.maintenance-plan .button {
  margin-top: auto;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

.price-card p {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.featured p,
.price-card.featured span,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.price-card strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 48px;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
}

.price-card .button {
  margin-top: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.steps p {
  color: var(--muted);
  line-height: 1.55;
}

.payment-flow {
  background:
    radial-gradient(circle at 82% 12%, rgba(25, 194, 255, 0.14), transparent 28%),
    var(--paper);
}

.checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 20px;
}

.checkout-options {
  display: grid;
  gap: 14px;
}

.checkout-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 84px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(6, 18, 31, 0.05);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.checkout-option.active {
  border-color: rgba(21, 94, 239, 0.55);
  box-shadow: 0 18px 46px rgba(21, 94, 239, 0.12);
}

.checkout-option span {
  font-weight: 900;
}

.checkout-option strong {
  color: var(--blue);
  font-size: 15px;
}

.checkout-summary {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.checkout-summary p {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-summary dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.checkout-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-summary dt {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.checkout-summary dd {
  margin: 0;
  font-weight: 900;
}

.checkout-summary .button {
  width: 100%;
}

.disabled-payment {
  opacity: 0.82;
}

.checkout-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq details {
  padding: 24px;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(circle at 16% 18%, rgba(25, 194, 255, 0.18), transparent 28%),
    var(--ink);
}

.contact h2 {
  color: var(--white);
}

.contact .section-kicker {
  color: var(--cyan);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfe;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  width: 100%;
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.5;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-row a {
  color: var(--blue);
  font-weight: 900;
}

.form-note {
  margin: 0;
  font-size: 13px;
  text-align: center;
}

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 194, 255, 0.18), transparent 30%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.final-cta h2 {
  max-width: 940px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer > a:last-child {
  color: var(--blue);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--ink);
}

.page-hero {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 80px);
  background:
    radial-gradient(circle at 84% 18%, rgba(25, 194, 255, 0.16), transparent 30%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.content-page {
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.content-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(6, 18, 31, 0.06);
}

.content-card {
  padding: clamp(24px, 4vw, 44px);
}

.content-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 36px);
}

.content-card h3 {
  margin-top: 24px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.75;
}

.content-card ul,
.content-card ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.side-card {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.side-card h2,
.side-card h3 {
  font-size: 22px;
}

.side-card nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.side-card a {
  color: var(--muted);
  font-weight: 800;
}

.side-card a:hover {
  color: var(--blue);
}

.notice-box {
  padding: 18px;
  border: 1px solid rgba(21, 94, 239, 0.22);
  border-radius: 8px;
  background: #edf4ff;
  color: var(--ink);
}

.mini-pricing {
  display: grid;
  gap: 14px;
}

.mini-pricing article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.mini-pricing strong {
  display: block;
  font-size: 28px;
  margin: 8px 0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .contact,
  .checkout-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .project-grid,
  .pricing-grid,
  .maintenance-grid,
  .audience-grid,
  .testimonial-grid,
  .service-grid,
  .steps,
  .credibility,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-showcase,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .logo-showcase,
  .section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-stats,
  .project-grid,
  .pricing-grid,
  .maintenance-grid,
  .audience-grid,
  .testimonial-grid,
  .service-grid,
  .steps,
  .credibility,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mock-site {
    min-height: 360px;
    padding: 18px;
  }

  .case-slider {
    min-height: 760px;
  }

  .case-image-frame img {
    min-height: 320px;
  }

  .mock-grid {
    grid-template-columns: 1fr;
  }

  .mock-panel.large {
    min-height: 180px;
  }

  .trust-card {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .mini-card {
    position: static;
    margin-top: 14px;
  }

  .logo-preview {
    min-width: 0;
    width: 100%;
  }
}
