/* ============================================================
   DOBRY PSYCHOLOG SZCZECIN – Styl inspirowany inkluzja.com
   Kremowe tło · Granat · Żółty · Różowy · Nunito · Pill shapes
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Paleta inkluzja */
  --cream:        #F8F4E1;
  --cream-dark:   #F0EACC;
  --navy:         #1D3461;
  --navy-mid:     #2B5FA8;
  --navy-light:   #EEF3FC;
  --yellow:       #FFD60A;
  --yellow-dark:  #E6BC00;
  --yellow-light: #FFF8CC;
  --pink:         #E8175D;
  --pink-dark:    #C2134E;
  --pink-light:   #FFDDE9;
  --white:        #FFFFFF;
  --black:        #1A1A1A;
  --text:         #1A1A1A;
  --text-light:   #444444;
  --text-muted:   #777777;
  --border:       var(--navy);

  /* Shadows – offset solid (inkluzja style) */
  --shadow-card:  5px 5px 0 var(--navy);
  --shadow-card-pink: 5px 5px 0 var(--pink);
  --shadow-card-yellow: 5px 5px 0 var(--yellow-dark);
  --shadow-btn:   3px 3px 0 rgba(0,0,0,0.3);
  --shadow-sm:    2px 2px 0 var(--navy);

  /* Radii */
  --radius-pill:  9999px;
  --radius-card:  20px;
  --radius-lg:    16px;
  --radius-md:    12px;
  --radius-sm:    8px;

  /* Fonts */
  --font-main: 'Nunito', 'Arial Rounded MT Bold', sans-serif;

  /* Layout */
  --header-height: 72px;
  --container-width: 1200px;
  --container-padding: 1.5rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;

  /* Spacing */
  --s-xs:  0.25rem;
  --s-sm:  0.5rem;
  --s-md:  1rem;
  --s-lg:  1.5rem;
  --s-xl:  2rem;
  --s-2xl: 3rem;
  --s-3xl: 4rem;
  --s-4xl: 6rem;
}

/* ===== FONT SIZE CLASSES (a11y) ===== */
.font-small  { font-size: 14px !important; }
.font-normal { font-size: 16px !important; }
.font-large  { font-size: 18px !important; }
.font-xlarge { font-size: 20px !important; }

/* ===== HIGH CONTRAST ===== */
.theme-high-contrast {
  --cream: #ffffff;
  --cream-dark: #f0f0f0;
  --navy: #00008B;
  --yellow: #FFD700;
  --pink: #CC0044;
  --text: #000000;
  --text-light: #111111;
}

/* ===== DARK MODE ===== */
.theme-dark {
  --cream: #18202E;
  --cream-dark: #1F2A3C;
  --navy: #5B9BD5;
  --yellow: #FFD60A;
  --pink: #FF5C8A;
  --white: #1F2A3C;
  --black: #E8EDF2;
  --text: #E8EDF2;
  --text-light: #B0BEC5;
  --text-muted: #8FA3B3;
  --border: #5B9BD5;
  --shadow-card: 5px 5px 0 #5B9BD5;
}

/* ===== TOGGLE CLASSES ===== */
.grayscale { filter: grayscale(100%); }
.underline-links a { text-decoration: underline !important; }
.no-animations *, .no-animations *::before, .no-animations *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
}
.dyslexia-font p, .dyslexia-font li, .dyslexia-font span, .dyslexia-font label {
  font-family: 'Comic Sans MS', cursive !important;
  letter-spacing: 0.05em;
  line-height: 2;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--pink); }
a:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 10000;
  background: var(--navy); color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 800; transition: top var(--transition-fast);
}
.skip-link:focus { top: 0; }

