/* segitojelenlet.hu – segítő jelenlét az online térben */

:root {
  --ink: #24413b;
  --ink-dark: #1a302b;
  --clay: #b08968;
  --clay-deep: #8a6247;
  --clay-light: #d9bfa7;
  --white: #ffffff;
  --sand-50: #faf8f4;
  --sand-100: #f3efe8;
  --sand-200: #e7e0d5;
  --gray-500: #6d7873;
  --gray-700: #3d4a46;
  --text: #24413b;
  --shadow-sm: 0 1px 3px rgba(36, 65, 59, 0.07);
  --shadow-md: 0 4px 20px rgba(36, 65, 59, 0.09);
  --shadow-lg: 0 8px 40px rgba(36, 65, 59, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1140px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Lora", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 1.16875rem;
}

.hero__title,
.section-title,
.page-hero__title,
.service-card__title,
.audience-card__title,
.process__title,
.care-card__title,
.contact-cta__title,
.pricing-card__price,
.addon-pricing__rate,
.testimonial-card__quote,
.footer__title,
.logo__name {
  font-family: var(--font-display);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--ink-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(36, 65, 59, 0.22);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn--secondary:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn--lg {
  padding: 17px 34px;
  font-size: 1rem;
}

/* ── Section labels ── */

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.625rem, 3.6vw, 2.125rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.section-lead {
  margin: 12px auto 0;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Header ── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--sand-100);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__mark {
  width: 45px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 3px;
}

.logo__domain {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav__link {
  position: relative;
  padding: 10px;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__link:hover {
  color: var(--clay);
}

.header__cta {
  flex-shrink: 0;
  padding: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Hero ── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 82vh, 820px);
  padding: 88px 0 96px;
  overflow: hidden;
  background: var(--sand-50);
}

.hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: -15%;
  bottom: 0;
  width: 115%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

/* Bal oldali szöveg olvashatósága a teljes szélességű fotón */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(250, 248, 244, 0.97) 0%,
    rgba(250, 248, 244, 0.93) 34%,
    rgba(250, 248, 244, 0.72) 52%,
    rgba(250, 248, 244, 0.28) 72%,
    rgba(250, 248, 244, 0.08) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  font-size: 0.89375rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 20px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--clay-deep);
}

.hero__tagline {
  max-width: 30em;
  margin-bottom: 24px;
  font-size: clamp(1.16875rem, 1.98vw, 1.375rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--gray-700);
}

.hero__lead {
  max-width: 34em;
  margin-bottom: 34px;
  font-size: 1.16875rem;
  line-height: 1.7;
  color: var(--gray-500);
}

.hero__services {
  display: flex;
  flex-direction: column;
}

.hero__services li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.hero__services li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 52px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--sand-200);
}

.hero__service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--clay-deep);
}

.hero__service-icon svg {
  width: 22px;
  height: 22px;
}

.hero__service-icon svg :is(path, circle, rect, ellipse) {
  stroke-width: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 34px;
}

.hero__note {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clay-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}

.hero__note:hover {
  color: var(--ink);
}

.text-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clay-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.text-link:hover {
  color: var(--ink);
}

/* ── Services ── */

