/*
Theme Name: GroupeOlaf
Theme URI: https://groupeolaf.com
Author: GroupeOlaf
Author URI: https://groupeolaf.com
Description: Thème sur mesure pour groupeolaf.com — Développement web et marketing digital. Design sombre moderne avec calculateur de devis, prise de rendez-vous et portfolio.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: groupeolaf
*/

/* ── Variables (couleurs du site groupeolaf.com) ─────────────────────── */
:root {
  --background: #0c0a1d;
  --foreground: #f0f2f8;
  --card: #16132b;
  --muted: #201c3d;
  --muted-foreground: #9794b4;
  --primary: #6254e7;
  --primary-light: #9289f1;
  --primary-hover: #5747e4;
  --secondary: #ff7426;
  --secondary-light: #ff9257;
  --yellow: #f0ac0e;
  --green: #10b981;
  --red: #ef4444;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 0.75rem;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* ── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; }
a:hover { color: var(--foreground); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.go-container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.go-section { padding: 2.5rem 0 4rem; }
.go-content { padding-top: 3.5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .go-content { padding-top: 4rem; padding-bottom: 0; } }

/* ── Section headers ──────────────────────────────────────────────────── */
.go-eyebrow {
  font-size: 0.75rem; font-weight: 600; color: var(--primary-light);
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.5rem;
}
.go-title { font-size: 2rem; font-weight: 900; margin-bottom: 1rem; }
@media (min-width: 768px) { .go-title { font-size: 2.5rem; } }
.go-subtitle { color: var(--muted-foreground); max-width: 36rem; }
.go-subtitle strong { color: var(--foreground); }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.go-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; transition: all 0.2s;
}
.go-btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 10px 30px rgba(98, 84, 231, 0.3);
}
.go-btn--primary:hover { background: var(--primary-hover); color: #fff; }
.go-btn--outline { border: 1px solid rgba(255, 255, 255, 0.15); color: var(--foreground); }
.go-btn--outline:hover { background: var(--muted); }
.go-btn--white { background: #fff; color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.go-btn--white:hover { background: #ece9ff; color: var(--primary-hover); }
.go-btn--ghost-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.go-btn--ghost-white:hover { background: rgba(255,255,255,0.25); color: #fff; }
.go-btn--sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.go-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.go-btn--full { width: 100%; }

/* ── Badges & tags ────────────────────────────────────────────────────── */
.go-badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.15rem 0.65rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600; border: 1px solid transparent;
}
.go-badge--orange { background: rgba(255, 116, 38, 0.15); color: var(--secondary-light); border-color: rgba(255, 116, 38, 0.25); }
.go-badge--blue { background: rgba(98, 84, 231, 0.18); color: var(--primary-light); border-color: rgba(98, 84, 231, 0.3); }
.go-badge--purple { background: rgba(146, 137, 241, 0.15); color: #b3acf5; border-color: rgba(146, 137, 241, 0.25); }
.go-badge--green { background: rgba(16, 185, 129, 0.15); color: #34d399; border-color: rgba(16, 185, 129, 0.25); }
.go-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.go-tag {
  font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 0.375rem;
  background: var(--muted); color: var(--muted-foreground);
  font-family: ui-monospace, SFMono-Regular, monospace;
}

/* ── Header / nav ─────────────────────────────────────────────────────── */
.go-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 4rem; display: none; align-items: center; padding: 0 2rem;
  transition: all 0.3s;
}
.go-nav.is-scrolled {
  background: rgba(12, 10, 29, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .go-nav { display: flex; } }
.go-logo { display: flex; align-items: center; gap: 0.5rem; margin-right: auto; color: var(--foreground); }
.go-logo:hover { color: var(--foreground); }
.go-logo__mark {
  width: 2rem; height: 2rem; border-radius: 0.5rem; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.go-logo__text { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; letter-spacing: -0.02em; }
.go-logo__text span { color: var(--primary-light); }
.go-nav__links { display: flex; align-items: center; gap: 0.125rem; }
.go-nav__link {
  padding: 0.5rem 0.9rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; color: var(--muted-foreground);
  transition: all 0.2s;
}
.go-nav__link:hover { color: var(--foreground); background: rgba(32, 28, 61, 0.6); }
.go-nav__link.is-active { background: rgba(98, 84, 231, 0.15); color: var(--primary-light); }
.go-nav__cta { margin-left: 1.25rem; }

/* Mobile top bar */
.go-mobile-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 3.5rem; display: flex; align-items: center; padding: 0 1.25rem;
  background: rgba(12, 10, 29, 0.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .go-mobile-bar { display: none; } }

/* Mobile bottom nav */
.go-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; background: rgba(22, 19, 43, 0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 768px) { .go-bottom-nav { display: none; } }
.go-bottom-nav__item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 0.6rem 0 0.5rem; gap: 0.15rem; color: var(--muted-foreground);
}
.go-bottom-nav__icon {
  width: 1.75rem; height: 1.75rem; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.go-bottom-nav__item.is-active .go-bottom-nav__icon {
  background: var(--primary); color: #fff;
  box-shadow: 0 6px 18px rgba(98, 84, 231, 0.35);
}
.go-bottom-nav__item span { font-size: 0.56rem; font-weight: 600; }
.go-bottom-nav__item.is-active span { color: var(--primary-light); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.go-hero { position: relative; min-height: calc(100vh - 4rem); display: flex; align-items: center; overflow: hidden; }
.go-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.go-hero__glow--1 {
  position: absolute; top: 0; right: 0; width: 70%; height: 70%;
  border-radius: 50%; opacity: 0.12; transform: translate(20%, -20%);
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}
.go-hero__glow--2 {
  position: absolute; bottom: 0; left: 0; width: 50%; height: 50%;
  border-radius: 50%; opacity: 0.1; transform: translate(-20%, 20%);
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}
.go-hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.go-hero__inner {
  position: relative; display: grid; gap: 3rem; align-items: center;
  max-width: 72rem; margin: 0 auto; padding: 6rem 1.5rem;
}
@media (min-width: 1024px) { .go-hero__inner { grid-template-columns: 1fr 1fr; } }
.go-hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem; border-radius: 999px; margin-bottom: 1.5rem;
  font-size: 0.75rem; font-weight: 600; color: var(--primary-light);
  background: rgba(98, 84, 231, 0.15); border: 1px solid rgba(98, 84, 231, 0.3);
}
.go-pulse {
  width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--primary-light);
  animation: go-pulse 2s infinite;
}
@keyframes go-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.go-hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem); font-weight: 900;
  line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.go-hero h1 .is-primary { color: var(--primary-light); }
.go-hero h1 .is-stroke { -webkit-text-stroke: 2px var(--secondary); color: transparent; }
.go-hero__text { color: var(--muted-foreground); font-size: 1.1rem; margin-bottom: 2rem; max-width: 30rem; }
.go-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.go-hero__stats { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; }
.go-hero__stats strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--primary-light); }
.go-hero__stats small { font-size: 0.75rem; color: var(--muted-foreground); }
.go-hero__visual { position: relative; display: none; }
@media (min-width: 1024px) { .go-hero__visual { display: block; } }
.go-hero__photo { position: relative; border-radius: 1.5rem; overflow: hidden; aspect-ratio: 4 / 5; }
.go-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.go-hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(98, 84, 231, 0.18) 0%, rgba(255, 116, 38, 0.15) 100%);
}
.go-float-card {
  position: absolute; border-radius: 1rem; padding: 1rem;
  background: var(--card); border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  display: flex; align-items: center; gap: 0.75rem;
}
.go-float-card--left { left: -2rem; top: 33%; }
.go-float-card--right { right: -1.5rem; bottom: 33%; }
.go-float-card__icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.go-float-card small { display: block; font-size: 0.72rem; color: var(--muted-foreground); }
.go-float-card strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; }

