:root {
  --navy: #071b3a;
  --blue: #07306b;
  --blue-2: #0b4aa2;
  --light-blue: #eef6ff;
  --orange: #f27a1a;
  --orange-soft: #fff2e8;
  --text: #14213d;
  --muted: #5f6c80;
  --line: #e4eaf2;
  --card: #ffffff;
  --bg: #ffffff;
  --soft: #f7f9fc;
  --shadow: 0 20px 55px rgba(7, 27, 58, 0.10);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 6%, rgba(7, 74, 162, .08), transparent 26rem),
    radial-gradient(circle at 5% 18%, rgba(242, 122, 26, .05), transparent 20rem),
    var(--bg);
  line-height: 1.55;
}

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

img, svg {
  max-width: 100%;
}

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

.narrow {
  max-width: 980px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--blue);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,234,242,.7);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--navy);
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-block;
}

.brand-mark span {
  position: absolute;
  width: 22px;
  height: 28px;
  border-radius: 6px;
  background: var(--blue);
  box-shadow: 0 8px 16px rgba(7, 48, 107, .18);
}

.brand-mark span:nth-child(1) {
  left: 2px;
  top: 2px;
}

.brand-mark span:nth-child(2) {
  right: 3px;
  bottom: 2px;
  background: var(--orange);
  border: 3px solid white;
}


.logo-brand {
  flex: 0 0 auto;
}

.site-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
}

.site-logo-footer {
  height: 38px;
  max-width: 245px;
}

.wds-note {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255,255,255,.66);
}

.wds-note a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wds-note a:hover {
  color: #fff;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.main-nav a {
  opacity: .9;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-icon {
  width: 17px;
  height: 17px;
  transition: transform .18s ease;
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid rgba(11, 74, 162, .45);
  outline-offset: 2px;
  border-radius: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #004ab0);
  color: white;
  box-shadow: 0 12px 22px rgba(7, 48, 107, .22);
}

.btn-primary:hover {
  box-shadow: 0 18px 28px rgba(7, 48, 107, .28);
}

.btn-outline {
  border-color: rgba(7, 48, 107, .35);
  color: var(--blue);
  background: white;
}

.btn-large {
  padding: 16px 24px;
  border-radius: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
  border-radius: 99px;
}

.hero {
  padding: 72px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--light-blue);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -0.06em;
  margin: 0;
  color: var(--navy);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 22px;
  font-size: 21px;
  color: var(--muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4f8fd;
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--navy);
}

.hero-badges svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-checks,
.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.hero-checks li,
.contact-points li {
  position: relative;
  padding-left: 24px;
}

.hero-checks li::before,
.contact-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.soft-circle {
  position: absolute;
  inset: 30px 0 auto auto;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: var(--light-blue);
  z-index: 0;
}

.laptop {
  position: absolute;
  left: 0;
  top: 60px;
  width: 520px;
  z-index: 2;
}

.laptop-screen {
  background: #0f172a;
  border: 12px solid #111827;
  border-bottom-width: 18px;
  border-radius: 20px 20px 12px 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mini-header {
  height: 38px;
  background: white;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  font-size: 10px;
  color: var(--muted);
}

.mini-header strong {
  color: var(--blue);
}

.mini-page {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 18px;
  background: #f7f9fc;
  padding: 32px;
  min-height: 250px;
}

.mini-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  font-weight: 900;
  margin: 0 0 8px;
}

.mini-page h2 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.05;
  font-size: 30px;
  letter-spacing: -.05em;
}

.mini-page p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.mini-page button {
  border: none;
  background: var(--orange);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 900;
}