/* ============================================================
   CONTAINER & SECTIONS
   ============================================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.section { padding: var(--s-4xl) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: #fff; }
.section--yellow { background: var(--yellow); }

.section-header { text-align: center; margin-bottom: var(--s-2xl); }
.section-pre {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--s-md);
}
.section--navy .section-pre { background: var(--pink); color: #fff; border-color: #fff; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: var(--s-sm);
}
.section--navy .section-title,
.section--navy .section-desc { color: #fff; }
.section--navy .section-desc { opacity: 0.88; }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
}
.section-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

/* ============================================================
   BUTTONS – Pill style (inkluzja)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  font-family: inherit;
  border: 2.5px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  box-shadow: var(--shadow-btn);
}
.btn:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,0.3); }
.btn:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 rgba(0,0,0,0.3); }

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--yellow-dark); color: var(--black); }

.btn--pink {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink-dark);
}
.btn--pink:hover { background: var(--pink-dark); color: #fff; }

.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover { background: #162748; color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--white:hover { background: var(--cream); }

.btn--sm  { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg  { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn--block { width: 100%; }

/* ============================================================
   ACCESSIBILITY TOOLBAR
   ============================================================ */
.a11y-toolbar {
  position: fixed; top: 50%; right: 0;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex; flex-direction: column; align-items: flex-end;
}
.a11y-toggle {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff;
  border: 2px solid var(--yellow);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 0.8rem; font-weight: 800;
  cursor: pointer; box-shadow: var(--shadow-card);
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
  min-height: 120px;
  transition: background var(--transition-fast);
}
.a11y-toggle:hover { background: var(--pink); }
.a11y-toggle:focus-visible { outline: 3px solid var(--yellow); }
.a11y-toggle-label { font-size: 0.75rem; }
.a11y-panel {
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
  min-width: 220px;
  display: flex; flex-direction: column; gap: 1rem;
}
.theme-dark .a11y-panel { background: #1F2A3C; }
.a11y-section { display: flex; flex-direction: column; gap: 0.5rem; }
.a11y-label {
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--navy); padding: 0.2rem 0.6rem;
  background: var(--yellow-light);
  border-radius: var(--radius-pill);
  display: inline-block;
}
.a11y-btn-group { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.a11y-btn-group--col { flex-direction: column; }
.a11y-btn {
  flex: 1; background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem; font-weight: 700;
  color: var(--navy); cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}
.a11y-btn:hover { background: var(--navy); color: #fff; }
.a11y-btn--active { background: var(--navy); color: #fff; }
.a11y-btn:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }
.a11y-reset {
  background: none; border: none;
  color: var(--text-muted); font-size: 0.8rem;
  cursor: pointer; text-align: center;
  padding: 0.25rem; font-family: inherit;
  font-weight: 700;
}
.a11y-reset:hover { color: var(--pink); }
.a11y-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem; margin-bottom: -0.25rem;
}
.a11y-panel-title {
  font-size: 0.85rem; font-weight: 800;
  color: var(--navy); letter-spacing: 0.04em;
}
.a11y-close-btn {
  display: flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem;
  background: var(--cream); border: 2px solid var(--navy);
  border-radius: 50%; font-size: 0.8rem; font-weight: 900;
  color: var(--navy); cursor: pointer; line-height: 1;
  transition: all var(--transition-fast); flex-shrink: 0;
}
.a11y-close-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.a11y-close-btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.a11y-restore-btn {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 9000;
  width: 2.75rem; height: 2.75rem;
  background: var(--navy); color: #fff;
  border: 2.5px solid var(--yellow);
  border-radius: 50%; font-size: 1.25rem;
  cursor: pointer; box-shadow: 3px 3px 0 var(--yellow);
  transition: all var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
}
.a11y-restore-btn:hover { background: var(--pink); border-color: var(--pink); box-shadow: 3px 3px 0 var(--navy); }
.a11y-restore-btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.a11y-toolbar--hidden { display: none !important; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: var(--white);
  border-top: 3px solid var(--navy);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  padding: 1.25rem var(--container-padding);
}
.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 0.875rem; font-weight: 600; color: var(--text-light); min-width: 200px; }
.cookie-content p a { color: var(--navy); font-weight: 800; text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 7000;
  background: var(--white);
  border-bottom: 2.5px solid var(--navy);
  height: var(--header-height);
  transition: box-shadow var(--transition-normal);
}
.site-header.scrolled { box-shadow: var(--shadow-card); }
.header-inner {
  display: flex; align-items: center; gap: 1.5rem; height: 100%;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  font-size: 1.6rem;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--navy);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-size: 1.1rem; font-weight: 900; color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink);
}
.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub { color: var(--yellow); }