/* ── Cards grid ───────────────────────────────────────────────────────── */
.go-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .go-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .go-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .go-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .go-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.go-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }

/* Service cards */
.go-service { transition: transform 0.3s; }
.go-service:hover { transform: translateY(-4px); }
.go-service__icon {
  width: 3rem; height: 3rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.go-service:hover .go-service__icon { transform: scale(1.1); }
.go-service h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.go-service ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.go-service li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: var(--muted-foreground); }
.go-service li::before { content: ''; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--dot, var(--primary)); flex-shrink: 0; }
.go-service__link { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; }

/* Process / methodology */
.go-process { counter-reset: step; display: grid; gap: 1rem; }
@media (min-width: 768px) { .go-process { grid-template-columns: repeat(5, 1fr); } }
.go-process__step { position: relative; padding: 1.25rem; }
.go-process__num {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(98, 84, 231, 0.18); color: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; margin-bottom: 0.9rem;
}
.go-process__step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.go-process__step p { font-size: 0.8rem; color: var(--muted-foreground); }

/* Why choose us */
.go-why { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .go-why { grid-template-columns: 1fr 1fr; } }
.go-progress-list { display: flex; flex-direction: column; gap: 1.25rem; }
.go-progress__head {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem;
  font-size: 0.875rem; font-weight: 600;
}
.go-progress__head strong { font-family: var(--font-display); color: var(--primary-light); }
.go-progress__track {
  height: 0.5rem; border-radius: 999px; background: var(--muted); overflow: hidden;
}
.go-progress__track span { display: block; height: 100%; border-radius: 999px; }