.mini-photo {
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(7,48,107,.25), rgba(242,122,26,.12)),
    linear-gradient(45deg, #cdd6e2, #f5efe9);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.laptop-base {
  width: 78%;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(90deg, #9aa4b2, #dfe4eb, #9aa4b2);
  border-radius: 0 0 24px 24px;
}

.phone {
  position: absolute;
  right: 10px;
  top: 112px;
  width: 170px;
  min-height: 300px;
  background: white;
  border: 9px solid #121826;
  border-radius: 30px;
  z-index: 4;
  box-shadow: 0 20px 48px rgba(7, 27, 58, .18);
  padding: 22px 14px 14px;
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 5px;
  border-radius: 99px;
  background: #d8dee8;
}

.phone h3 {
  margin: 12px 0 14px;
  font-size: 17px;
  color: var(--navy);
}

.phone-row {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #f5f8fc;
  border-radius: 12px;
  margin-bottom: 8px;
}

.phone-row span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--light-blue);
}

.phone-row strong {
  display: block;
  font-size: 11px;
  color: var(--navy);
}

.phone-row small {
  display: block;
  font-size: 9px;
  color: var(--muted);
}

.floating-card {
  position: absolute;
  left: 170px;
  bottom: 20px;
  width: 350px;
  background: white;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.floating-card span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--orange);
  font-weight: 900;
  flex: 0 0 auto;
}

.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.15;
}

.floating-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 58px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.audience-card,
.portfolio-card,
.price-card,
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 26px rgba(7, 27, 58, .045);
}

.audience-card,
.portfolio-card,
.price-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.audience-card:hover,
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 27, 58, .09);
}

.price-card:hover {
  box-shadow: 0 18px 44px rgba(7, 27, 58, .10);
}

.price-card.featured:hover {
  box-shadow: 0 26px 60px rgba(242, 122, 26, .18);
}

.audience-card {
  padding: 28px 16px;
  text-align: center;
}

.line-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--light-blue);
  color: var(--blue-2);
}

.line-icon svg {
  width: 28px;
  height: 28px;
}

.audience-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
}

.steps-section {
  background: linear-gradient(180deg, rgba(247,249,252,.55), rgba(255,255,255,0));
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: start;
}

.step {
  text-align: center;
  padding: 0 8px;
}

.step-bubble {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--blue-2);
  display: grid;
  place-items: center;
}

.step-bubble svg {
  width: 32px;
  height: 32px;
}

.step-number {
  position: absolute;
  left: -6px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  border: 3px solid white;
  box-sizing: content-box;
}

.step-arrow {
  align-self: start;
  margin-top: 26px;
  color: #c4cfdd;
}

.step-arrow svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -.02em;
}

.step p {
  margin: 0 auto;
  max-width: 290px;
  color: var(--muted);
  font-size: 15px;
}

.portfolio-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -.025em;
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-section {
  background: var(--soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, #fff7f0, #fffdfb);
  box-shadow: 0 22px 54px rgba(242, 122, 26, .14);
  transform: translateY(-8px);
}

.ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  padding: 7px 18px;
  border-radius: 0 0 12px 12px;
}

.price-card.featured h3 {
  margin-top: 20px;
}

.price-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -.04em;
  text-align: center;
}

.price {
  font-size: 46px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.06em;
  margin-bottom: 22px;
  text-align: center;
}

.price span {
  font-size: 17px;
  color: var(--muted);
  letter-spacing: 0;
}

.price-card ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: var(--text);
  font-weight: 650;
}

.price-card .btn {
  width: 100%;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: white;
  background: var(--blue);
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
}

.pricing-note {
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-weight: 750;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 30px 26px;
  border-left: 1px solid var(--line);
}

.benefit-item:first-child {
  border-left: none;
  padding-left: 0;
}

.benefit-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--blue-2);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-item h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -.02em;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.portfolio-section {
  background: linear-gradient(180deg, #fff, #f7f9fc);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card {
  padding: 18px;
}

.portfolio-preview {
  height: 185px;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f7f9fc;
  display: flex;
  flex-direction: column;
}

.pp-bar {
  flex: 0 0 auto;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 9px 12px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.pp-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dbe3ee;
}

.pp-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  padding: 16px;
  min-height: 0;
}

.pp-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
}

.pp-label {
  font-size: 8.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-2);
}

.pp-title {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.03em;
  color: var(--navy);
  line-height: 1.1;
}

