/* DEFFE_DESIGN_SAFETY_v1 */
:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15,23,42,.14);
  --accent: #FF5A1F;
}
html,body{ min-height: 100%; }
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
main{ flex: 1 0 auto; }
footer{ margin-top: auto; }
img,svg,video{ max-width: 100%; height: auto; }
:root {
  --ivory: #FFFFFF;
  --ivory-soft: #F7F6F3;
  --charcoal: #0E0E10;
  --charcoal-soft: #4B4B52;
  --teal: #FF5A1F;
  --teal-dark: #D94613;
  --teal-light: #FF8A4D;
  --teal-soft: rgba(255, 90, 31, 0.06);
  --white: #FFFFFF;
  --border: #E7E5E1;
  --shadow-sm: 0 2px 8px rgba(26,26,26,0.06);
  --shadow-md: 0 8px 24px rgba(26,26,26,0.08);
  --shadow-lg: 0 16px 48px rgba(26,26,26,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', 'Playfair Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-light); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.18; color: var(--charcoal); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.15rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.28);
}
.btn--primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(14, 14, 16, 0.28);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn--light {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.btn--light:hover {
  background: var(--ivory-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm { padding: 10px 22px; font-size: 0.85rem; border-radius: 999px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14,14,16,0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand__text em { font-style: normal; color: var(--teal); }

.brand__logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(15, 61, 62, 0.18);
  transition: transform 0.25s ease;
}
.brand:hover .brand__logo { transform: scale(1.05); }
.brand__logo--free {
  width: auto;
  max-width: 160px;
  height: 44px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
.brand__logo--wide {
  width: auto;
  max-width: 132px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 8px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 767.98px) {
  .brand__logo { width: 38px; height: 38px; }
  .brand__logo--wide { max-width: 104px; height: 36px; }
}

.brand--light { color: var(--white); }
.brand--light .brand__text em { color: var(--ivory-soft); }
.brand--light .brand__logo { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35); }

.site-nav { display: flex; gap: 32px; }

.site-nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
}

.site-nav__link:hover, .site-nav__link.is-active { color: var(--teal); }
.site-nav__link:hover::after, .site-nav__link.is-active::after { width: 100%; }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  padding: 4px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch__link:hover { color: var(--white); }

.lang-switch__link.is-active {
  background: var(--teal);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 85% -10%, rgba(255, 90, 31, 0.10) 0%, transparent 55%),
    radial-gradient(800px 520px at -10% 110%, rgba(14, 14, 16, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #FBFAF8 0%, #FFFFFF 60%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(14,14,16,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,14,16,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 90%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.12rem;
  color: var(--charcoal-soft);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.65;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.hero__note {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__note::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-soft);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  margin: 30px 0 0;
  padding: 20px 0 0;
  max-width: 540px;
  border-top: 1px solid rgba(14,14,16,0.10);
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__stats span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--charcoal-soft);
}

.hero__media { position: relative; }

.hero__brand {
  width: min(78%, 440px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(14, 14, 16, 0.14));
}

.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.hero__card--logo {
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.hero__card--logo img {
  object-fit: contain;
  aspect-ratio: auto;
  width: min(85%, 420px);
  height: auto;
  margin: 0 auto;
  display: block;
  background: transparent;
  border-radius: 16px;
  padding: 24px;
}

.hero__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 44px 44px;
  margin: 0 auto;
  width: min(90%, 480px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 90, 31, 0.10) 0%, rgba(255, 90, 31, 0) 55%),
    linear-gradient(180deg, #ffffff 0%, var(--ivory-soft) 100%);
  border: 1px solid rgba(14,14,16,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__logo::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal));
  box-shadow: 0 2px 14px rgba(255, 90, 31, 0.55);
}
.hero__logo::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--charcoal), var(--teal) 55%, var(--teal-light));
}
.hero__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #33333a 0%, var(--charcoal) 65%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.7rem;
  letter-spacing: 0.05em;
  border: 3px solid var(--teal);
  box-shadow: 0 12px 30px rgba(14, 14, 16, 0.30), 0 0 0 10px var(--teal-soft);
  line-height: 1;
}
.hero__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  letter-spacing: 0.22em;
  color: var(--charcoal);
  line-height: 1;
  text-align: center;
}
.hero__logo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 999px;
  padding: 6px 16px;
}
.hero__logo-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px dashed rgba(14,14,16,0.10);
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  font-weight: 500;
  max-width: 380px;
}
.hero__logo-features span { position: relative; }
.hero__logo-features span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -8px;
  color: var(--teal);
}
.hero__badge--below {
  position: static;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
  margin: 20px auto 0;
  max-width: 460px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .hero__logo { padding: 44px 26px 34px; gap: 12px; }
  .hero__logo-mark { width: 92px; height: 92px; font-size: 2.2rem; }
}