/* Stats band */
.go-stats-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .go-stats-band { grid-template-columns: repeat(4, 1fr); } }
.go-stats-band__item { text-align: center; padding: 1.5rem 1rem; }
.go-stats-band__item strong {
  display: block; font-family: var(--font-display); font-size: 2.25rem;
  font-weight: 900; color: var(--primary-light); margin-bottom: 0.35rem;
}
.go-stats-band__item span { font-size: 0.82rem; color: var(--muted-foreground); }

/* CTA banner */
.go-cta {
  border-radius: 1.5rem; padding: 2rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 55%, var(--secondary) 100%);
}
@media (min-width: 768px) { .go-cta { padding: 3rem; } }
.go-cta::before {
  content: ''; position: absolute; inset: 0; opacity: 0.1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 24px 24px;
}
.go-cta__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .go-cta__inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.go-cta h2 { color: #fff; font-size: 1.6rem; font-weight: 900; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .go-cta h2 { font-size: 1.9rem; } }
.go-cta p { color: rgba(255, 255, 255, 0.85); }
.go-cta__actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; justify-content: center; }

/* ── Project cards ────────────────────────────────────────────────────── */
.go-filters { display: flex; gap: 0.5rem; margin-bottom: 2rem; }
.go-filter {
  padding: 0.5rem 1rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; background: var(--muted); color: var(--muted-foreground);
  transition: all 0.2s;
}
.go-filter:hover { color: var(--foreground); }
.go-filter.is-active { background: var(--primary); color: #fff; }
.go-filter small { opacity: 0.7; margin-left: 0.35rem; }

.go-project-card {
  border: 1px solid var(--border); border-radius: 1rem; overflow: hidden;
  cursor: pointer; transition: transform 0.3s; background: var(--card);
}
.go-project-card:hover { transform: translateY(-4px); }
.go-project-card__media { position: relative; height: 12rem; overflow: hidden; background: var(--muted); }
.go-project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.go-project-card:hover .go-project-card__media img { transform: scale(1.05); }
.go-project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.15), transparent);
}
.go-project-card__badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; gap: 0.5rem; }
.go-project-card__year {
  position: absolute; top: 0.75rem; right: 0.75rem;
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.6);
  font-family: ui-monospace, monospace;
}
.go-project-card__body { padding: 1.25rem; }
.go-project-card__body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.go-project-card__body > p {
  color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.go-project-card .go-tags { margin-bottom: 1rem; }
.go-project-card__links { display: flex; align-items: center; gap: 0.75rem; }
.go-project-card__links a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.875rem; font-weight: 600; color: var(--primary-light);
}
.go-project-card__links a:hover { color: var(--foreground); }