.services {
  padding: 80px 0;
  background: var(--sand-50);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.section-cta--dual {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}

.section-cta--booking {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.section-cta__lead {
  max-width: 36em;
  margin: 0;
  text-align: center;
  color: var(--gray-500);
  line-height: 1.65;
}

.section-cta__alt {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.section-cta__alt a {
  color: var(--clay-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}

.section-cta__alt a:hover {
  color: var(--ink);
}

.booking-cta {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.booking-cta__note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.booking-cta__note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-hero {
  padding: 120px 0 48px;
  background: var(--ink);
  color: var(--white);
}

.page-hero .section-label {
  color: var(--clay);
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 720px;
}

.page-hero__desc {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.services--alt {
  background: var(--white);
}

.addon-pricing {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.addon-pricing__rate {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.addon-pricing__rate strong {
  color: var(--clay-deep);
}

.addon-pricing__desc {
  color: var(--gray-500);
  line-height: 1.65;
}

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

.services__grid--2col {
  grid-template-columns: 1fr 1fr;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--clay);
}

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card__desc {
  color: var(--gray-500);
  line-height: 1.65;
}

.faq-page .service-card__title .faq-q-lead {
  font-family: var(--font-body);
  font-size: 150%;
  font-weight: 300;
  line-height: 1.3;
}

.faq-page .service-card__title .faq-q-rest {
  display: block;
  margin-top: 0.35em;
  font-weight: 600;
  line-height: 1.4;
}

.faq-page .services__grid {
  overflow: visible;
}

.faq-page .service-card {
  position: relative;
  z-index: 0;
  cursor: pointer;
  transform-origin: center center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-page .service-card:hover {
  z-index: 5;
  box-shadow: 0 14px 48px rgba(36, 65, 59, 0.22);
  transform: scale(1.003);
}

.faq-page .service-card.is-expanded,
.faq-page .service-card.is-expanded:hover {
  z-index: 10;
  box-shadow: 0 14px 48px rgba(36, 65, 59, 0.22);
  transform: scale(1.15);
}

/* ── Rólam ── */

.about {
  padding: 96px 0;
  background: var(--ink);
  color: var(--white);
}

.about .section-label {
  color: var(--clay-light);
}

.about .section-title {
  color: var(--white);
}

.about .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.17fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.about__content::after {
  content: "";
  display: table;
  clear: both;
}

.about__photo {
  float: left;
  width: min(240px, 42%);
  margin: 0 28px 12px 0;
  padding-top: 10px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(-1.2, 1.2);
}

.about__text p {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.about__text p + p {
  margin-top: 18px;
}

.about__card {
  padding: 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.about__card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about__questions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.about__questions li {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.about__questions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.about__note {
  margin: 0;
  font-size: 1.03125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Audience fit ── */

.audience {
  padding: 80px 0;
  background: var(--sand-50);
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.audience-card--yes {
  background: var(--white);
  border: 1px solid rgba(176, 137, 104, 0.35);
}

.audience-card--no {
  background: var(--white);
  border: 1px solid var(--sand-200);
}

.audience-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}

.audience-card--yes .audience-card__title {
  color: var(--clay-deep);
}

.audience-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--gray-700);
  line-height: 1.55;
  font-size: 1.05rem;
}

.audience-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.audience-card--no .audience-card__list li::before {
  background: var(--gray-500);
}

.audience-card__note {
  margin-top: 20px;
  font-size: 1.045rem;
  line-height: 1.55;
  color: var(--gray-500);
}

.audience-card__cta {
  display: inline-flex;
  margin-top: 20px;
}

.audience__footer {
  margin-top: 32px;
  text-align: center;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── Process ── */

.process {
  padding: 80px 0;
  background: var(--white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -8px;
  width: 16px;
  height: 1px;
  background: var(--clay);
  opacity: 0.5;
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--clay-light);
  color: var(--clay-deep);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.process__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.process__desc {
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── References ── */

.references {
  padding: 80px 0;
  background: var(--sand-50);
}

.references__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.references__card {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 12px 16px 12px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.references__card:hover {
  border-color: var(--clay);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.references__thumb {
  flex-shrink: 0;
  width: 96px;
  height: 72px;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius) - 2px);
  background: var(--sand-200);
}

.references__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.references__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.references__card:hover .references__title {
  color: var(--clay-deep);
}

.references__subtitle {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--gray-500);
}

.references__note {
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 1.045rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ── Pricing ── */

.pricing {
  padding: 96px 0;
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card--dark {
  background: var(--ink);
  color: var(--white);
}

.pricing-card--light {
  background: var(--white);
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
}

.pricing-card__header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pricing-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 0;
}

.pricing-card--light .pricing-card__label {
  color: var(--clay-deep);
  margin-bottom: 20px;
}

.pricing-card__price {
  font-size: clamp(2.125rem, 4.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing-card__price-unit {
  display: inline-block;
  margin-left: 12px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card__desc {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: none;
}

.pricing-card__desc a {
  color: var(--clay-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-card__desc a:hover {
  color: var(--white);
}

.pricing-card__maintenance-title {
  font-size: 1.03125rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 28px 0;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-card__features .icon-check {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--clay-light);
}

.pricing-card__renewal-price {
  font-weight: 600;
  color: var(--white);
}

.pricing-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.care-card__mark {
  width: 72px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--clay);
}

.care-card__title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 14px;
}

.care-card__desc {
  color: var(--gray-500);
  line-height: 1.7;
}

.care-card__desc + .care-card__desc {
  margin-top: 16px;
}

.pricing-card--light .pricing-card__body {
  justify-content: center;
}

/* ── Testimonials ── */

.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  box-sizing: border-box;
  padding: 28px 26px;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: var(--clay);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.testimonial-card__quote {
  font-weight: 400;
  font-size: 1.16875rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 20px;
}

.testimonial-card__quote + .testimonial-card__quote {
  margin-top: -12px;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.testimonial-card:hover .testimonial-card__author {
  color: var(--clay-deep);
}

.testimonial-card__role {
  color: var(--gray-500);
}

.testimonial-card__role a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.testimonial-card__role a:hover {
  color: var(--clay-deep);
}

.testimonial-card--invite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-style: dashed;
  background: var(--white);
}

.testimonial-card__invite {
  font-size: 1.045rem;
  line-height: 1.55;
  color: var(--gray-500);
}

.testimonial-card__invite a {
  color: var(--clay-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.testimonial-card__invite a:hover {
  color: var(--ink);
}

/* ── Contact CTA ── */

.contact-cta {
  padding: 96px 0;
  background: var(--sand-50);
}

.contact-cta__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-cta__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--clay);
}

.contact-cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.contact-cta__desc {
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.65;
}

.contact-cta__note {
  margin-top: 20px;
  font-size: 1.03125rem;
  color: var(--gray-500);
}

.contact-cta__note a {
  color: var(--clay-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-cta__note a:hover {
  color: var(--ink);
}

/* ── Contact modal ── */

body.modal-open {
  overflow: hidden;
}

.form-modal[hidden] {
  display: none !important;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 48, 43, 0.52);
  backdrop-filter: blur(4px);
}

.form-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px 28px;
}

.form-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.form-modal__close:hover {
  background: var(--sand-200);
}

.form-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 2rem 12px 0;
  line-height: 1.3;
}

.form-modal__lead {
  margin: 0 0 20px;
  color: var(--gray-500);
  line-height: 1.65;
}

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

.contact-form--modal .contact-form__submit {
  width: 100%;
}

.contact-form__recaptcha-note {
  margin: 0;
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--gray-500);
}

.contact-form__recaptcha-note a {
  color: var(--clay-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.contact-form {
  text-align: left;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.contact-form__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
}

.contact-form__field {
  margin-bottom: 0;
}

.contact-form__col--right {
  min-height: 100%;
}

.contact-form__field--message {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-form__field--message .contact-form__textarea {
  flex: 1;
  min-height: 0;
  height: 100%;
}

.contact-form__note {
  flex-shrink: 0;
  margin: 0;
  font-size: 0.9625rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.contact-form__note a {
  color: var(--clay-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__note a:hover {
  color: var(--ink);
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form__label--required::after {
  content: " *";
  color: var(--clay);
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.18);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2324413b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 12px;
  text-align: left;
  flex-shrink: 0;
}

.contact-form__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--clay);
  cursor: pointer;
}

.contact-form__consent-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gray-700);
  cursor: pointer;
}

.contact-form__consent-label a {
  color: var(--clay-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__consent-label a:hover {
  color: var(--ink);
}

.contact-form__required-mark {
  color: var(--clay);
  margin-left: 2px;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  line-height: 1.5;
  text-align: center;
}

/* ── Legal ── */

.section-legal {
  padding: 64px 0 96px;
  background: var(--sand-50);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--gray-700);
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 12px 0 0;
}

.legal-content ul li + li {
  margin-top: 10px;
}

.legal-content a {
  color: var(--clay-deep);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--ink);
}

.legal-content__back {
  margin-top: 48px;
}

.form-status.is-success {
  color: var(--ink);
  background: var(--sand-100);
  border: 1px solid var(--clay-light);
}

.form-status.is-error {
  color: #7a3b2e;
  background: #fdf4f0;
  border: 1px solid #eccfc2;
}

/* ── Success page ── */

.section-success {
  min-height: calc(100vh - 220px);
  display: grid;
  align-items: center;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(176, 137, 104, 0.12), transparent 55%),
    linear-gradient(180deg, var(--sand-50), var(--white));
  text-align: center;
}

.success-panel {
  max-width: 36rem;
  margin: 0 auto;
}

.success-panel .section-title {
  margin-bottom: 1rem;
}

.success-message {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0 auto 1.75rem;
}

.success-actions {
  margin: 0;
}

/* ── Footer ── */

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
}

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

.footer__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--clay);
}

.footer__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer__desc {
  opacity: 0.75;
  line-height: 1.5;
}

.footer__brand {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand-text {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clay-light);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  opacity: 0.6;
}

.footer__meta {
  white-space: nowrap;
}

.footer__version {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.6;
}

.footer__version-text {
  white-space: nowrap;
}

/* ── Icons (inline SVG helpers) ── */

.icon-check {
  width: 20px;
  height: 20px;
  color: var(--clay);
}

/* ── Responsive ── */

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

  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }

  .process__step:not(:last-child)::after {
    display: none;
  }

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

  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__photo {
    width: min(220px, 52%);
    margin-right: 20px;
  }

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

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--sand-100);
    box-shadow: var(--shadow-md);
  }

  .nav--open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 12px 0;
  }

  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: clamp(520px, 78vh, 680px);
    padding: 56px 0 64px;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(250, 248, 244, 0.97) 0%,
      rgba(250, 248, 244, 0.94) 58%,
      rgba(250, 248, 244, 0.82) 100%
    );
  }

  .hero__content {
    max-width: none;
  }

  .hero__eyebrow {
    font-size: 0.825rem;
    margin-bottom: 16px;
  }

  .hero__title {
    margin-bottom: 16px;
  }

  .hero__tagline {
    margin-bottom: 20px;
    font-size: 1.16875rem;
  }

  .hero__lead {
    margin-bottom: 28px;
    font-size: 1.1rem;
  }

  .hero__services li {
    font-size: 0.9375rem;
    min-height: 48px;
    padding: 9px 0;
  }

  .hero__services li:not(:last-child)::after {
    left: 48px;
  }

  .hero__service-icon {
    width: 34px;
    height: 34px;
  }

  .hero__service-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section-cta--dual {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .section-cta--dual .btn {
    width: 100%;
  }

  .hero__note {
    text-align: center;
  }

  .services__grid,
  .services__grid--2col {
    grid-template-columns: 1fr;
  }

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

  .about {
    padding: 72px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__photo {
    float: none;
    width: min(280px, 100%);
    margin: 0 auto 24px;
  }

  .about__card {
    padding: 26px 22px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 26px;
  }

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

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form__textarea {
    min-height: 90px;
  }
}
