/* ════════════════════════════════════════════════════════════════
   MR HOSTLY — PAGES
   Gedeelde stijlen voor binnenpagina's (websites, chatbots,
   reserveringen, over-ons, blog, contact). Zelfstandig: geen
   afhankelijkheid van home.css. Huisstijl-tokens uit style.css.
   Licht↔donker-afwisseling zoals de homepage. Respecteert
   prefers-reduced-motion (globale regel in style.css).
════════════════════════════════════════════════════════════════ */

/* ═══════════ PAGE-HERO (donker — contrast met lichte content) ═══════════ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 32px 72px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero-glow {
  position: absolute;
  top: -160px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,149,58,0.20), transparent 60%);
  pointer-events: none;
  animation: pg-glow 8s ease-in-out infinite;
}
.page-hero-glow.two {
  top: auto; right: auto;
  bottom: -180px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,149,58,0.10), transparent 65%);
  animation-delay: 4s;
}
@keyframes pg-glow {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.page-crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.page-crumbs a { color: rgba(255,255,255,0.72); }
.page-crumbs a:hover { color: var(--orange); }
.page-crumbs .sep { opacity: 0.4; }

.page-hero .section-eyebrow { justify-content: center; display: inline-flex; color: var(--orange); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 8px 0 18px;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.page-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
/* knoppen op de donkere hero */
.page-hero .btn-ghost { color: var(--white); }
.page-hero .btn-ghost:hover { color: var(--orange); }

/* ═══════════ CONTENT-SECTIES (afwisseling licht / cream) ═══════════ */
.page-section { padding: 84px 32px; background: var(--white); }
.page-section.cream { background: var(--cream); }
.page-section.offwhite { background: var(--off-white); }
.page-section-inner { max-width: var(--max); margin: 0 auto; }
.page-section-inner.narrow { max-width: 760px; }

.page-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.page-head.left { margin-left: 0; margin-right: 0; text-align: left; }
.page-head .section-eyebrow { justify-content: center; display: inline-flex; }
.page-head.left .section-eyebrow { justify-content: flex-start; }
.page-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.page-head h2 em { color: var(--orange); font-style: normal; }
.page-head p { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ═══════════ PROSE (leesbare tekstblokken — over-ons, blog) ═══════════ */
.prose { max-width: 720px; margin: 0 auto; }
.prose > * + * { margin-top: 18px; }
.prose p { font-size: 16px; line-height: 1.8; color: #374151; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700; color: var(--navy);
  letter-spacing: -0.025em; line-height: 1.2;
  margin-top: 40px;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
  margin-top: 32px;
}
.prose ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { position: relative; padding-left: 28px; font-size: 16px; line-height: 1.7; color: #374151; }
.prose ul li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.prose a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--orange); }
.prose strong { color: var(--navy); font-weight: 600; }

/* ═══════════ KAARTEN-GRID (generiek) ═══════════ */
.page-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.page-cards.two { grid-template-columns: repeat(2, 1fr); }
.page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(10,23,48,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.page-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(10,23,48,0.1); }
.page-card-ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(232,149,58,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.page-card-ic[data-icon] svg { width: 24px; height: 24px; color: var(--orange-deep); }
.page-card h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.page-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════ CTA-BAND (oranje climax) ═══════════ */
.page-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  text-align: center;
  padding: 72px 32px;
}
.page-cta-inner { max-width: 640px; margin: 0 auto; }
.page-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-cta h2 em { color: var(--white); font-style: normal; }
.page-cta p { font-size: 16px; color: rgba(0,0,0,0.7); line-height: 1.6; margin-bottom: 26px; }

/* ═══════════ SPLIT (tekst + visual, twee koloms) ═══════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px); font-weight: 700;
  color: var(--navy); letter-spacing: -0.03em; line-height: 1.14; margin-bottom: 16px;
}
.split-text h2 em { color: var(--orange); font-style: normal; }
.split-text p { font-size: 16px; color: var(--muted); line-height: 1.75; }
.split-text p + p { margin-top: 14px; }
.split-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.split-list li { position: relative; padding-left: 30px; font-size: 15px; color: #374151; line-height: 1.6; }
.split-list li::before {
  content: ''; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(232,149,58,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8851A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ═══════════ PHONE-MOCKUP (VakTechLink-voorbeeld) ═══════════ */
.phone-mock {
  position: relative; width: 280px; max-width: 100%; margin: 0 auto;
  border-radius: 40px; padding: 12px;
  background: linear-gradient(160deg, #2A2A2E, #161618);
  box-shadow: 0 30px 70px rgba(10,23,48,0.28), inset 0 0 0 2px rgba(255,255,255,0.06);
}
.phone-mock::before {
  content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.18); z-index: 2;
}
.phone-mock img { display: block; width: 100%; border-radius: 30px; }
.phone-glow {
  position: absolute; inset: -10% -14% -16%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 60% 30%, rgba(232,149,58,0.22), transparent 62%);
  filter: blur(8px);
}