.pp-line {
  width: 90%;
  height: 5px;
  border-radius: 99px;
  background: #dde5ef;
}

.pp-line.short {
  width: 62%;
}

.pp-btn {
  margin-top: auto;
  font-size: 9.5px;
  font-weight: 900;
  color: white;
  background: var(--orange);
  padding: 6px 10px;
  border-radius: 6px;
}

.pp-photo {
  border-radius: 10px;
  min-height: 0;
}

.portfolio-preview.construction .pp-photo {
  background:
    linear-gradient(135deg, rgba(7,48,107,.5), rgba(7,48,107,.06)),
    repeating-linear-gradient(45deg, #e8eef6 0 14px, #d9e2ee 14px 28px);
}

.portfolio-preview.beauty .pp-photo {
  background:
    radial-gradient(circle at 75% 25%, rgba(242,122,26,.4), transparent 70px),
    linear-gradient(135deg, #ffe9d6, #eef6ff);
}

.portfolio-preview.beauty .pp-btn {
  background: var(--blue-2);
}

.portfolio-preview.service .pp-photo {
  background:
    linear-gradient(135deg, rgba(7,74,162,.32), rgba(242,122,26,.14)),
    linear-gradient(90deg, #eaf1f9, #ffffff);
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 26px rgba(7,27,58,.045);
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: none;
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 850;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  background: #fafcff;
}

.faq-chev {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--blue);
  transition: transform .25s ease;
}

details[open] .faq-chev {
  transform: rotate(180deg);
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 78px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
  background: var(--light-blue);
  border: 1px solid #dcecff;
  border-radius: 28px;
  padding: 42px;
}

.contact-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.contact-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.contact-points {
  display: grid;
  gap: 12px;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e0eb;
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(7,74,162,.55);
  box-shadow: 0 0 0 4px rgba(7,74,162,.1);
}

.checkbox {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 650 !important;
  color: var(--muted) !important;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  margin: -4px 0 0;
  color: #9a4c0f;
  font-size: 13px;
  font-weight: 750;
}

.site-footer {
  background: var(--navy);
  color: white;
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  color: white;
  font-size: 21px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.78);
  font-weight: 750;
}

.copyright {
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

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

  .hero-visual {
    min-height: 440px;
    max-width: 620px;
  }

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

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }

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

@media (max-width: 840px) {
  .nav-toggle {
    display: block;
  }

  
.logo-brand {
  flex: 0 0 auto;
}

.site-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
}

.site-logo-footer {
  height: 38px;
  max-width: 245px;
}

.wds-note {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255,255,255,.66);
}

.wds-note a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wds-note a:hover {
  color: #fff;
}

.main-nav {
    position: absolute;
    inset: 86px 20px auto;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: var(--light-blue);
  }

  .hero {
    padding-top: 44px;
  }

  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .step-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .price-card.featured {
    transform: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 20px;
  }

  .site-logo {
    height: 38px;
    max-width: 220px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-badges span {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 20px;
  }

  .soft-circle {
    display: none;
  }

  .laptop,
  .phone,
  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .laptop {
    margin-bottom: 18px;
  }

  .phone {
    max-width: 230px;
    margin: 0 auto 18px;
  }

  .floating-card {
    left: auto;
    bottom: auto;
  }

  .mini-page {
    grid-template-columns: 1fr;
  }

  .mini-photo {
    display: none;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    border-block: none;
  }

  .benefit-item {
    border-left: none;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:last-child {
    border-bottom: none;
  }

  .section {
    padding: 42px 0;
  }

  .contact-grid {
    padding: 24px;
    border-radius: 22px;
  }
}

@media (max-width: 430px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 76px;
  }

  
.logo-brand {
  flex: 0 0 auto;
}

.site-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
}

.site-logo-footer {
  height: 38px;
  max-width: 245px;
}

.wds-note {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255,255,255,.66);
}

.wds-note a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wds-note a:hover {
  color: #fff;
}