.hero__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  gap: 10px;
  padding: 48px 40px 96px;
}
.hero__mark-docs {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 6rem);
  letter-spacing: 0.04em;
  color: var(--charcoal);
  line-height: 1;
}
.hero__mark-center {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero__mark-center::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--teal);
  margin: 14px auto 0;
}

.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.hero__badge-dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__badge strong { display: block; font-size: 0.95rem; }
.hero__badge small { font-size: 0.8rem; color: var(--charcoal-soft); }

/* Trust strip */
.trust {
  background: var(--charcoal);
  padding: 24px 0;
  border-top: 1px solid rgba(255,90,31,0.18);
}

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

.trust__item {
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}

.trust__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--teal);
  font-weight: 700;
}

/* Sections */
.section { padding: 96px 0; }
.section--tint { background: var(--ivory-soft); position: relative; }
.section--tint::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,14,16,0.10), transparent);
}

.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
.section__sub { color: var(--charcoal-soft); font-size: 1.05rem; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cards--grid { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 31, 0.28);
}
.card:hover::before { opacity: 1; }

.card__icon {
  margin-bottom: 20px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--charcoal) 0%, #232329 100%);
  border-radius: 14px;
  color: var(--teal);
  box-shadow: 0 8px 20px rgba(14,14,16,0.18);
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon span { font-size: 1.6rem; }

.card__title { font-size: 1.18rem; margin-bottom: 12px; font-weight: 700; }
.card__text { font-size: 0.94rem; color: var(--charcoal-soft); margin-bottom: 20px; line-height: 1.62; }
.card__link { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.06em; }
.card__link:hover { color: var(--teal); }

/* Service category groups */
.svc-group { margin-bottom: 64px; scroll-margin-top: 90px; }
.svc-group:last-of-type { margin-bottom: 0; }
.svc-group__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.svc-group__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 90, 31, 0.35);
  border-radius: 14px;
  background: var(--teal-soft);
}
.svc-group__title { font-size: 1.35rem; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.01em; }
.svc-group__desc { font-size: 0.94rem; color: var(--charcoal-soft); margin: 0; }

.cards--cat { grid-template-columns: repeat(3, 1fr); }