/* Nav */
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  display: block; padding: 0.45rem 0.75rem;
  font-size: 0.9rem; font-weight: 800;
  color: var(--navy);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--black); background: var(--yellow); border-color: var(--navy); }
.nav-link:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 0.5rem);
  left: 50%; transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-width: 220px; padding: 0.5rem;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown .nav-link { width: 100%; font-size: 0.85rem; }
.dropdown .nav-link:hover { background: var(--navy-light); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-weight: 800; color: var(--navy) !important;
  border: 2px solid var(--navy);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}
.header-phone:hover { background: var(--navy); color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 0.5rem; margin-left: auto;
  cursor: pointer;
}
.hamburger:focus-visible { outline: 2px solid var(--navy); }
.hamburger-line {
  display: block; width: 22px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition-normal);
}
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO – Cream + bold, inkluzja style
   ============================================================ */
.hero {
  position: relative;
  background: var(--cream);
  padding: var(--s-4xl) 0 0;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex; align-items: center;
}
.hero-bg { display: none; }

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 60px; left: -100px;
  width: 280px; height: 280px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
  padding-bottom: var(--s-4xl);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--yellow);
  color: var(--black);
  border: 2.5px solid var(--navy);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem; font-weight: 800;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--s-lg);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--s-lg);
  letter-spacing: -0.02em;
}
.highlight {
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: var(--s-xl);
  max-width: 500px;
}
.hero-desc strong { color: var(--navy); font-weight: 800; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--s-xl); }

.hero-trust {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.trust-number { font-size: 1.15rem; font-weight: 900; color: var(--navy); line-height: 1; }
.trust-label { font-size: 0.8rem; font-weight: 700; color: var(--text-light); }
.trust-divider { display: none; }

/* Hero image side */
.hero-image {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-photo-placeholder {
  width: 340px; height: 420px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-photo-placeholder::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 20px, var(--navy) 20px, var(--navy) 40px);
}
.hero-photo-inner {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--navy-light);
  border: 3px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-icon { font-size: 5rem; }
.hero-card {
  position: absolute; bottom: -1.25rem; left: -2rem;
  background: var(--yellow);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: 0.75rem 1.1rem;
  display: flex; align-items: center; gap: 0.65rem;
  box-shadow: var(--shadow-card);
  font-size: 0.875rem; font-weight: 800; color: var(--navy);
  white-space: nowrap;
}
.hero-card-icon { font-size: 1.35rem; }

/* Hero wave → flat divider */
.hero-wave { display: none; }
.hero::before, .hero::after { z-index: 0; }

/* ============================================================
   CREDENTIALS BAR
   ============================================================ */
.credentials-bar {
  background: var(--navy);
  padding: var(--s-lg) 0;
  border-bottom: 3px solid var(--yellow);
}
.credentials-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.credential-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 700;
  color: rgba(255,255,255,0.9); white-space: nowrap;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}
.credential-icon { font-size: 1.1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-image-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.about-photo-placeholder {
  width: 360px; height: 440px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--yellow-light), var(--pink-light));
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(90deg, var(--pink) 0, var(--pink) 24px, var(--navy) 24px, var(--navy) 48px);
}
.about-photo-icon { font-size: 7rem; }
.about-badge-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--pink);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.65rem;
  box-shadow: var(--shadow-card-pink);
}
.about-badge-icon { font-size: 1.75rem; }
.about-badge-card strong { font-size: 0.85rem; color: #fff; font-weight: 800; display: block; }
.about-badge-card p { font-size: 0.75rem; color: rgba(255,255,255,0.85); margin: 0; }

.about-content .section-title { text-align: left; }
.about-content .section-pre { display: inline-block; }
.about-content .section-text { font-size: 0.95rem; color: var(--text-light); font-weight: 600; margin-bottom: var(--s-md); line-height: 1.8; }
.about-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: var(--s-xl); }
.about-list li {
  font-size: 0.9rem; font-weight: 700; color: var(--text);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  box-shadow: 2px 2px 0 var(--navy);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}
