body {
  margin: 0;
  background: var(--bg-secondary);
  color: #fff;
  font-family: 'Inter', 'Work Sans', system-ui, sans-serif;
  line-height: 1.7;
}

:root {
  --bg-primary: #75607f;
  --bg-secondary: #E5E5E5;
  --bg-surface: #ffffff;
  --bg-card: rgba(143, 118, 157, 0.65);
  --accent-primary: #4b2e5a;
  --brand-secondary: #5a894b;
  --text-primary: #2f2b33;
  --text-secondary: #5f5966;
  --appointment-hero-offset: 120px;
  --hero-title-size: clamp(2rem, 2.4vw, 2.25rem);
  --header-height: clamp(88px, 9vw, 120px);
  --header-padding-inline: clamp(1.5rem, 3vw, 3rem);
  --shell-padding-inline: 100px;
  font-family: inherit;
  line-height: inherit;
}

@media (max-width: 1200px) {
  :root {
    --shell-padding-inline: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --shell-padding-inline: 24px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 0 var(--shell-padding-inline);
}

.site-header {
  background: transparent;
  color: #fff;
  padding: 0 200px;
  display: flex;
  height: var(--header-height);
  min-height: var(--header-height);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: background-color, border-color, box-shadow;
  width: calc(100% + var(--shell-padding-inline) * 2);
  margin-left: calc(var(--shell-padding-inline) * -1);
  margin-right: calc(var(--shell-padding-inline) * -1);
}

.page-journal main {
  margin-top: calc(var(--header-height) + 1rem);
}

main:not(.page-journal main) {
  margin-top: calc(var(--header-height) + 1rem);
}

.page-journal .site-header {
  transform: none;
  padding: 0 2rem;
  gap: 0.5rem;
}

@media (max-width: 1200px) {
  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 var(--header-padding-inline);
  }

  .site-nav {
    width: auto;
    order: 0;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.9rem;
  }

  .cta-stack {
    order: 0;
    width: auto;
    justify-content: flex-start;
  }

  .brand-title .brand-legal {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 1rem;
    padding: 0 1rem;
  }

  .site-nav {
    display: none;
  }

  .cta-link {
    display: none;
  }

  .brand-title .brand-legal {
    display: none;
  }

  .cta-stack {
    gap: 0.5rem;
  }

  .header-controls {
    gap: 0.5rem;
  }

  .menu-panel {
    right: 0;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    display: none !important;
  }

  .brand-title {
    display: none !important;
  }

  .cta-link {
    display: inline-flex;
  }

  .site-header {
    gap: 0.75rem;
    height: auto;
    min-height: 104px;
    padding-top: 0;
    padding-bottom: 0;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .cta-stack {
    gap: 0.5rem;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .logo,
  .header-controls,
  .cta-link,
  .menu-toggle {
    flex-shrink: 0;
  }
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.site-header.is-scrolled {
  background: #241533;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(15, 6, 18, 0.35);
}

.site-header > *:not(.header-particles) {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.header-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.header-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(0.5px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.header-particles .particle[data-flow='wide'] {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.language-selector {
  display: flex;
  align-items: center;
  margin: 0;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-left: 0.5rem;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  transform: translateY(0);
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded='true']::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded='true']::after {
  transform: translateY(0) rotate(-45deg);
}

.menu-toggle[aria-expanded='true'] span {
  opacity: 0;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15, 6, 18, 0.5);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translate(-100%, -10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-100%, 0);
}

.menu-panel .menu-duplicate {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-panel .menu-duplicate .nav-link {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.language-button {
  background: transparent;
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-indent: -9999px;
  background-image: url("../globe-limba-transparent.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  filter: brightness(0) invert(1);
}

.language-button:focus-visible {
  outline: 1px solid var(--accent-primary);
  border-radius: 50%;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-left: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}

.logo-link:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.language-switch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.language-switch:focus-visible {
  outline: none;
  border-color: var(--accent-primary);
  transform: scale(1.05);
}
.logo-mark {
  width: 60px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(1);
}

.logo-text {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}


.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-title .brand-name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
}

.brand-title .brand-legal {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  opacity: 0.7;
  text-transform: uppercase;
}

.site-nav {
  flex: 0 0 auto;
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  min-width: 0;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  transform: none;
}

.cta-stack {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  transform: none;
  margin-right: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: clamp(0.84rem, 0.95vw, 0.95rem);
  color: #fff;
  white-space: nowrap;
}

.cta-link {
  text-decoration: none;
  background: var(--bg-surface);
  color: var(--accent-primary);
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 25;
}

.primary-btn,
.secondary-btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
}

.primary-btn {
  width: 240px;
  height: 46px;
  background: var(--accent-primary);
  color: #fff;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
}

.secondary-btn {
  width: 320px;
  height: 46px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: clamp(0.78rem, 0.98vw, 0.9rem);
}

.primary-btn:hover,
.secondary-btn:hover,
.cta-link:hover {
  opacity: 0.85;
}

.section {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 96px 1.25rem;
  position: relative;
}

#services,
#appointment,
#contact {
  scroll-margin-top: calc(var(--header-height) + 100px);
}

.appointment-hero {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: none;
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  padding-inline: clamp(2rem, 4vw, 4rem);
  margin-top: 0;
  margin-bottom: -350px;
}

.appointment-hero h1,
.appointment-hero h2,
.appointment-hero p {
  color: #fff;
}

.appointment-hero h1,
.appointment-hero h2 {
  position: relative;
  top: -350px;
}

.appointment-hero-content {
  position: relative;
  top: -350px;
}

.appointment-form-section {
  background: var(--bg-card);
  color: #fff;
  padding: clamp(3rem, 5vw, 5rem) 1.25rem;
  margin-bottom: 0;
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 1100px) {
  .appointment-layout {
    grid-template-columns: 1fr;
  }

  .appointment-guide {
    width: 100%;
  }

  .gdpr-row input {
    margin-left: 0;
  }
}

.form-shell {
  background: transparent;
  border-radius: 0;
  padding: clamp(2rem, 4vw, 3rem);
  border: none;
}

.form-shell h2,
.form-shell p {
  color: #fff;
}

.form-intro {
  padding: 0;
  background: transparent;
}

.appointment-form-grid {
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.appointment-form-grid label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.detail-label {
  text-align: left;
  display: block;
  margin-left: 0;
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.appointment-form-grid input,
.appointment-form-grid select,
.appointment-form-grid textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.appointment-form-grid .required-label.is-required::after {
  content: ' *';
  color: #ffb3b3;
  font-weight: 600;
}

.appointment-form-grid .field-error {
  border-color: #ffb3b3;
  box-shadow: 0 0 0 1px rgba(255, 179, 179, 0.5);
}

.appointment-form-grid .field-error-text {
  grid-column: 1 / -1;
  color: #ffb3b3;
  font-size: 0.85rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.appointment-form-grid textarea {
  min-height: 140px;
  grid-column: 1 / -1;
}

.gdpr-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.gdpr-row input {
  margin-left: -200px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.appointment-form-grid button {
  grid-column: 1 / -1;
  width: 100%;
  border: none;
  background: var(--accent-primary);
  color: #fff;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.appointment-guide {
  background: rgba(27, 19, 36, 0.8);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.appointment-guide h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.appointment-guide p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.appointment-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appointment-guide li {
  padding-left: 1rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.appointment-guide li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
}

.whatsapp-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-link {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-weight: 600;
  background: #27423a;
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.whatsapp-link img {
  filter: brightness(0) invert(1);
}
.hero {
  --header-height: 88px;
  min-height: clamp(640px, 90vh, 980px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  padding-inline: clamp(2.5rem, 4vw, 4rem);
  padding-top: calc(var(--header-height) + clamp(3.2rem, 5vw, 5rem) + 260px);
  border-radius: 0;
  overflow: hidden;
  background: #3A2A4F;
  background-color: #3A2A4F;
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(-1 * var(--header-height) - 260px);
}

.page-services .hero {
  background: #3A2A4F;
  background-color: #3A2A4F;
}

.page-services .hero-3 {
  background: #3A2A4F !important;
  background-image: none !important;
  background-color: #3A2A4F !important;
}

.hero-inner {
  position: relative;
}

.hero-secondary {
  min-height: clamp(520px, 78vh, 780px);
  padding-top: clamp(3rem, 5vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  margin-top: -600px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-3 {
  min-height: auto;
  padding-bottom: clamp(4.5rem, 6vw, 6rem);
  margin-bottom: 100px;
}

.appointment-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3rem, 5vw, 5.5rem) clamp(2.5rem, 4vw, 5rem);
  min-height: clamp(520px, 78vh, 780px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #3A2A4F;
  position: relative;
  margin-top: 0 !important;
  box-shadow: none;
  border: none;
}

.appointment-hero.hero-secondary {
  margin-top: 100px !important;
}

.appointment-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 50%);
  pointer-events: none;
  opacity: 0.5;
}

.appointment-hero > * {
  position: relative;
  z-index: 1;
}

.appointment-form-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3rem, 5vw, 5.5rem) clamp(2.5rem, 4vw, 5rem);
  background: #272137;
}

.hero-2 {
  background: #3A3A3A;
  padding: clamp(3rem, 4vw, 4.5rem);
  margin: 40px 0 0;
  box-shadow: none;
  border: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-2 h2 {
  margin-bottom: 1.5rem;
}

.hero-panel-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-inline: clamp(2rem, 3vw, 3rem);
}

.hero3-inner {
  padding-inline: 0;
}

.hero-3 {
  background: #3A2A4F;
  background-image: none;
  background-color: #3A2A4F !important;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(4rem, 5vw, 5.5rem) clamp(2.5rem, 4vw, 4rem);
  margin-top: 40px;
  color: #fff;
}

.hero-4 {
  background: #3A3A3A;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(2rem, 3vw, 3.5rem) clamp(1.5rem, 3vw, 3.5rem);
  margin-top: 40px;
  min-height: clamp(250px, 32vh, 350px);
  color: #fff;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08) 0, transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05) 0, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 55%);
  background-blend-mode: screen;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  background-image: none;

.hero-4 .process-steps {
  position: relative;
  margin-top: 2rem;
  padding-top: 3rem;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: clamp(1rem, 1.5vw, 1.75rem);
  justify-content: center;
  align-items: stretch;
  width: min(1200px, 100%);
  overflow-x: auto;
  padding-bottom: 1rem;
}

.hero-4 .process-step {
  opacity: 0;
  transform: translateY(20px);
  animation: processFade 0.8s ease-out forwards;
}

.hero-4 .process-step:nth-child(1) {
  animation-delay: 0s;
}

.hero-4 .process-step:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-4 .process-step:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-4 .process-pulse {
  position: absolute;
  inset-inline: 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  top: 2.1rem;
  pointer-events: none;
}

@keyframes processFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-5,
.hero-6 {
  background: #3A3A3A;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3.5rem, 4.5vw, 5rem) clamp(2.5rem, 4vw, 4rem);
  margin-top: 40px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-7 {
  background: #3A3A3A;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3.5rem, 4.5vw, 5rem) clamp(2.5rem, 4vw, 4rem);
  margin-top: 40px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-footer {
  background: var(--bg-primary);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3.25rem, 4vw, 4.5rem) clamp(2rem, 3.5vw, 4rem);
  margin-top: 40px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(25, 8, 24, 0.95), rgba(29, 6, 30, 0.95));
  background-blend-mode: multiply;
  position: relative;
}

.hero-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.06), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 6px);
  opacity: 0.4;
}
.hero-map {
  background: #3A3A3A;
  padding: clamp(3rem, 4vw, 4.5rem) clamp(2rem, 3.5vw, 4rem);
  margin-top: 40px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-8 {
  background: linear-gradient(180deg, rgba(66, 38, 86, 0.95), rgba(29, 6, 30, 0.9));
  padding: clamp(0.6rem, 0.8vw, 0.8rem) clamp(0.8rem, 1vw, 1rem);
  margin-top: 40px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  min-height: 120px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero8-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: clamp(0.8rem, 1.5vw, 2rem);
  position: relative;
  align-items: start;
  padding-bottom: 0.5rem;
}

.hero8-separator {
  position: absolute;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  display: none;
}

.hero8-separator-1 {
  left: 25%;
}

.hero8-separator-2 {
  left: 50%;
}

.hero8-separator-3 {
  left: 75%;
}

.hero8-title {
  font-size: 0.8rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero8-inner p {
  max-width: 640px;
  line-height: 1.4;
  font-size: 0.9rem;
  margin: 0;
}
.hero8-inner,
.hero8-inner p,
.hero8-inner h2 {
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero8-column {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.hero8-contact {
  flex: 0 0 320px;
}

.hero8-social {
  flex: 0 0 220px;
}

.hero8-extra {
  flex: 0 0 240px;
  gap: 0;
}

.hero8-legal {
  flex: 0 0 360px;
  gap: 0.1rem;
}

.hero8-contact p,
.hero8-contact-link,
.hero8-social p,
.hero8-social-link,
.hero8-extra p,
.hero8-legal-link {
  white-space: normal;
}

.hero8-contact .hero8-title {
  white-space: normal;
}

@media (min-width: 1200px) {
  .hero8-contact p,
  .hero8-contact-link {
    white-space: nowrap;
  }

  .hero8-contact p,
  .hero8-contact-link,
  .hero8-social p,
  .hero8-social-link,
  .hero8-extra p,
  .hero8-legal-link {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .hero8-inner {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .hero8-contact,
  .hero8-social,
  .hero8-extra,
  .hero8-legal {
    flex: 0 0 auto;
  }

  .hero8-column {
    gap: 0;
  }

  .hero8-title {
    margin: 0;
  }

  .hero8-column > :not(.hero8-title) {
    display: none;
  }

  .hero8-separator {
    display: none;
  }
}

.hero8-legal-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero8-footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  width: 100%;
}

.hero8-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.9;
  white-space: nowrap;
}

.hero8-contact p {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .hero8-contact p,
  .hero8-contact-link {
    white-space: normal;
  }
}

.hero8-contact-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero8-contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.hero8-whatsapp {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.hero8-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.9;
}

.hero8-social-link svg,
.hero8-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero8-social-link img {
  filter: brightness(0) invert(1);
}

.hero8-social-link svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journal-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.journal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.journal-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.journal-card time {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.journal-card-excerpt {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.journal-card-link {
  margin-top: auto;
  align-self: flex-start;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.journal-card-link:hover {
  border-color: #fff;
}

.journal-empty {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

.journal-post-hero {
  background: linear-gradient(180deg, rgba(117, 96, 127, 0.95), rgba(29, 6, 30, 0.95));
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3rem, 4vw, 5rem) clamp(2rem, 3vw, 4rem);
  color: #fff;
}

.journal-post-hero time {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.journal-post-content {
  max-width: 860px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: clamp(2rem, 3vw, 3rem);
}

.journal-post-content h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  color: #fff;
}

.journal-post-content p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-post-hero {
  background: linear-gradient(180deg, rgba(117, 96, 127, 0.95), rgba(29, 6, 30, 0.95));
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3rem, 4vw, 5rem) clamp(2rem, 3vw, 4rem);
  color: #fff;
}

.hero-post-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .hero8-inner {
    grid-template-columns: 1fr;
  }

  .hero8-column {
    width: 100%;
  }
  .hero8-social,
  .hero8-extra,
  .hero8-legal {
    transform: none;
  }
}

.hero-map .map-frame {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 7px,
    #000 calc(100% - 7px),
    transparent 100%
  );
  -webkit-mask-composite: source-over;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 7px,
    #000 calc(100% - 7px),
    transparent 100%
  );
  mask-composite: add;
}

.hero-hero-policy {
  background: linear-gradient(180deg, rgba(117, 96, 127, 0.95), rgba(29, 6, 30, 0.95));
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3rem, 4vw, 5rem) clamp(2.5rem, 4vw, 5rem);
  margin-top: 40px;
  color: #fff;
}

.hero-policy-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(220px, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}

.policy-text h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 3vw, 2.6rem);
  position: relative;
  top: -100px;
}

.policy-text {
  text-align: left;
}

.policy-text p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.hero-hero-policy .policy-text h2 {
  margin: 1.6rem 0 0.6rem;
  text-align: left;
}

.cookie-policy-text {
  max-width: 900px;
  text-align: left;
  columns: 1;
  column-count: 1;
  column-gap: 0;
}

.cookie-policy-text h1 {
  margin-top: 0;
  position: relative;
  top: -100px;
}

.cookie-policy-text h2,
.cookie-policy-text h3 {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  align-self: flex-start;
  justify-self: flex-start;
}

.cookie-policy-text ul {
  padding-left: 1.2rem;
}

.policy-side article {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(15, 6, 18, 0.35);
  margin-bottom: 1rem;
}

.policy-side h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.policy-side p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero-policy-inner {
    grid-template-columns: 1fr;
  }

  .policy-side article {
    margin-bottom: 1rem;
  }
}

.hero-contact-banner {
  background: var(--bg-primary);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3rem, 4vw, 4rem) clamp(2.5rem, 4vw, 4rem);
  color: #fff;
  margin-top: 40px;
  min-height: clamp(320px, 50vh, 420px);
  display: flex;
  align-items: center;
}

#contact.hero-contact-banner {
  margin-top: 100px !important;
}

.hero-about,
.hero-contact-banner,
.hero-secondary,
.hero-hero-policy,
.hero-post-hero,
.hero-page-hero,
.hero-journal-push {
  background: #3A2A4F;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3.5rem, 5vw, 6rem) clamp(2.5rem, 4vw, 4.5rem);
  color: #fff;
  margin-top: calc(-1 * var(--header-height) - 260px);
  padding-top: calc(var(--header-height) + clamp(3.2rem, 5vw, 5rem) + 260px);
}

.hero-about-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-about-wide {
  max-width: 960px;
  margin: 0 auto;
}

.hero-about-wide p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.hero-journal-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}

.hero-journal-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-journal-text h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3.2vw, 3rem);
}