/* Project modal */
.go-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: flex-end; justify-content: center; padding: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.go-modal.is-open { display: flex; }
@media (min-width: 768px) { .go-modal { align-items: center; padding: 1.5rem; } }
.go-modal__box {
  width: 100%; max-height: 90vh; overflow-y: auto;
  background: var(--card); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem 1.5rem 0 0;
}
@media (min-width: 768px) { .go-modal__box { max-width: 42rem; border-radius: 1.5rem; } }
.go-modal__media { position: relative; height: 14rem; overflow: hidden; }
.go-modal__media img { width: 100%; height: 100%; object-fit: cover; }
.go-modal__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--card), transparent 55%);
}
.go-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.go-modal__badges { position: absolute; top: 1rem; left: 1rem; z-index: 2; display: flex; gap: 0.5rem; }
.go-modal__body { padding: 1.5rem 2rem 2rem; }
.go-modal__body h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.go-modal__body > p { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.go-modal__label { font-size: 0.72rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.5rem; }
.go-modal__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* ── Blog ─────────────────────────────────────────────────────────────── */
.go-featured {
  border: 1px solid var(--border); border-radius: 1rem; overflow: hidden;
  background: var(--card); margin-bottom: 2rem; display: grid;
}
@media (min-width: 768px) { .go-featured { grid-template-columns: 2fr 3fr; } }
.go-featured__media { height: 12rem; overflow: hidden; }
@media (min-width: 768px) { .go-featured__media { height: auto; } }
.go-featured__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.go-featured:hover .go-featured__media img { transform: scale(1.05); }
.go-featured__body { padding: 1.5rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.go-featured__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
.go-featured h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; }
.go-featured h3 a { color: var(--foreground); }
.go-featured h3 a:hover { color: var(--primary-light); }
.go-featured p { color: var(--muted-foreground); font-size: 0.9rem; margin-bottom: 1rem; }

.go-post-card {
  border: 1px solid var(--border); border-radius: 1rem; overflow: hidden;
  background: var(--card); transition: transform 0.3s;
}
.go-post-card:hover { transform: translateY(-4px); }
.go-post-card__media { position: relative; height: 11rem; overflow: hidden; background: var(--muted); }
.go-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.go-post-card:hover .go-post-card__media img { transform: scale(1.05); }
.go-post-card__media .go-badge { position: absolute; top: 0.75rem; left: 0.75rem; }
.go-post-card__body { padding: 1.25rem; }
.go-post-card__meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.go-post-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.35; }
.go-post-card h3 a { color: var(--foreground); }
.go-post-card h3 a:hover { color: var(--primary-light); }
.go-post-card p { color: var(--muted-foreground); font-size: 0.875rem; }

/* Single post / page content */
.go-article { max-width: 46rem; margin: 0 auto; }
.go-article__header { margin-bottom: 2rem; }
.go-article h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; }
.go-article__thumb { border-radius: 1rem; overflow: hidden; margin-bottom: 2rem; }
.go-prose > * + * { margin-top: 1.15rem; }
.go-prose h2 { font-size: 1.5rem; margin-top: 2.25rem; }
.go-prose h3 { font-size: 1.2rem; margin-top: 1.75rem; }
.go-prose p, .go-prose li { color: #c8cbdd; }
.go-prose ul, .go-prose ol { padding-left: 1.5rem; }
.go-prose img { border-radius: var(--radius); }
.go-prose blockquote { border-left: 3px solid var(--primary); padding-left: 1.25rem; color: var(--muted-foreground); font-style: italic; }
.go-prose code { background: var(--muted); padding: 0.15rem 0.4rem; border-radius: 0.3rem; font-size: 0.85em; }
.go-prose pre { background: var(--muted); padding: 1.25rem; border-radius: var(--radius); overflow-x: auto; }

.go-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.go-pagination .page-numbers {
  min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--muted); color: var(--muted-foreground); font-weight: 600; font-size: 0.875rem;
}
.go-pagination .page-numbers.current { background: var(--primary); color: #fff; }

/* ── Forms ────────────────────────────────────────────────────────────── */
.go-label { display: block; font-size: 0.75rem; color: var(--muted-foreground); font-weight: 500; margin-bottom: 0.4rem; }
.go-input {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius);
  background: var(--muted); color: var(--foreground);
  border: 1px solid transparent; font-size: 0.9rem; outline: none; transition: all 0.2s;
}
.go-input::placeholder { color: rgba(151, 148, 180, 0.5); }
.go-input:focus { box-shadow: 0 0 0 2px rgba(98, 84, 231, 0.4); }
textarea.go-input { resize: none; }
select.go-input { appearance: none; }
.go-field { margin-bottom: 1rem; }
.go-form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .go-form-grid--2 { grid-template-columns: 1fr 1fr; } }

.go-spinner {
  width: 1rem; height: 1rem; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3); border-top-color: #fff;
  animation: go-spin 0.7s linear infinite; display: inline-block;
}
@keyframes go-spin { to { transform: rotate(360deg); } }

.go-form-error { color: var(--red); font-size: 0.85rem; margin-top: 0.75rem; display: none; }