.main-nav {
    top: 76px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .price {
    font-size: 40px;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

.contact-copy .eyebrow {
  background: white;
  box-shadow: 0 4px 12px rgba(7, 27, 58, .06);
}


/* --- MOBILE OVERFLOW FIXES 2026-06-11 --- */
html,
body {
  overflow-x: hidden;
}

.logo-brand {
  min-width: 0;
}

.section-heading,
.portfolio-card,
.portfolio-preview,
.pp-body,
.pp-copy,
.contact-grid,
.hero-copy,
.hero-visual {
  min-width: 0;
}

.section-heading h2 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .header-inner {
    gap: 12px;
    justify-content: space-between;
  }

  .logo-brand {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .site-logo {
    height: 34px;
    width: auto;
    max-width: calc(100vw - 110px);
  }

  .section-heading h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .floating-card {
    padding: 16px;
  }

  .floating-card strong {
    font-size: 16px;
  }

  .floating-card p {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 10px;
  }

  .site-logo {
    height: 30px;
    width: auto;
    max-width: calc(100vw - 92px);
  }

  .section-heading h2 {
    font-size: 29px;
    line-height: 1.14;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-text,
  .section-heading p {
    font-size: 16px;
  }
}


/* --- ABOUT + PORTFOLIO DEMO UPDATE 2026-06-11 --- */
.about-section {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 26px;
  align-items: stretch;
}

.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 12px 34px rgba(7, 27, 58, .06);
}

.about-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.about-card p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 17px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  align-items: start;
  box-shadow: 0 8px 26px rgba(7, 27, 58, .045);
}

.about-points span {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--light-blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 15px;
}

.about-points h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -.025em;
}

.about-points p {
  margin: 0;
  color: var(--muted);
}

.portfolio-link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.demo-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.portfolio-link:hover .demo-link {
  color: var(--orange);
}

/* --- DEMO PAGES --- */
.demo-body {
  background: #ffffff;
}

.demo-topbar {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  padding: 10px 0;
}

.demo-topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.demo-topbar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.demo-site-header {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
}

.demo-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.demo-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.03em;
  margin-right: auto;
}

.demo-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--blue);
  font-weight: 950;
}

.demo-logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: -3px;
}

.demo-nav {
  display: flex;
  gap: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.demo-hero {
  padding: 72px 0 54px;
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 52px;
  align-items: center;
}

.demo-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.065em;
}

.demo-hero p {
  color: var(--muted);
  font-size: 19px;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-blue);
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 18px;
}

.demo-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin: 24px 0 26px;
}

.demo-highlights span {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.demo-photo-wrap {
  position: relative;
}

.demo-photo {
  min-height: 390px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.65);
  overflow: hidden;
}

.demo-photo.renovatie {
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(7,48,107,.05)),
    linear-gradient(115deg, #f7f3ec 0 35%, #dde7f1 35% 56%, #fafafa 56% 100%);
}

.demo-photo.beauty {
  background:
    radial-gradient(circle at 72% 30%, rgba(242,122,26,.34), transparent 130px),
    linear-gradient(135deg, #fff5eb, #eef6ff);
}

.demo-photo.clean {
  background:
    linear-gradient(135deg, rgba(7,74,162,.18), rgba(242,122,26,.12)),
    linear-gradient(90deg, #f3f7fb, #ffffff);
}

.review-card {
  position: absolute;
  right: 28px;
  bottom: -24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  min-width: 220px;
}

.review-card strong {
  display: block;
  color: var(--navy);
}

.stars {
  color: #f6b21a;
  letter-spacing: 2px;
}

.demo-section {
  padding: 58px 0;
}

.demo-section.soft {
  background: var(--soft);
}

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

.demo-service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 26px rgba(7,27,58,.045);
}

.demo-service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--light-blue);
  color: var(--blue-2);
  border-radius: 16px;
  margin-bottom: 16px;
}

.demo-service-icon svg {
  width: 25px;
  height: 25px;
}

.demo-service-card h3 {
  color: var(--navy);
  margin: 0 0 8px;
}

.demo-service-card p {
  color: var(--muted);
  margin: 0;
}