/* Top-level service category cards (homepage) */
.cards--cats {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
}
.cat-card__count {
  margin-top: auto;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.cat-card__btn { align-self: flex-start; }

/* All-services detail section on the homepage */
.svc-all { margin-top: 84px; }
.section__head--left { text-align: left; margin: 0 0 48px; }
.card--wide { max-width: 480px; }

/* About block (short intro) */
.about-lead {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0 auto 18px;
  max-width: 760px;
}
.about-body {
  font-size: 1.02rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}

/* Pricing block */
.pricing-text {
  font-size: 1.08rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Services page — grouped categories, single tap on mobile */
.svc-quick { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.svc-quick__chip { text-transform: none; letter-spacing: normal; font-weight: 600; }
.svc-detail { scroll-margin-top: 90px; margin-top: 72px; }
.svc-detail__head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.svc-detail__back {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}
.svc-detail__back:hover { text-decoration: underline; }
.svc-detail__title { font-size: 1.5rem; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.svc-detail__sub { color: var(--charcoal-soft); margin: 0 0 24px; max-width: 720px; }
.svc-detail__cards { margin-bottom: 0; }

/* Other services */
.other-services {
  margin-top: 56px;
  padding: 32px 32px 30px;
  border: 1px dashed rgba(14,14,16,0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
}
.other-services__head { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.other-services__title { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }
.other-services__sub { font-size: 0.9rem; color: var(--charcoal-soft); flex: 1; min-width: 260px; }
.other-services__row { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.chip span { font-size: 1rem; }
.chip:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* Founder */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.founder__media { display: flex; flex-direction: column; align-items: center; }

/* Clean 1:1 circular portrait — no white frame, no extra shape.
   Only a very thin brand-orange circular outline. */
.founder__portrait {
  width: min(100%, 300px);
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 31, 0.55);
  box-shadow: 0 28px 60px -28px rgba(14, 14, 16, 0.32);
}

.founder__portrait img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  display: block;
}

/* Small caption below the photo */
.founder__caption {
  margin-top: 16px;
  text-align: center;
  line-height: 1.45;
}

.founder__caption strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.founder__caption span {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 3px;
}

.founder__title {
  font-size: clamp(1.4rem, 2.9vw, 1.85rem);
  font-weight: 600;
  line-height: 1.32;
  margin-bottom: 20px;
}

.founder__lead {
  font-size: 1.06rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 16px;
}

.founder__mid {
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
}

.founder__bio { font-size: 0.97rem; color: var(--charcoal-soft); margin-bottom: 28px; }

.founder__facts {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  gap: 12px;
}

.founder__facts li {
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}

.founder__facts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Category detail groups: hidden until the card button opens them */
.svc-all .svc-group--hidden { display: none; }
.svc-all .svc-group:not(.svc-group--hidden) {
  margin-top: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid #f0e6dd;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px -26px rgba(14,14,16,0.2);
  animation: svc-pop 0.28s ease;
}
@keyframes svc-pop {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-group__close {
  margin-top: 22px;
  background: none;
  border: 1px solid #e8ddd2;
  color: var(--charcoal-soft);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.svc-group__close:hover { border-color: var(--orange, #f2672b); color: var(--orange, #f2672b); }

/* Company profile */
.company { text-align: center; }

.company__head { max-width: 720px; margin: 0 auto 48px; }
.company__head .eyebrow { display: inline-block; margin-bottom: 16px; }
.company__lead { font-size: 1.1rem; color: var(--charcoal-soft); }

.company__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.company__grid--three { grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 0 auto; }

.company__stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.company__stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.company__stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.company__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.company__stat-text { font-size: 0.92rem; color: var(--charcoal-soft); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  counter-reset: step;
}
.steps--four { grid-template-columns: repeat(4, 1fr); gap: 24px; }

.step {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.step__num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 90, 31, 0.55);
}

.step__title { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; }
.step__text { font-size: 0.92rem; color: var(--charcoal-soft); line-height: 1.6; }

/* Why list */
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  max-width: 960px;
  margin: 0 auto;
}

.why-list li {
  position: relative;
  padding: 20px 24px 20px 64px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-list li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 31, 0.35);
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(14,14,16,0.22);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 30px 26px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 31, 0.35);
}

.review__quote {
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: var(--font-serif);
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(255, 90, 31, 0.14);
  pointer-events: none;
  user-select: none;
}

.review__image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 2px;
}

.review__text {
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
  position: relative;
  z-index: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.review__meta {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
}

.reviews-empty {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 36px;
  border: 1px dashed rgba(14,14,16,0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
}

.reviews-empty p { font-size: 1rem; color: var(--charcoal); margin: 0; }
.reviews-empty__note { font-size: 0.9rem; color: var(--charcoal-soft); margin-top: 8px !important; }

/* FAQ */
.faq { display: grid; gap: 12px; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item[open] {
  border-color: rgba(255, 90, 31, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.2s ease;
}

.faq__item[open] summary::after {
  content: "–";
  background: var(--teal);
}

.faq__item summary:hover { color: var(--teal); }

.faq__item p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

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

.value {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.value__title { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.value__text { font-size: 0.92rem; color: var(--charcoal-soft); }

/* CTA */
.cta {
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,90,31,0.18) 0%, transparent 55%),
    radial-gradient(700px 400px at 90% 100%, rgba(255,138,77,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #141418 0%, #0E0E10 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.cta__inner { text-align: center; max-width: 560px; position: relative; }
.cta__title { font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 16px; font-weight: 700; letter-spacing: -0.015em; }
.cta__text { color: rgba(255,255,255,0.78); margin-bottom: 36px; font-size: 1.05rem; line-height: 1.6; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Page hero */
.page-hero {
  padding: 80px 0 56px;
  text-align: center;
  background: var(--ivory-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(255,90,31,0.08) 0%, transparent 60%),
    radial-gradient(500px 300px at 85% 100%, rgba(14,14,16,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > .container { position: relative; }

.page-hero__title { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.page-hero__sub { color: var(--charcoal-soft); font-size: 1.1rem; max-width: 620px; margin: 0 auto; line-height: 1.6; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }

.form__field input,
.form__field select,
.form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--ivory);
  transition: border-color 0.2s;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(255,90,31,0.12);
}

.form__field textarea { resize: vertical; min-height: 120px; }

.contact-info { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.contact-info__title { font-size: 1.2rem; margin-bottom: 20px; font-weight: 700; }

.contact-info__list { list-style: none; display: grid; gap: 16px; margin-bottom: 24px; }
.contact-info__list li { font-size: 0.92rem; }
.contact-info__list strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal-soft); margin-bottom: 2px; }

.contact-info__note {
  background: var(--ivory-soft);
  border-radius: 12px;
  padding: 16px;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

/* Alerts */
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 0.92rem; }
.alert--success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.alert--error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert--error ul { list-style: disc; padding-left: 20px; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.site-footer__tagline { font-size: 0.88rem; margin-top: 16px; max-width: 320px; line-height: 1.6; }

.site-footer .brand__logo--wide {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transform: scale(0.85);
  transform-origin: left center;
  opacity: 0.95;
}

.site-footer__nav { display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.site-footer__nav a:hover { color: var(--white); }

.site-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.site-footer__contact a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.site-footer__contact a:hover { color: var(--white); }
.site-footer__label { color: var(--white); font-weight: 700; letter-spacing: 0.08em; font-size: 0.9rem; margin-bottom: 6px; }
.site-footer__address { font-size: 0.82rem; color: rgba(255,255,255,0.5); padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4px; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
}

.btn--instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  align-self: flex-start;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF5A1F 0%, #D94613 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn--instagram:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.35);
}

.site-footer__langs { opacity: 0.6; letter-spacing: 0.06em; }

/* Page hero CTA */
.page-hero__cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Intro block */
.intro { max-width: 780px; }
.intro__text { text-align: left; }
.intro__lead { font-size: 1.05rem; color: var(--charcoal-soft); margin-bottom: 20px; }
.intro__facts { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.intro__facts li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  border-bottom: 1px dashed var(--border);
}
.intro__facts li:last-child { border-bottom: 0; }
.intro__facts li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__facts strong { color: var(--charcoal); }

/* Feature comparison cards */
.cards--duo { grid-template-columns: repeat(2, 1fr); }
.card--feature { position: relative; overflow: hidden; }
.card--feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #FF9E5A);
}
.card__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* Small info cards */
.cards--tight { gap: 16px; }
.card--sm { padding: 20px 18px; text-align: left; }
.card--sm .card__icon { width: 44px; height: 44px; font-size: 1.4rem; margin-bottom: 10px; }
.card--sm .card__title { font-size: 0.98rem; margin-bottom: 0; }

/* Responsive */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards--grid { grid-template-columns: repeat(2, 1fr); }
  .cards--duo { grid-template-columns: 1fr; }
  .cards--cat { grid-template-columns: repeat(2, 1fr); }
  .svc-group { margin-bottom: 52px; }
  .svc-group__head { gap: 16px; }
  .svc-group__num { width: 46px; height: 46px; font-size: 1.2rem; }
  .svc-group__title { font-size: 1.15rem; }
  .founder { grid-template-columns: 1fr; gap: 40px; }
  .steps, .steps--four { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .site-nav { display: none; }
  .company__grid, .company__grid--three { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: 1fr; }
  .reviews {
    grid-template-columns: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 14px;
    margin: 0 -4px;
  }
  .review {
    flex: 0 0 min(78%, 320px);
    scroll-snap-align: start;
  }
  .site-header__inner { height: 64px; gap: 12px; }
  .lang-switch__link { padding: 3px 8px; font-size: 0.72rem; }
  .btn--sm { padding: 8px 14px; font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .cards, .cards--grid, .cards--cat { grid-template-columns: 1fr; }
  .cards--duo, .cards--tight { grid-template-columns: 1fr; }
  .cards--cats { grid-template-columns: 1fr; }
  .cat-card { padding: 24px 22px; }
  .cat-card__btn { width: 100%; text-align: center; }
  .svc-all { margin-top: 56px; }
  .card--wide { max-width: none; }
  .svc-group { margin-bottom: 44px; }
  .svc-group__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .steps, .steps--four { grid-template-columns: 1fr; }
  .company__grid, .company__grid--three { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
  .cta { padding: 64px 0; }
  .page-hero { padding: 56px 0 40px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* DEFFE_BRAND_LOGO_v1 */
.deffe-brand-logo{width:32px;height:32px;display:inline-block;object-fit:contain;vertical-align:middle;margin-right:.75rem;border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.12);}
.navbar .deffe-brand-logo,.site-brand .deffe-brand-logo{flex:0 0 auto;}