.hero-journal-text p {
  margin: 0;
  max-width: 500px;
}

.hero-journal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.hero-contact-banner .hero-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto;
  align-items: flex-start;
}

.hero-contact-banner h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
  transform: translateY(-350px);
}

.hero-contact-banner h2 + p {
  margin-top: -310px;
}

.hero-contact-banner p,
.hero-contact-banner h3 {
  margin: 0;
}

.hero-contact-banner .social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease;
}

.social-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.contact-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.whatsapp-icon {
  background-image: url('../whatsapp-logo-transparent black.png');
  filter: brightness(0) invert(1);
}

.hero-4 .process-step {
  position: relative;
  background: #4a4a4a !important;
  border-radius: 0;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(15, 6, 18, 0.4);
  overflow: hidden;
  min-width: 0;
  max-width: none;
}

.hero-4 .process-step::after {
  content: '';
  position: absolute;
  inset-inline: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-primary);
  left: calc(50% - 8px);
  top: -8px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.hero-4 .process-step span {
  display: none;
}

.hero-4 .process-step h3 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.hero-4 .process-step p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
}

.hero-5 .faq-summary {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-6 .principles-grid {
  margin-top: 2.5rem;
}

.hero-4 .process-step:nth-child(1)::after {
  left: 15%;
}

.hero-4 .process-step:nth-child(2)::after {
  left: 50%;
}

.hero-4 .process-step:nth-child(3)::after {
  left: 85%;
}

.hero-panel-inner h2,
.hero3-title,
.hero4-title,
.hero5-inner h2,
.hero6-inner h2,
.hero7-inner h2 {
  text-align: center;
  font-size: var(--hero-title-size);
  margin: clamp(0.5rem, 1.2vw, 1.5rem) 0 1rem;
  letter-spacing: 0.05em;
}

.hero4-title {
  position: relative;
  top: 0;
  color: #fff;
  margin-top: calc(clamp(1rem, 2vw, 2rem) + 50px);
}

.hero3-subtitle {
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-3 h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.hero-3 p {
  max-width: 720px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.hero3-services {
  margin-top: clamp(2rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 0.8rem;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .hero3-services {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .hero3-services {
    grid-template-columns: 1fr;
  }
}

.hero3-service-card {
  padding: 0.9rem;
  background: #3A3A3A;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.25);
}

.hero3-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero3-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
  background: transparent;
}

.hero3-icon--cat {
  width: 48px;
  height: 48px;
  position: relative;
}

.hero3-icon--cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  mask: url('../images/psycho-cat-icon-white-transparent-transparent.png') center/contain no-repeat;
  -webkit-mask: url('../images/psycho-cat-icon-white-transparent-transparent.png') center/contain no-repeat;
  z-index: 1;
}

.hero3-icon--cat::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-primary);
  top: 2px;
  right: 2px;
  box-shadow: 0 0 6px rgba(75, 46, 90, 0.8);
  z-index: 2;
}

.hero3-icon--logo {
  position: relative;
}

.hero3-icon--logo img {
  width: 80%;
  height: 80%;
  filter: brightness(0) invert(1);
}

.hero3-icon--logo::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  right: 2px;
  top: 2px;
  box-shadow: 0 0 6px rgba(75, 46, 90, 0.8);
}