.demo-cta {
  background: var(--light-blue);
  border: 1px solid #dcecff;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.demo-cta h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.demo-cta p {
  color: var(--muted);
  margin: 0;
}

.demo-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 28px 0;
}

.demo-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .about-grid,
  .demo-hero-grid,
  .demo-cta {
    grid-template-columns: 1fr;
  }

  .demo-nav {
    display: none;
  }

  .demo-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-card {
    padding: 24px;
  }

  .about-points article {
    grid-template-columns: 1fr;
  }

  .demo-topbar .container {
    display: block;
  }

  .demo-header-inner {
    min-height: 70px;
  }

  .demo-logo {
    font-size: 18px;
  }

  .demo-logo-mark {
    width: 38px;
    height: 38px;
  }

  .demo-hero {
    padding: 42px 0;
  }

  .demo-hero h1 {
    font-size: 38px;
  }

  .demo-photo {
    min-height: 300px;
  }

  .review-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .demo-services {
    grid-template-columns: 1fr;
  }

  .demo-actions .btn,
  .demo-cta .btn {
    width: 100%;
  }

  .demo-cta {
    padding: 24px;
  }
}


/* ===== Demo pages: extended sections ===== */

.demo-about-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) 1.1fr;
  gap: 52px;
  align-items: center;
}

.demo-about-photo {
  min-height: 420px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.65);
}

.demo-about-photo.renovatie-b {
  background:
    linear-gradient(160deg, rgba(7,48,107,.16), transparent 60%),
    repeating-linear-gradient(90deg, #efe9df 0 26px, #e6dfd3 26px 52px),
    #efe9df;
}

.demo-about-photo.beauty-b {
  background:
    radial-gradient(circle at 30% 75%, rgba(242,122,26,.28), transparent 150px),
    linear-gradient(160deg, #fff1e2, #f2f7ff);
}

.demo-about-photo.clean-b {
  background:
    linear-gradient(135deg, rgba(11,74,162,.16), transparent 55%),
    linear-gradient(180deg, #f3f8fd, #e7eff8);
}

.demo-about-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.demo-about-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16.5px;
}

.demo-points {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.demo-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 750;
  color: var(--navy);
  font-size: 15px;
}

.demo-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 14px 34px;
  justify-content: start;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.demo-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--navy);
  line-height: 1;
}

.demo-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.demo-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.demo-project {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(7,27,58,.045);
  transition: transform .2s ease, box-shadow .2s ease;
}

.demo-project:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7,27,58,.09);
}

.demo-project-photo {
  height: 190px;
}

.demo-project-photo.proj-reno-1 {
  background:
    linear-gradient(150deg, rgba(7,48,107,.30), transparent 60%),
    linear-gradient(90deg, #e9f1f8 0 50%, #dde8f2 50% 100%);
}

.demo-project-photo.proj-reno-2 {
  background:
    linear-gradient(200deg, rgba(242,122,26,.18), transparent 55%),
    repeating-linear-gradient(0deg, #f0ebe2 0 22px, #e7e1d5 22px 44px);
}

.demo-project-photo.proj-reno-3 {
  background:
    linear-gradient(135deg, rgba(7,74,162,.22), transparent 55%),
    repeating-linear-gradient(90deg, #eef3f9 0 30px, #e3ebf4 30px 60px);
}

.demo-project figcaption {
  padding: 16px 18px 18px;
}

.demo-project strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  letter-spacing: -.02em;
}

.demo-project span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13.5px;
}

.demo-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.demo-pricecard {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 26px rgba(7,27,58,.045);
}

.demo-pricecard h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -.025em;
}

.demo-pricecard ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.demo-pricecard li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14.5px;
}

.demo-pricecard li span {
  color: var(--text);
  font-weight: 650;
}

.demo-pricecard li i {
  flex: 1;
  border-bottom: 2px dotted #d3dce8;
  transform: translateY(-3px);
}

.demo-pricecard li strong {
  color: var(--navy);
  font-weight: 850;
  white-space: nowrap;
}