/* ═══════════ PRIJS-PAKKETTEN (lichte kaarten) ═══════════ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; box-shadow: 0 10px 30px rgba(10,23,48,0.05);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(10,23,48,0.1); }
.tier.featured { border-color: rgba(232,149,58,0.6); box-shadow: 0 18px 48px rgba(232,149,58,0.14); }
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--navy); font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; white-space: nowrap;
}
.tier-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.tier-price-row { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 2px; }
.tier-price-lbl { font-size: 12px; color: var(--muted); }
.tier-price { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--orange-deep); letter-spacing: -0.03em; }
.tier-period { font-size: 13px; color: var(--muted); min-height: 18px; }
.tier-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 10px 0 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border-soft); }
.tier-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-list li { position: relative; padding-left: 26px; font-size: 14px; color: #374151; line-height: 1.55; }
.tier-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.tier .btn { width: 100%; justify-content: center; margin-top: auto; }
.tiers-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 22px; line-height: 1.6; }
/* Twee smaken naast elkaar */
.tiers.duo { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
/* Los bij te boeken */
.addons { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 26px; }
.addons-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--navy); }
.addon-pill { background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--navy); }
/* Voorwaarden — zichtbaar, geen kleine lettertjes */
.voorwaarden { display: flex; align-items: flex-start; gap: 12px; max-width: 760px; margin: 24px auto 0; padding: 16px 18px; background: var(--off-white); border: 1px solid var(--border-soft); border-radius: 14px; }
.voorwaarden .ic { flex: none; width: 34px; height: 34px; border-radius: 9px; background: rgba(232,149,58,0.14); display: flex; align-items: center; justify-content: center; }
.voorwaarden .ic[data-icon] svg { width: 18px; height: 18px; color: var(--orange-deep); }
.voorwaarden p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.voorwaarden strong { color: var(--navy); }
@media (max-width: 900px) { .tiers.duo { grid-template-columns: 1fr; } }

/* ═══════════ CALCULATOR — branche-tabs (bovenop de roi-grid) ═══════════ */
.calc-tabs { display: inline-flex; gap: 6px; padding: 5px; margin: 0 auto 28px; background: rgba(15,32,68,0.06); border-radius: 50px; }
.calc-tabs.center { display: flex; justify-content: center; width: max-content; margin-left: auto; margin-right: auto; }
.calc-tab {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--navy);
  padding: 9px 18px; border-radius: 50px; transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.calc-tab:hover { color: var(--orange-deep); }