/* Success screens */
.go-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 4rem 1rem; max-width: 28rem; margin: 0 auto; }
.go-success__icon {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: rgba(98, 84, 231, 0.2); color: var(--primary-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.go-success h3 { font-size: 1.75rem; font-weight: 900; margin-bottom: 0.75rem; }
.go-success p { color: var(--muted-foreground); margin-bottom: 0.5rem; }
.go-success .go-btn { margin-top: 1.5rem; }
.go-success__steps { text-align: left; width: 100%; margin-top: 1.5rem; }
.go-success__steps .go-card { padding: 1.25rem; }
.go-success__step { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 0.75rem; }
.go-success__step span {
  width: 1.25rem; height: 1.25rem; border-radius: 50%; flex-shrink: 0; margin-top: 0.1rem;
  background: rgba(98, 84, 231, 0.2); color: var(--primary-light);
  font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.go-success__step strong { display: block; font-size: 0.75rem; color: var(--primary-light); }
.go-success__step small { font-size: 0.85rem; color: var(--muted-foreground); }

/* ── Calculator ───────────────────────────────────────────────────────── */
.go-trust { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.go-trust__item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.85rem; border-radius: var(--radius);
  font-size: 0.75rem; font-weight: 600; color: var(--muted-foreground);
  background: var(--card); border: 1px solid var(--border);
}
.go-trust__item .go-icon { color: #34d399; }

.go-calc-step { margin-bottom: 2rem; }
.go-calc-step > h3 {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.go-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 1024px) { .go-type-grid { grid-template-columns: repeat(4, 1fr); } }
.go-type-btn {
  padding: 1rem; border-radius: var(--radius); text-align: left;
  background: var(--card); border: 1px solid var(--border); transition: all 0.2s;
}
.go-type-btn.is-active { box-shadow: 0 0 0 2px var(--primary); }
.go-type-btn__icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.go-type-btn strong { display: block; font-size: 0.875rem; }
.go-type-btn small { display: block; font-size: 0.72rem; color: var(--muted-foreground); margin-top: 0.1rem; }
.go-type-btn .go-type-btn__price { display: block; font-size: 0.72rem; font-weight: 700; margin-top: 0.5rem; }

.go-feature-grid { display: grid; gap: 0.6rem; }
@media (min-width: 640px) { .go-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .go-feature-grid { grid-template-columns: repeat(3, 1fr); } }
.go-feature-btn {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem;
  border-radius: var(--radius); text-align: left;
  background: var(--card); border: 1px solid var(--border); transition: all 0.2s;
}
.go-feature-btn:hover { background: var(--muted); }
.go-feature-btn.is-active {
  background: rgba(98, 84, 231, 0.1); border-color: rgba(98, 84, 231, 0.4);
  box-shadow: 0 0 0 1px var(--primary);
}
.go-feature-btn__icon {
  width: 2rem; height: 2rem; border-radius: 0.5rem; flex-shrink: 0;
  background: var(--muted); color: var(--muted-foreground);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.go-feature-btn.is-active .go-feature-btn__icon { background: rgba(98, 84, 231, 0.25); color: var(--primary-light); }
.go-feature-btn__text { flex: 1; min-width: 0; }
.go-feature-btn__text strong { display: block; font-size: 0.85rem; font-weight: 600; }
.go-feature-btn.is-active .go-feature-btn__text strong { color: var(--primary-light); }
.go-feature-btn__text small { display: block; font-size: 0.72rem; color: var(--muted-foreground); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.go-feature-btn__price { font-size: 0.75rem; font-weight: 700; color: var(--muted-foreground); flex-shrink: 0; }
.go-feature-btn.is-active .go-feature-btn__price { color: var(--primary-light); }

.go-pill-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.go-pill {
  padding: 0.65rem 1.25rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
  background: var(--card); border: 1px solid var(--border); transition: all 0.2s;
}
.go-pill:hover { background: var(--muted); }
.go-pill.is-active { background: var(--primary); color: #fff; border-color: transparent; }
.go-pill small { margin-left: 0.4rem; opacity: 0.7; font-size: 0.75rem; }

.go-timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.go-timeline-btn {
  padding: 1rem; border-radius: var(--radius); text-align: center;
  background: var(--card); border: 1px solid var(--border); transition: all 0.2s;
}
.go-timeline-btn.is-active { box-shadow: 0 0 0 2px var(--primary); }
.go-timeline-btn strong { display: block; font-size: 0.875rem; }
.go-timeline-btn small { display: block; font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.go-timeline-btn .go-mult { display: block; font-size: 0.75rem; font-weight: 700; margin-top: 0.35rem; }

.go-calc-warn {
  display: none; align-items: flex-start; gap: 0.5rem; margin-top: 0.75rem;
  padding: 0.75rem; border-radius: var(--radius);
  background: rgba(255, 116, 38, 0.08); border: 1px solid rgba(255, 116, 38, 0.2);
  font-size: 0.78rem; color: rgba(255, 146, 87, 0.9);
}
.go-calc-warn.is-visible { display: flex; }
.go-calc-warn .go-icon { flex-shrink: 0; margin-top: 0.1rem; color: var(--secondary-light); }

.go-estimate {
  border-radius: 1rem; padding: 1.5rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(98, 84, 231, 0.14) 0%, rgba(255, 116, 38, 0.1) 100%);
  border: 1px solid rgba(98, 84, 231, 0.3);
}
@media (min-width: 768px) { .go-estimate { padding: 2rem; } }
.go-estimate__inner { position: relative; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 768px) { .go-estimate__inner { grid-template-columns: 1fr 1fr; } }
.go-estimate__label { font-size: 0.72rem; font-weight: 600; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.go-estimate__range { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .go-estimate__range { font-size: 3rem; } }
.go-estimate__range .sep { font-size: 1.5rem; color: var(--muted-foreground); }
.go-estimate__note { font-size: 0.85rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.go-estimate__lines { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.go-estimate__line { display: flex; justify-content: space-between; }
.go-estimate__line span:first-child { color: var(--muted-foreground); }
.go-estimate__line--warn span { color: var(--secondary-light) !important; }
.go-estimate__line--total { padding-top: 0.5rem; border-top: 1px solid var(--border); font-weight: 700; }
.go-estimate__line--total span:first-child { color: var(--foreground); }
.go-estimate__line--total span:last-child { color: var(--primary-light); }
.go-estimate__cta { display: flex; flex-direction: column; gap: 0.75rem; }
.go-estimate__cta > p { font-size: 0.75rem; text-align: center; color: var(--muted-foreground); }
.go-estimate__cta > p strong { color: var(--foreground); }
.go-estimate__badges { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.72rem; color: var(--muted-foreground); }
.go-estimate__badges span { display: flex; align-items: center; gap: 0.25rem; }
.go-estimate__badges .go-icon { color: #34d399; }

/* Multi-step brief form */
.go-steps { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.go-steps__item { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
.go-steps__num {
  width: 2rem; height: 2rem; border-radius: 50%; flex-shrink: 0;
  background: var(--muted); color: var(--muted-foreground);
  font-size: 0.875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.go-steps__item.is-done .go-steps__num, .go-steps__item.is-current .go-steps__num { background: var(--primary); color: #fff; }
.go-steps__label { font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); display: none; }
@media (min-width: 640px) { .go-steps__label { display: block; } }
.go-steps__item.is-current .go-steps__label, .go-steps__item.is-done .go-steps__label { color: var(--foreground); }
.go-steps__line { flex: 1; height: 1px; background: var(--border); }
.go-steps__item.is-done .go-steps__line { background: var(--primary); }

.go-form-step { display: none; max-width: 42rem; margin: 0 auto; }
.go-form-step.is-visible { display: block; }
.go-form-step__head { margin-bottom: 1.5rem; }
.go-form-step__head h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.go-form-step__head p { font-size: 0.875rem; color: var(--muted-foreground); }
.go-form-nav { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.go-form-nav .go-btn { flex: 1; }
.go-form-note { font-size: 0.75rem; text-align: center; color: var(--muted-foreground); margin-top: 1rem; }
.go-form-note strong { color: var(--foreground); }
.go-choice-row { display: flex; gap: 0.75rem; }
.go-choice-row .go-pill { flex: 1; font-size: 0.78rem; padding: 0.65rem 0.5rem; text-align: center; }
.go-prefill-box {
  border-radius: var(--radius); padding: 1rem; font-size: 0.8rem; margin-top: 1rem;
  background: rgba(98, 84, 231, 0.08); border: 1px solid rgba(98, 84, 231, 0.25);
  color: var(--muted-foreground); display: none;
}
.go-prefill-box.is-visible { display: block; }
.go-prefill-box strong { color: var(--foreground); }
.go-prefill-box .go-prefill-title { display: flex; align-items: center; gap: 0.4rem; color: var(--primary-light); font-weight: 600; font-size: 0.75rem; margin-bottom: 0.4rem; }

/* ── Calendar ─────────────────────────────────────────────────────────── */
.go-cal-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .go-cal-layout { grid-template-columns: 1fr 1fr; } }
.go-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.go-cal__head h3 { font-size: 1.1rem; font-weight: 700; }
.go-cal__nav {
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius);
  background: var(--muted); color: var(--muted-foreground);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.go-cal__nav:hover { background: rgba(98, 84, 231, 0.2); color: var(--primary-light); }
.go-cal__dows { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 0.5rem; }
.go-cal__dows span { text-align: center; font-size: 0.72rem; color: var(--muted-foreground); font-weight: 600; padding: 0.25rem 0; }
.go-cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
.go-cal__day {
  position: relative; aspect-ratio: 1; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500; transition: all 0.2s;
}
.go-cal__day:disabled { color: rgba(151, 148, 180, 0.35); cursor: not-allowed; }
.go-cal__day.has-slots:not(:disabled):hover { background: rgba(98, 84, 231, 0.2); color: var(--primary-light); }
.go-cal__day.is-selected { background: var(--primary); color: #fff; }
.go-cal__day .dot {
  position: absolute; bottom: 0.3rem; left: 50%; transform: translateX(-50%);
  width: 0.25rem; height: 0.25rem; border-radius: 50%; background: var(--primary-light);
}
.go-cal__day.is-selected .dot { background: rgba(255, 255, 255, 0.7); }
.go-cal__legend { display: flex; gap: 1rem; margin-top: 1rem; font-size: 0.72rem; color: var(--muted-foreground); }
.go-cal__legend span { display: flex; align-items: center; gap: 0.375rem; }
.go-cal__legend i { width: 0.5rem; height: 0.5rem; border-radius: 50%; display: inline-block; }
.go-cal__legend i.avail { background: var(--primary-light); }
.go-cal__legend i.unavail { background: var(--muted); }

.go-slots-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 1rem; height: 100%; }
.go-slots-empty__icon {
  width: 4rem; height: 4rem; border-radius: 1rem;
  background: rgba(98, 84, 231, 0.15); color: var(--primary-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.go-slots-empty h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.go-slots-empty p { color: var(--muted-foreground); font-size: 0.875rem; }
.go-slots h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.go-slots h3 span { color: var(--primary-light); }
.go-slots__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.go-slot-btn {
  padding: 0.8rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
  border: 1px solid var(--border); transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.go-slot-btn:hover { border-color: rgba(98, 84, 231, 0.5); background: rgba(98, 84, 231, 0.1); }
.go-slot-btn.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.go-booking-form { display: none; }
.go-booking-form.is-visible { display: block; }
.go-booking-form h4 { font-weight: 700; margin-bottom: 1rem; }

/* ── Contact ──────────────────────────────────────────────────────────── */
.go-contact-layout { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .go-contact-layout { grid-template-columns: 2fr 3fr; } }
.go-contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.go-contact-info > p { color: var(--muted-foreground); margin-bottom: 2rem; }
.go-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.go-contact-item__icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius); flex-shrink: 0;
  background: rgba(98, 84, 231, 0.15); color: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
}
.go-contact-item small { display: block; font-size: 0.72rem; color: var(--muted-foreground); }
.go-contact-item strong { font-size: 0.9rem; font-weight: 500; }
.go-socials { display: flex; gap: 0.75rem; margin-top: 2rem; }
.go-socials a {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  background: var(--muted); color: var(--muted-foreground);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.go-socials a:hover { background: rgba(98, 84, 231, 0.2); color: var(--primary-light); }

/* ── Footer ───────────────────────────────────────────────────────────── */
.go-footer { border-top: 1px solid var(--border); margin-top: 2rem; display: none; }
@media (min-width: 768px) { .go-footer { display: block; } }
.go-footer__inner {
  max-width: 72rem; margin: 0 auto; padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 768px) { .go-footer__inner { flex-direction: row; } }
.go-footer p { font-size: 0.75rem; color: var(--muted-foreground); }
.go-footer .go-socials { margin-top: 0; }
.go-footer .go-socials a { width: 2rem; height: 2rem; }

/* ── 404 ──────────────────────────────────────────────────────────────── */
.go-404 { text-align: center; padding: 6rem 1.5rem; }
.go-404 h1 { font-size: 5rem; font-weight: 900; color: var(--primary-light); }
.go-404 p { color: var(--muted-foreground); margin: 1rem 0 2rem; }

/* WordPress core alignment classes */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--muted-foreground); text-align: center; padding: 0.5rem 0; }
.sticky, .bypostauthor { display: revert; }