.demo-price-note {
  margin: 20px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
}

.demo-worksteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.demo-workstep {
  position: relative;
  text-align: center;
  padding: 0 14px;
}

.demo-workstep-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--blue-2);
}

.demo-workstep-icon svg {
  width: 30px;
  height: 30px;
}

.demo-workstep-num {
  position: absolute;
  top: 50px;
  left: calc(50% - 46px);
  z-index: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 12.5px;
  font-weight: 900;
  display: grid;
  place-items: center;
  border: 3px solid white;
  box-sizing: content-box;
}

.demo-workstep h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -.02em;
}

.demo-workstep p {
  margin: 0 auto;
  max-width: 290px;
  color: var(--muted);
  font-size: 14.5px;
}

.demo-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.demo-review {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 26px rgba(7,27,58,.045);
  display: flex;
  flex-direction: column;
}

.demo-review blockquote {
  margin: 12px 0 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}

.demo-review blockquote::before {
  content: "“";
}

.demo-review blockquote::after {
  content: "”";
}

.demo-review figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
}

.demo-review figcaption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.demo-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: start;
  background: var(--light-blue);
  border: 1px solid #dcecff;
  border-radius: 28px;
  padding: 36px;
}

.demo-contact-info {
  display: grid;
  gap: 14px;
}

.demo-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.demo-contact-row svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--blue-2);
  margin-top: 2px;
}

.demo-contact-row strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.demo-contact-row span {
  color: var(--muted);
  font-size: 14px;
}

.demo-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: 0 8px 26px rgba(7,27,58,.045);
}

.demo-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--navy);
  font-size: 13.5px;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid #d7e0eb;
  border-radius: 11px;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  outline: none;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: rgba(7,74,162,.55);
  box-shadow: 0 0 0 4px rgba(7,74,162,.1);
}

.demo-form-sent {
  display: none;
  margin: 0;
  color: #1d7a3e;
  font-weight: 800;
  font-size: 14px;
}

.demo-form.is-sent .demo-form-sent {
  display: block;
}

.demo-form.is-sent button {
  opacity: .55;
  pointer-events: none;
}

.demo-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 14px 40px;
  align-items: center;
}

.demo-footer-name {
  color: white;
  font-size: 18px;
  letter-spacing: -.02em;
}

.demo-footer-grid > div p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.demo-footer-grid nav {
  display: flex;
  gap: 22px;
  font-weight: 750;
  font-size: 14px;
}

.demo-footer-grid nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

.demo-footer-grid nav a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.demo-disclaimer {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

@media (max-width: 980px) {
  .demo-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .demo-about-photo {
    min-height: 280px;
  }

  .demo-projects,
  .demo-prices,
  .demo-reviews,
  .demo-worksteps {
    grid-template-columns: 1fr;
  }

  .demo-worksteps {
    gap: 30px;
  }

  .demo-contact-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .demo-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .demo-footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .demo-footer-grid nav {
    flex-wrap: wrap;
  }
}


/* --- FINAL MERGE: FOUNDER PHOTO + V3 DEMOS 2026-06-11 --- */

/* More compact nav because final menu has Portfolio + O mnie */
.main-nav {
  gap: 24px;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }
}

/* Founder photo section - final */
.founder-section {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 48px rgba(7, 27, 58, .07);
  overflow: hidden;
}

.founder-photo-card {
  position: relative;
  min-height: 500px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 22px 58px rgba(7, 27, 58, .18);
}

.founder-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,27,58,0) 54%, rgba(7,27,58,.45) 100%),
    radial-gradient(circle at 18% 10%, rgba(11,74,162,.14), transparent 38%);
  pointer-events: none;
}

.founder-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: 48% 21%;
  display: block;
}

.founder-content {
  min-width: 0;
  padding: 6px 6px 6px 0;
}

.founder-content h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -.058em;
  max-width: 820px;
}

.founder-content p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 17px;
  max-width: 820px;
}

.founder-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 18px;
}

.founder-points article {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px;
}