.calc-tab.active { background: var(--white); color: var(--orange-deep); box-shadow: 0 4px 12px rgba(10,23,48,0.08); }
.calc-tab:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ═══════════ LIVE DEMO (navy kaart: chat & reserveringen) ═══════════ */
.demo-wrap {
  max-width: 460px; margin: 0 auto; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 18px;
  box-shadow: 0 30px 70px rgba(10,23,48,0.25);
}
.demo-bar { display: flex; align-items: center; gap: 8px; padding: 4px 8px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 14px; }
.demo-dot { width: 9px; height: 9px; border-radius: 50%; }
.demo-dot.r { background: #ff5f57; } .demo-dot.y { background: #febc2e; } .demo-dot.g { background: #28c840; }
.demo-bar-title { margin-left: 6px; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 7px; }
.demo-bar-title .ic[data-icon] svg { width: 15px; height: 15px; color: var(--orange); }
.demo-live { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: var(--orange); }
.demo-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #28c840; box-shadow: 0 0 0 3px rgba(40,200,64,0.18); }

/* chat-demo (hergebruikt .tool-msg/.tool-typing/.tool-caret uit home.css) */
.dchat-body { display: flex; flex-direction: column; gap: 9px; min-height: 240px; max-height: 320px; overflow-y: auto; padding: 4px; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.2) transparent; }
.dchat-body::-webkit-scrollbar { width: 6px; }
.dchat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }
.dchat-foot { margin-top: 12px; }
.dchat-suggest { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.dchat-chip {
  border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); color: var(--white);
  font-family: var(--font-body); font-size: 12.5px; padding: 7px 12px; border-radius: 50px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.dchat-chip:hover { background: rgba(232,149,58,0.12); border-color: rgba(232,149,58,0.5); transform: translateY(-1px); }
.dchat-input { display: flex; gap: 8px; }
.dchat-input input {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px; padding: 11px 16px; color: var(--white); font-family: var(--font-body); font-size: 14px;
}
.dchat-input input::placeholder { color: rgba(255,255,255,0.45); }
.dchat-input input:focus-visible { outline: 2px solid var(--orange); outline-offset: 1px; }
.dchat-send {
  flex: none; width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--orange); color: var(--navy); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.dchat-send:hover { background: var(--orange-deep); color: var(--white); transform: scale(1.05); }
.dchat-send[data-icon] svg { width: 18px; height: 18px; }

/* reserverings-demo */
.resv-step-lbl { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.resv-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.resv-opt {
  border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.05); color: var(--white);
  font-family: var(--font-body); font-size: 14px; padding: 10px 14px; border-radius: 12px; cursor: pointer; min-height: 44px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.resv-opt:hover { background: rgba(232,149,58,0.1); border-color: rgba(232,149,58,0.45); transform: translateY(-1px); }
.resv-opt.sel { background: rgba(232,149,58,0.18); border-color: var(--orange); color: var(--white); }
.resv-opt:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.resv-confirm {
  margin-top: 8px; text-align: center; padding: 22px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(232,149,58,0.4);
}
.resv-confirm .ic { width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: rgba(40,200,64,0.16); display: flex; align-items: center; justify-content: center; }
.resv-confirm .ic[data-icon] svg { width: 26px; height: 26px; color: #34d058; }
.resv-confirm h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.resv-confirm p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.resv-confirm .resv-detail { color: var(--orange); font-weight: 600; }
.resv-reset { margin-top: 14px; background: transparent; border: none; color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 13px; cursor: pointer; }
.resv-reset:hover { color: var(--white); }

/* ═══════════ BLOG ═══════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(10,23,48,0.05);
  transition: transform 0.3s, box-shadow 0.3s; text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(10,23,48,0.1); }
.blog-card-top { height: 120px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); display: flex; align-items: center; justify-content: center; }
.blog-card-top .ic[data-icon] svg { width: 38px; height: 38px; color: rgba(232,149,58,0.85); }
.blog-card-top.cream { background: linear-gradient(135deg, #F0C56B, var(--orange)); }
.blog-card-top.cream .ic[data-icon] svg { color: var(--navy); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 8px; }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-readmore { margin-top: 14px; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--orange-deep); display: inline-flex; align-items: center; gap: 6px; }
.blog-card:hover .blog-readmore { gap: 9px; }
.blog-soon { opacity: 0.78; pointer-events: none; }
.blog-soon .blog-readmore { color: var(--muted); }
.blog-soon-tag { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.9); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 0.05em; padding: 3px 9px; border-radius: 50px; }

/* ═══════════ TEAM (over-ons) ═══════════ */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 720px; margin: 0 auto; }
.tmember {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 28px; text-align: center;
  box-shadow: 0 10px 30px rgba(10,23,48,0.05);
}
.tmember-avatar {
  width: 88px; height: 88px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--orange);
  box-shadow: inset 0 0 0 3px rgba(232,149,58,0.3);
}
.tmember-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--navy); }
.tmember-role { font-size: 13px; color: var(--orange-deep); font-weight: 600; margin: 2px 0 12px; }
.tmember p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════ CONTACTFORMULIER ═══════════ */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.cform {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 30px;
  box-shadow: 0 12px 36px rgba(10,23,48,0.06);
}
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfield { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cfield label { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--navy); }
.cfield label .req { color: var(--orange-deep); }
.cfield input, .cfield textarea, .cfield select {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--navy);
  background: var(--off-white); border: 1.5px solid var(--border); border-radius: 11px; padding: 12px 14px; min-height: 46px;
  transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.cfield textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.cfield input:focus, .cfield textarea:focus, .cfield select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,149,58,0.15);
}
.cfield input:invalid:not(:placeholder-shown) { border-color: #e05656; }
.cfield .cerror { font-size: 12px; color: #c0392b; min-height: 0; display: none; }
.cfield.invalid .cerror { display: block; }
.cfield.invalid input, .cfield.invalid textarea, .cfield.invalid select { border-color: #e05656; }
.cselect-wrap { position: relative; }
.cselect-wrap::after { content: '▾'; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.cform-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.cform-submit { width: 100%; justify-content: center; margin-top: 6px; }
.cform-status { display: none; margin-top: 14px; padding: 14px 16px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.cform-status.ok { display: block; background: rgba(40,200,64,0.1); border: 1px solid rgba(40,200,64,0.4); color: #1c7a32; }
.cform-status.err { display: block; background: rgba(224,86,86,0.1); border: 1px solid rgba(224,86,86,0.4); color: #c0392b; }
.cform-reassure { font-size: 12.5px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; gap: 7px; }
.cform-reassure[data-icon] svg, .cform-reassure .ic[data-icon] svg { width: 15px; height: 15px; color: var(--orange-deep); }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.cinfo {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 22px;
  box-shadow: 0 10px 30px rgba(10,23,48,0.05);
}
.cinfo-item { display: flex; align-items: flex-start; gap: 13px; }
.cinfo-item + .cinfo-item { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border-soft); }
.cinfo-ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: rgba(232,149,58,0.12); display: flex; align-items: center; justify-content: center; }
.cinfo-ic[data-icon] svg { width: 19px; height: 19px; color: var(--orange-deep); }
.cinfo-k { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--navy); }
.cinfo-v { font-size: 14px; color: var(--muted); line-height: 1.55; }
.cinfo-v a { color: var(--orange-deep); }

/* ═══════════ MOBIEL ═══════════ */
@media (max-width: 900px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) 20px 56px; }
  .page-section { padding: 56px 20px; }
  .page-cta { padding: 56px 20px; }
  .page-cards, .page-cards.two { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .tiers { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .cform { padding: 22px; }
  .cform-row { grid-template-columns: 1fr; gap: 0; }
  .calc-tabs { width: 100%; justify-content: center; }
}