.hero3-icon--logo img {
  filter: brightness(0) invert(1);
}

.hero3-icon svg {
  width: 100%;
  height: 100%;
}

.hero3-icon svg .icon-frame,
.hero3-icon svg path,
.hero3-icon svg circle:not(.icon-accent) {
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero3-icon svg .icon-accent {
  fill: var(--accent-primary);
  stroke: none;
}

.hero3-service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.hero3-service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.hero3-service-card .service-duration {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.hero3-service-card .service-desc {
  color: rgba(255, 255, 255, 0.75);
}

.hero-inner {
  width: min(1200px, 100%);
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  justify-content: flex-start;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  margin-bottom: 32px;
  line-height: 1.25;
  color: #fff;
.hero-content {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-content .hero-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}

.hero-visual {
  border-radius: 0;
  background-image: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1200&q=60');
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  right: 0;
  width: clamp(320px, 45vw, 520px);
  height: 100%;
  overflow: visible;
  z-index: 0;
}

.hero-stone-icon {
  position: absolute;
  right: clamp(0.5rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: clamp(120px, 20vw, 300px);
  fill: none;
  opacity: 0.95;
  filter: drop-shadow(0px 20px 25px rgba(0, 0, 0, 0.35));
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-stone-icon path,
.hero-stone-icon circle {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.75;
}

@media (min-aspect-ratio: 16/9) {
  .hero {
    min-height: clamp(680px, 82vh, 900px);
    padding-inline: clamp(3rem, 6vw, 6rem);
  }

  .hero-inner {
    gap: clamp(2rem, 3vw, 3.5rem);
  }
}

@media (min-aspect-ratio: 21/9) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .site-header .logo {
    justify-self: start;
  }

  .site-nav {
    justify-self: center;
  }

  .cta-stack {
    justify-self: end;
  }

  .hero {
    min-height: clamp(720px, 84vh, 960px);
    padding-bottom: clamp(3rem, 5vw, 5.5rem);
  }
}

@media (min-aspect-ratio: 235/100) {
  .hero {
    min-height: clamp(760px, 86vh, 1020px);
  }

  .hero-visual {
    max-height: clamp(320px, 50vw, 620px);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + clamp(2.5rem, 4vw, 3.5rem));
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(2rem, 3vw, 2.5rem);
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    max-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
  }

  .hero {
    padding-inline: clamp(1.5rem, 4vw, 2.5rem);
  }
}

.page-hero {
  background: var(--bg-primary);
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 4rem);
  border-radius: 0;
  box-shadow: 0 25px 45px rgba(36, 6, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero .card-grid {
  margin-top: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 28px;
  padding: clamp(2rem, 3vw, 3rem);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, background 0.3s ease;
  min-height: 320px;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  line-height: 1.3;
}

.service-card .service-duration {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0;
}

.service-card p {
  margin: 0;
  line-height: 1.6;
}

.service-icon-wrap {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: transparent;
}

.service-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.page-hero.services-lifted {
  padding-top: calc(clamp(3rem, 5vw, 5rem) - 20px);
}

.page-hero.services-lifted h1,
.page-hero.services-lifted p {
  margin-top: 0;
}

.page-hero.services-raised {
  transform: translateY(-250px);
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.6rem;
}

.hero-brand-lines {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.hero-brand-lines .brand-name {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
}

.hero-brand-lines .brand-legal {
  font-size: 1rem;
  letter-spacing: 0.35em;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .header-particles,
  .header-particles .particle {
    animation: none !important;
    opacity: 0.2;
  }
}

@media (max-width: 640px) {
  .header-particles {
    display: none;
  }
  .hero {
    min-height: auto;
    flex-direction: column;
    padding: clamp(2rem, 6vw, 3rem);
  }
  .hero-inner {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }
  .hero-visual {
    order: -1;
    width: 100%;
    max-width: none;
    max-height: none;
    border-radius: 24px;
  }
}

@keyframes backlightDrift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.05) translate3d(-10px, -8px, 0);
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section:not(.hero) {
  background: var(--bg-card);
  color: #fff;
  border-radius: 32px;
  margin: 0 auto 48px;
  box-shadow: 0 25px 45px rgba(47, 43, 51, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.section:not(.hero):last-of-type {
  margin-bottom: 0;
}

.about-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 35px 60px rgba(47, 43, 51, 0.25);
  position: relative;
  z-index: 3;
  margin-top: -120px;
  padding-top: clamp(3rem, 5vw, 5rem);
}

.site-footer {
  background: linear-gradient(180deg, rgba(117, 96, 127, 0.8), rgba(46, 28, 57, 0.95));
  color: #fff;
  padding: clamp(2rem, 3vw, 3rem) clamp(2rem, 3vw, 5rem);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: block;
  width: calc(100% + 200px);
  margin-left: -100px;
  margin-right: -100px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -30px 60px rgba(15, 6, 18, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

 .site-footer.footer-visible {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
 }

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0.5;
  pointer-events: none;
}

.site-footer.hero-footer .footer-content {
  position: relative;
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 1;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-contact {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-cta {
  display: inline-flex;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.hero-footer .footer-bottom {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

@media (min-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1.25fr repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.section h2,
.section h1 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.3;
  color: #fff;
}



.section p {
  max-width: 720px;
  line-height: 1.8;
  color: #fff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 1.75rem;
  min-height: 220px;
  box-shadow: 0 20px 40px rgba(47, 43, 51, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-icons {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-start;
}

.icon-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.icon-button img {
  width: 23px;
  height: 23px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(47, 43, 51, 0.3);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.card .small-link {
  display: inline-flex;
  margin-top: 1rem;
  text-decoration: none;
  color: var(--accent-primary);
  font-weight: 600;
}

.about-content,
.form-card,
.process-step,
.principle-card,
.map-placeholder {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(47, 43, 51, 0.15);
  color: #fff;
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(47, 43, 51, 0.15);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.about-content,
.form-card {
  padding: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.process-step {
  padding: 2rem;
}

.hero-4 .process-steps {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.hero-4 .process-step {
  flex: 0 0 calc((100% - 2 * clamp(1rem, 1.5vw, 1.75rem)) / 3);
}

.process-step span {
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.principle-card {
  padding: 1.75rem;
}

.principle-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.faq-section {
  margin-top: clamp(2rem, 3vw, 3rem);
}

.faq-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.faq-summary .faq-item h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

.faq-summary .faq-item p {
  margin-top: 0.5rem;
  color: rgba(47, 43, 51, 0.85);
  line-height: 1.7;
}

.final-cta {
  background: var(--bg-primary);
  color: #fff;
  border-radius: 32px;
  text-align: center;
}

@media (max-width: 65vw) {
  .site-header {
    flex-direction: row;
    align-items: center;
  }
  .site-nav {
    width: auto;
    margin-top: 0;
    justify-content: center;
    flex-wrap: nowrap;
  }
}

.final-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(47, 43, 51, 0.2);
  padding: 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 140px;
}

button[type='submit'] {
  border: none;
  background: var(--accent-primary);
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

.map-placeholder {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
  border-style: dashed;
}

.final-cta {
  background: var(--bg-primary);
  color: #fff;
  border-radius: 32px;
  text-align: center;
}

.final-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 1.25rem;
  }

  .site-header {
    flex-direction: row;
  }

  .final-cta {
    text-align: left;
  }

.primary-btn,
.secondary-btn {
  width: 100%;
  max-width: none;
}
}

.footer-graphic {
  height: 120px;
  background: linear-gradient(180deg, rgba(75, 32, 90, 0.25), rgba(43, 16, 51, 0.45));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.footer-graphic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% -10%, rgba(255, 255, 255, 0.05), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.data-notice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.data-notice {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(8px);
  z-index: 1001;
}

.data-notice.is-visible,
.data-notice-overlay.is-visible {
  opacity: 1;
}

.data-notice.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.data-notice-inner {
  width: min(520px, 90vw);
  background: #27423a !important;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(15, 6, 18, 0.45);
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
  pointer-events: auto;
}

.data-notice-inner h2 {
  margin: 0;
  font-size: 1.3rem;
  text-align: left;
}

.data-notice-inner p {
  margin: 0;
  line-height: 1.6;
}

.data-notice-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.data-notice-button {
  align-self: start;
  border: none;
  background: #fff;
  color: #2f2b33;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

body[data-scroll-footer='true'] .footer-graphic {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
}

body[data-scroll-footer='true'] .footer-graphic.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