.founder-points strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.founder-points span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.founder-note {
  display: inline-block;
  margin-top: 6px !important;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--blue) !important;
  font-weight: 800;
  font-size: 14px !important;
}

.founder-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hide old about-grid visual behavior if any old classes remain in CSS. */
.about-grid,
.about-points,
.about-card {
  min-width: 0;
}

/* Portfolio cards now have real demo links */
.portfolio-link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.demo-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.portfolio-link:hover .demo-link {
  color: var(--orange);
}

/* Mobile polish */
@media (max-width: 980px) {
  .founder-section {
    grid-template-columns: 1fr;
  }

  .founder-photo-card,
  .founder-photo-card img {
    min-height: 450px;
  }

  .founder-content {
    padding: 0;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .founder-section {
    padding: 22px;
    border-radius: 24px;
    gap: 24px;
  }

  .founder-photo-card,
  .founder-photo-card img {
    min-height: 380px;
  }

  .founder-content h2 {
    font-size: 31px;
  }

  .founder-content p {
    font-size: 16px;
  }

  .founder-note {
    border-radius: 18px;
  }
}

@media (max-width: 430px) {
  .founder-photo-card,
  .founder-photo-card img {
    min-height: 330px;
  }
}


/* --- PLACEHOLDER VISUALS UPDATE 2026-06-11 --- */

/* Stronger portfolio visuals */
.portfolio-preview {
  background: #ffffff;
}

.portfolio-preview .pp-photo {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  overflow: hidden;
}

.portfolio-preview .pp-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.08) 100%);
}

.portfolio-preview.construction .pp-photo {
  background-image: url("assets/img/placeholder-renovatie.svg") !important;
}

.portfolio-preview.beauty .pp-photo {
  background-image: url("assets/img/placeholder-beauty.svg") !important;
}

.portfolio-preview.service .pp-photo {
  background-image: url("assets/img/placeholder-clean.svg") !important;
}

/* Better hero/demo placeholders */
.demo-photo {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.demo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(7,27,58,.06) 100%);
  pointer-events: none;
}

.demo-photo.renovatie {
  background: url("assets/img/placeholder-renovatie.svg") center/cover no-repeat !important;
}

.demo-photo.beauty {
  background: url("assets/img/placeholder-beauty.svg") center/cover no-repeat !important;
}

.demo-photo.clean {
  background: url("assets/img/placeholder-clean.svg") center/cover no-repeat !important;
}

/* Slightly polish portfolio cards */
.portfolio-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.portfolio-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(7, 27, 58, .09);
}

/* Improve small-screen preview balance */
@media (max-width: 640px) {
  .portfolio-preview {
    height: 205px;
  }

  .pp-body {
    grid-template-columns: 1fr;
  }

  .pp-photo {
    min-height: 82px;
  }

  .pp-btn {
    margin-top: 6px;
  }
}


/* --- REALISTIC MOCKUPS UPDATE 2026-06-11 --- */

.portfolio-preview .pp-photo::after,
.demo-photo::after {
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(7,27,58,.02) 100%);
}

.portfolio-preview.construction .pp-photo {
  background-image: url("assets/img/mockup-portfolio-renovatie.svg") !important;
}

.portfolio-preview.beauty .pp-photo {
  background-image: url("assets/img/mockup-portfolio-beauty.svg") !important;
}

.portfolio-preview.service .pp-photo {
  background-image: url("assets/img/mockup-portfolio-clean.svg") !important;
}

.demo-photo.renovatie {
  background: url("../../assets/img/mockup-demo-renovatie.svg") center/cover no-repeat !important;
}

.demo-photo.beauty {
  background: url("../../assets/img/mockup-demo-beauty.svg") center/cover no-repeat !important;
}

.demo-photo.clean {
  background: url("../../assets/img/mockup-demo-clean.svg") center/cover no-repeat !important;
}

.portfolio-preview {
  box-shadow: inset 0 0 0 1px rgba(7,27,58,.02);
}

.demo-photo {
  border: 1px solid rgba(7,27,58,.08);
}