.service-card {
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: var(--s-xl);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--navy); }
.service-card--featured {
  background: var(--yellow-light);
  border-color: var(--navy);
}
.service-card__badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  border: 2px solid var(--navy);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 800; white-space: nowrap;
  box-shadow: 2px 2px 0 var(--navy);
}
.service-card__icon { font-size: 2.25rem; margin-bottom: var(--s-md); }
.service-card__title { font-size: 1.15rem; font-weight: 900; color: var(--navy); margin-bottom: var(--s-sm); }
.service-card__text { font-size: 0.9rem; font-weight: 600; color: var(--text-light); margin-bottom: var(--s-md); line-height: 1.75; flex: 1; }
.service-card__list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--s-lg); }
.service-card__list li {
  font-size: 0.825rem; font-weight: 700;
  padding: 0.3rem 0.75rem;
  background: var(--navy-light);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-pill);
  color: var(--navy);
}
.service-card__link {
  font-size: 0.875rem; font-weight: 800; color: var(--pink);
  margin-top: auto;
}
.service-card__link:hover { text-decoration: underline; }

/* ============================================================
   SPECIALIZATIONS
   ============================================================ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}
.spec-item {
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: var(--s-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.spec-item:nth-child(2n) { box-shadow: var(--shadow-card-pink); border-color: var(--pink); }
.spec-item:nth-child(3n) { background: var(--yellow-light); }
.spec-item:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--navy); }
.spec-item:nth-child(2n):hover { box-shadow: 7px 7px 0 var(--pink); }
.spec-item__header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--s-sm); }
.spec-item__icon { font-size: 1.6rem; }
.spec-item__title { font-weight: 900; font-size: 1rem; color: var(--navy); }
.spec-item:nth-child(2n) .spec-item__title { color: var(--pink); }
.spec-item__text { font-size: 0.85rem; font-weight: 600; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: flex; flex-direction: column; gap: var(--s-lg); max-width: 820px; margin: 0 auto; }
.process-step { display: flex; gap: var(--s-lg); align-items: flex-start; }
.process-step__number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius-card);
  background: var(--yellow);
  color: var(--navy);
  border: 2.5px solid var(--navy);
  font-size: 1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.process-step:nth-child(even) .process-step__number { background: var(--pink); color: #fff; border-color: var(--navy); }
.process-step__content h3 { font-weight: 800; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.4rem; }
.process-step__content p { font-size: 0.9rem; font-weight: 600; color: var(--text-light); line-height: 1.75; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
  margin-bottom: var(--s-xl);
}
.pricing-card {
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: var(--s-xl);
  text-align: center; position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--navy); }
.pricing-card--featured { background: var(--yellow-light); }
.pricing-card__badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: #fff;
  border: 2px solid var(--navy);
  padding: 0.25rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 800; white-space: nowrap;
  box-shadow: 2px 2px 0 var(--navy);
}
.pricing-card__title { font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: var(--s-md); }
.pricing-card__price { display: flex; align-items: baseline; justify-content: center; gap: 0.2rem; margin-bottom: 0.25rem; }
.price-amount { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.price-currency { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.price-duration { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); }
.pricing-card__features {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: var(--s-xl); text-align: left; flex: 1;
}
.pricing-card__features li {
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-light);
  padding: 0.3rem 0.75rem;
  background: var(--cream);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--navy);
}
.pricing-note {
  background: var(--yellow-light);
  border: 2px solid var(--navy);
  border-radius: var(--radius-card);
  padding: 1rem var(--s-lg);
  display: flex; align-items: flex-start; gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.pricing-note p { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-top: var(--s-sm);
  font-size: 0.95rem; font-weight: 700; color: var(--text-light);
}
.stars { color: var(--yellow-dark); font-size: 1.35rem; letter-spacing: 0.05em; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg); margin-bottom: var(--s-xl);
}
.testimonial {
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: var(--s-xl);
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial:nth-child(2) { background: var(--navy-light); }
.testimonial:nth-child(3) { background: var(--pink-light); }
.testimonial__stars { color: #E6BC00; margin-bottom: var(--s-md); font-size: 1.1rem; }
.testimonial__text {
  font-size: 0.93rem; font-weight: 600;
  color: var(--text-light); line-height: 1.8;
  margin-bottom: var(--s-md);
  font-style: italic;
}
.testimonial__name { font-weight: 900; color: var(--navy); font-size: 0.9rem; }
.testimonial__detail { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; }
.testimonials-cta { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover { transform: translate(-2px,-2px); }
.faq-item:has(.faq-question[aria-expanded="true"]) {
  background: var(--yellow-light);
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--navy);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--s-lg);
  background: none; border: none; text-align: left;
  font-size: 1rem; font-weight: 800; color: var(--navy);
  cursor: pointer; gap: 1rem;
  font-family: inherit;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--pink); }
.faq-question:focus-visible { outline: 2px solid var(--navy); outline-offset: -2px; }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 400; color: var(--navy);
  transition: transform var(--transition-normal), background var(--transition-fast);
  line-height: 1;
  box-shadow: 2px 2px 0 var(--navy);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--pink); color: #fff; border-color: var(--navy);
}
.faq-answer {
  padding: 0 var(--s-lg) var(--s-lg);
  color: var(--text-light); font-weight: 600; line-height: 1.8;
}
.faq-answer p { margin-bottom: 0.5rem; }
.faq-answer ul { padding-left: 1.25rem; list-style: disc; gap: 0.35rem; display: flex; flex-direction: column; }
.faq-answer li { font-size: 0.9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-3xl); align-items: start;
}
.contact-info__items { display: flex; flex-direction: column; gap: var(--s-lg); margin-bottom: var(--s-xl); }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info__icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info__item strong {
  display: inline-block;
  font-weight: 800; color: var(--navy);
  margin-bottom: 0.35rem;
}
.contact-info__item address { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; font-weight: 600; }
.contact-info__item small { display: block; color: var(--text-muted); font-size: 0.8rem; font-weight: 700; }
.contact-link { color: var(--navy); font-weight: 800; display: block; }
.contact-link:hover { color: var(--pink); text-decoration: underline; }
.hours-list { display: flex; flex-direction: column; gap: 0.2rem; }
.hours-list li { font-size: 0.875rem; font-weight: 700; color: var(--text-light); }
.contact-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2.5px solid var(--navy);
  box-shadow: var(--shadow-card);
}
.map-placeholder {
  background: linear-gradient(135deg, var(--yellow-light), var(--navy-light));
  height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.9rem; font-weight: 700; color: var(--text-light); text-align: center;
}
.map-placeholder span { font-size: 3rem; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: var(--s-2xl);
  box-shadow: var(--shadow-card);
}
.contact-form { display: flex; flex-direction: column; gap: var(--s-md); }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label { font-size: 0.875rem; font-weight: 800; color: var(--navy); }
.required { color: var(--pink); }
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  font-size: 1rem; font-family: inherit; font-weight: 600;
  color: var(--text); background: var(--cream);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}
.form-input::placeholder { color: var(--text-muted); font-weight: 600; }
.form-input:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
  background: var(--white);
}
.form-input.error { border-color: var(--pink); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D3461' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.8rem; color: var(--pink); font-weight: 700; min-height: 1em; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer; font-size: 0.875rem; font-weight: 600; color: var(--text-light);
}
.form-checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.form-checkbox__mark {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: all var(--transition-fast);
  margin-top: 0.1rem;
}
.form-checkbox input:checked + .form-checkbox__mark {
  background: var(--navy); border-color: var(--navy);
}
.form-checkbox input:checked + .form-checkbox__mark::after {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem; height: 100%; font-weight: 900;
}
.form-checkbox input:focus-visible + .form-checkbox__mark { outline: 2px solid var(--pink); outline-offset: 2px; }
.form-success {
  background: var(--yellow-light);
  border: 2.5px solid var(--navy);
  border-radius: var(--radius-card);
  padding: var(--s-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.form-success strong { color: var(--navy); font-weight: 900; }
.form-success p { margin-top: 0.35rem; font-size: 0.875rem; color: var(--text-light); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-top: 4px solid var(--yellow);
}
.footer-top { padding: var(--s-4xl) 0 var(--s-2xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s-2xl);
}
.footer-tagline { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.65); line-height: 1.75; margin: var(--s-md) 0; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast); text-decoration: none;
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); }
.footer-col__title {
  font-size: 0.9rem; font-weight: 900; color: var(--yellow);
  margin-bottom: var(--s-md);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--yellow); }
.footer-address { font-size: 0.875rem; font-weight: 700; line-height: 1.8; color: rgba(255,255,255,0.7); }
.footer-address a { color: rgba(255,255,255,0.7); }
.footer-address a:hover { color: var(--yellow); }
.footer-hours { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-top: var(--s-sm); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: var(--s-lg) 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--yellow); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.fab-group {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  display: flex; flex-direction: column; gap: 0.65rem; z-index: 6000;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  border: 2.5px solid var(--navy);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  cursor: pointer; text-decoration: none; color: var(--navy);
  font-weight: 900;
}
.fab:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--navy); }
.fab:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.fab--phone { background: var(--yellow); }
.fab--whatsapp { background: #25D366; border-color: #1BA350; box-shadow: 4px 4px 0 #1BA350; }
.fab--whatsapp:hover { box-shadow: 7px 7px 0 #1BA350; }
.fab--top { background: var(--white); }

/* ============================================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --container-padding: 1.25rem; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: 1 / -1; }
  .section-inner--split { gap: var(--s-2xl); }
  .hero-content { gap: var(--s-xl); }
  .hero-photo-placeholder { width: 280px; height: 340px; }

  /* Mobile Nav */
  .main-nav .nav-list {
    display: none;
    position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--s-xl) var(--s-lg);
    gap: 0.25rem;
    overflow-y: auto;
    border-top: 2.5px solid var(--navy);
    z-index: 6999;
    align-items: flex-start;
  }
  .main-nav .nav-list.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 0.75rem 1rem; width: 100%; }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    border: none; border-left: 4px solid var(--yellow);
    margin-left: 1rem; border-radius: 0; padding: 0.25rem 0; display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .header-cta .header-phone { display: none; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --container-padding: 1rem;
    --s-4xl: 3rem;
    --s-3xl: 2rem;
  }

  .section-title { font-size: 1.75rem; }
  .section-inner--split { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-photo-placeholder { width: 100%; max-width: 300px; height: 300px; }
  .about-badge-card { right: 0; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero::before { width: 220px; height: 220px; top: -40px; right: -40px; }
  .hero::after { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-desc { margin: 0 auto var(--s-xl); }
  .hero-badge { margin: 0 auto var(--s-lg); }

  .cards-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .credentials-inner { justify-content: flex-start; gap: 0.75rem; }
  .process-step { flex-direction: column; gap: var(--s-md); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; gap: 0.5rem; }

  .a11y-toolbar { top: auto; bottom: 8rem; right: 0; transform: none; }
  .a11y-toggle { writing-mode: initial; transform: none; min-height: auto; padding: 0.5rem 0.7rem; border-radius: var(--radius-md) 0 0 var(--radius-md); }
  .a11y-panel { min-width: 260px; right: 0; }
  .a11y-restore-btn { bottom: 8rem; }

  .cookie-content { flex-direction: column; }
  .spec-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .a11y-toolbar, .cookie-banner, .fab-group,
  .hero-actions, .footer-social, .contact-form-wrap { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .hero { background: none; min-height: auto; padding: 1rem 0; }
  .hero-title, .hero-desc, .hero-badge { color: #000; }
  .section { padding: 1.5rem 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
}
