/* ============================================================
   DIDONA THEODORESCU · Cabinet Psihologie Satu Mare
   Stylesheet · v2.0 — Premium Wellness Edition
   ============================================================ */

:root {
  /* IRPI-INSPIRED · mov vizibil, saturat, premium · nu negru */
  --purple-darkest: #2D0A28;
  --purple-deep:    #4D1546;
  --purple-strong:  #5E1A55;
  --purple:         #7C2870;
  --purple-bright:  #963F89;
  --purple-medium:  #B062A2;
  --purple-light:   #D1A4C5;
  --purple-pale:    #EFE0E9;
  --purple-soft:    #FAF3F7;

  --white:        #FFFFFF;
  --paper:        #FFFFFF;
  --off-white:    #FCFAFB;

  /* Legacy aliases — mapate la noile valori premium */
  --cream:        #FFFFFF;
  --cream-soft:   #FCFAFB;
  --cream-deep:   #F2E0EB;

  --mint-pale:    #FFFFFF;
  --mint:         #C896B5;
  --mint-medium:  #A8528E;
  --mint-deep:    #6B1F5E;
  --mint-dark:    #2D0E28;

  --sand-pale:    #F2E0EB;
  --sand:         #C896B5;
  --blush-pale:   #FFFFFF;
  --blush:        #C896B5;

  --lavender-pale: #F2E0EB;
  --lavender-soft: #FBF5F9;
  --lavender:      #C896B5;
  --lavender-medium: #A8528E;
  --lavender-deep: #6B1F5E;
  --lavender-dark: #2D0E28;

  --ink:          #0F0B14;
  --ink-soft:     #2A1F30;
  --muted:        #5E5266;
  --muted-light:  #9B8E9F;
  --hairline:     #E8DDE5;
  --hairline-soft:#F4EAEF;

  /* Shadows premium */
  --shadow-sm: 0 1px 2px rgba(45,14,40,.06), 0 1px 3px rgba(45,14,40,.08);
  --shadow-md: 0 4px 12px rgba(45,14,40,.08), 0 12px 32px rgba(45,14,40,.06);
  --shadow-lg: 0 12px 32px rgba(45,14,40,.10), 0 24px 64px rgba(45,14,40,.08);
  --shadow-xl: 0 24px 60px rgba(45,14,40,.14), 0 48px 120px rgba(45,14,40,.08);

  --display: "Cormorant Garamond", "Fraunces", Georgia, serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --container: 1240px;
  --container-narrow: 960px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--purple); color: var(--cream-soft); }

h1,h2,h3,h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--purple);
  font-weight: 500;
}

::selection {
  background: var(--purple-deep);
  color: var(--white);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--body);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--purple);
}

.eyebrow--small {
  font-family: var(--body);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   TOP BAR (IRPI-style purple strip, deep & premium)
   ============================================================ */
.top-bar {
  background: var(--purple-deep);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 0;
  position: relative;
  z-index: 51;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar a {
  color: var(--white);
  opacity: .95;
  transition: opacity .2s var(--ease);
  font-weight: 500;
}
.top-bar a:hover { opacity: 1; color: var(--purple-light); }
.top-bar-info {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-family: var(--body);
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
}
.top-bar-info svg {
  width: 13px;
  height: 13px;
  opacity: .75;
  color: var(--purple-light);
}
.top-bar-phone {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 820px) {
  .top-bar-info span:first-child { display: none; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--hairline);
  transition: border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav:hover {
  box-shadow: 0 1px 0 var(--hairline), 0 8px 24px rgba(45,10,40,.04);
}
.nav.nav-scrolled {
  box-shadow: 0 1px 0 var(--purple-pale), 0 12px 32px rgba(45,10,40,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  font-family: var(--display);
}
.brand-text strong {
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.brand-text small {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-text small::before {
  content: "·";
  margin-right: 10px;
  color: var(--purple-light);
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--purple);
  transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 26px;
  background: var(--purple);
  color: var(--white);
  border-radius: 2px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 12px rgba(107,31,94,.20);
}
.nav-cta:hover {
  background: var(--purple-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45,14,40,.30);
}

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 1.5px;
  background: var(--ink);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream-soft);
    padding: 24px 32px;
    gap: 18px;
    border-top: 1px solid var(--hairline);
    box-shadow: 0 16px 32px rgba(45,58,53,.06);
  }
  .brand-text { flex-direction: column; gap: 0; }
  .brand-text small::before { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-solid {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(107,31,94,.25);
}
.btn-solid:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45,14,40,.30);
}
.btn-line {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-line:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(107,31,94,.22);
}
.btn-mint {
  background: var(--purple);
  color: var(--white);
}
.btn-mint:hover {
  background: var(--purple-deep);
}
.btn-arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
  font-weight: 400;
  font-size: 16px;
}
.btn:hover .btn-arrow { transform: translateX(6px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
  transition: all .25s var(--ease);
}
.link-arrow:hover {
  color: var(--purple);
  border-color: var(--purple);
  gap: 12px;
}

/* ============================================================
   HERO · split layout · fits viewport (no scroll needed)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 130px);
  height: calc(100vh - 130px);
  max-height: 780px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 100%;
}
.hero-text {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 120px);
  position: relative;
}
.hero-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(40px, 7vw, 120px);
  width: 64px;
  height: 4px;
  background: var(--purple);
}
.hero-text > .eyebrow { margin-bottom: 36px; }
.hero-text h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-text h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.hero-text-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-meta {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: -0.015em;
}
.hero-meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--purple-medium) 0%, var(--purple) 50%, var(--purple-deep) 100%);
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31,7,33,.10) 0%, rgba(31,7,33,.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 64px;
  background: var(--purple-light);
  z-index: 2;
}
.hero-image-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-image img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Photo container — img with gradient fallback */
.about-portrait img.portrait-photo,
.about-portrait-page img.portrait-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: inherit;
}

/* Blog/article photos */
.featured-article-img img,
.blog-card-img img,
.blog-mini-img img,
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: grid; place-items: center;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(45,58,53,.1);
  animation: scrollBounce 2.4s ease-in-out infinite;
  z-index: 5;
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    height: auto;
    max-height: none;
  }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .hero-text { padding: 60px 32px 80px; }
  .hero-image { min-height: 420px; height: 420px; }
  .scroll-cue { display: none; }
}

/* ============================================================
   SUB-HERO (pagini interioare)
   ============================================================ */
.subhero {
  padding: 60px 0 80px;
  text-align: center;
  background: var(--cream);
}
.breadcrumb {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb-sep { opacity: .4; }
.subhero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  max-width: 860px;
  margin: 0 auto 24px;
}
.subhero h1 em { font-style: italic; color: var(--purple); }
.subhero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   QUOTE BAND · contrast puternic
   ============================================================ */
.quote-band {
  padding: 120px 0;
  text-align: center;
  background: var(--white);
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.quote-band::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--purple);
}
.quote-band .container { max-width: 920px; }
.quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 90px;
  line-height: 0;
  color: var(--purple-light);
  display: inline-block;
  transform: translateY(32px);
  font-weight: 400;
}
.quote-band blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 880px;
  margin: 0 auto;
}
.quote-band blockquote::first-letter {
  color: var(--purple);
}
.quote-band cite {
  display: block;
  margin-top: 32px;
  font-family: var(--body);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ABOUT (homepage) · split 2-col, photo left, text right
   ============================================================ */
.about-home {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}
.about-home-text > .eyebrow { margin-bottom: 26px; }
.about-home-text h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.about-home-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.about-home-bio {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.about-home-bio em {
  color: var(--purple);
  font-style: italic;
}

.about-portrait {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0;
  aspect-ratio: 4/5;
  background: linear-gradient(170deg, var(--purple-pale) 0%, var(--purple-light) 50%, var(--purple) 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(20,6,15,.25);
}
.about-portrait::after {
  content: "";
  position: absolute;
  bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1.5px solid var(--purple);
  border-radius: 4px;
  z-index: -1;
}

@media (max-width: 880px) {
  .about-home-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 420px; margin: 0 auto; }
}
.about-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255,255,255,.5), transparent 60%);
}
.about-portrait-label {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-soft);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

/* ============================================================
   ABOUT (pagina interioara — Despre)
   ============================================================ */
.about {
  padding: 80px 0 100px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.about-portrait-page {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(170deg, var(--purple-pale) 0%, var(--purple-light) 50%, var(--purple) 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(45,14,40,.20);
}
.about-portrait-page::after {
  content: "";
  position: absolute;
  bottom: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 1px solid var(--purple);
  border-radius: 4px;
  z-index: -1;
}
.about-portrait-page::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255,255,255,.5), transparent 60%);
}
.about-text > .eyebrow { margin-bottom: 22px; }
.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.about-text h2 em { font-style: italic; color: var(--purple); }
.about-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-creds {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: 18px;
}
.about-cred {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink);
}
.about-cred-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--purple);
  font-weight: 400;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait-page { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   SERVICES — homepage cards (numbered, pastel)
   ============================================================ */
.services-home {
  padding: 120px 0;
  background: var(--cream);
}
.services-home-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.services-home .eyebrow { margin-bottom: 16px; }
.services-home h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.services-home h2 em { font-style: italic; color: var(--purple); }
.services-home-head p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.svc-card {
  padding: 60px 40px 50px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all .4s var(--ease);
  position: relative;
  min-height: 380px;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(45,58,53,.18);
}
/* Toate cardurile unificate · alb + accent mov · premium minimalist */
.svc-card--mint,
.svc-card--sand,
.svc-card--blush,
.svc-card--lavender,
.svc-card--cream {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--purple);
  box-shadow: 0 4px 12px rgba(45,14,40,.04), 0 16px 48px rgba(45,14,40,.04);
}
.svc-card:hover {
  box-shadow: 0 12px 24px rgba(45,14,40,.10), 0 32px 80px rgba(45,14,40,.08);
  border-top-color: var(--purple-deep);
  transform: translateY(-6px);
}

.svc-card-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 38px;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.svc-card h3 {
  font-size: 1.95rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  line-height: 1.05;
  color: var(--ink);
}
.svc-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1;
}
.svc-card-link {
  font-family: var(--display);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: center;
  transition: all .25s var(--ease);
}
.svc-card-link:hover {
  color: var(--purple);
  border-color: var(--purple);
}

.svc-cards-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svc-mini {
  padding: 28px 24px;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .3s var(--ease);
  text-align: left;
}
.svc-mini:hover {
  border-color: var(--purple-light);
  background: var(--paper);
  transform: translateY(-2px);
}
.svc-mini-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--purple);
}
.svc-mini h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.svc-mini p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.svc-mini-arrow {
  margin-top: 8px;
  color: var(--ink);
  opacity: .4;
  transition: all .3s var(--ease);
}
.svc-mini:hover .svc-mini-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .svc-cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .svc-cards-secondary { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .svc-cards-secondary { grid-template-columns: 1fr; }
}

/* ============================================================
   APPROACH (de ce alegi cabinetul)
   ============================================================ */
.approach {
  padding: 140px 0;
  background: var(--purple-pale);
  position: relative;
}
.approach::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--purple);
}
.approach-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.approach-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  margin-top: 16px;
}
.approach-head h2 em { font-style: italic; color: var(--purple); }
.approach-head p { color: var(--muted); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.approach-card {
  text-align: center;
}
.approach-num {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--purple);
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--purple);
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  transition: all .35s var(--ease);
}
.approach-card:hover .approach-num {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(107,31,94,.30);
}
.approach-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.approach-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .approach-grid { grid-template-columns: 1fr; gap: 40px; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   FEATURED BLOG (homepage)
   ============================================================ */
.featured-blog {
  padding: 120px 0;
  background: var(--cream);
}
.featured-blog-head {
  text-align: center;
  margin-bottom: 60px;
}
.featured-blog .eyebrow { margin-bottom: 14px; }
.featured-blog h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.featured-blog h2 em { font-style: italic; color: var(--purple); }

.featured-article {
  background: var(--cream-soft);
  border-radius: 16px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
  transition: all .35s var(--ease);
}
.featured-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -24px rgba(45,58,53,.15);
}
.featured-article-img {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, #C8DDD3 0%, #6FAA98 50%, #3A5950 100%);
  position: relative;
  overflow: hidden;
}
.featured-article-img::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 20%, rgba(255,255,255,.4), transparent 60%);
}
.featured-article-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--purple);
  margin-bottom: 14px;
}
.featured-article h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1.1;
}
.featured-article p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15.5px;
}

.blog-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-mini {
  background: var(--cream-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: all .35s var(--ease);
}
.blog-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(45,58,53,.15);
}
.blog-mini-img {
  aspect-ratio: 16/10;
  background: radial-gradient(circle at 40% 30%, #C8DDD3, #6FAA98 80%);
}
.blog-mini:nth-child(2) .blog-mini-img {
  background: radial-gradient(circle at 40% 30%, #F0E0D8, #C49585 80%);
}
.blog-mini:nth-child(3) .blog-mini-img {
  background: radial-gradient(circle at 40% 30%, #F2EBDD, #B89B7C 80%);
}
.blog-mini-body { padding: 26px 28px 28px; }
.blog-mini-img--accent {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-mini-img--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(187,133,170,.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(58,13,51,.30), transparent 50%);
  pointer-events: none;
}
.blog-mini-img-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  text-align: center;
}
.blog-mini-img-content svg {
  width: 48px;
  height: 48px;
  opacity: .9;
}
.blog-mini-img-content span {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.blog-mini-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--purple);
  margin-bottom: 10px;
}
.blog-mini h4 {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-mini p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 880px) {
  .featured-article { grid-template-columns: 1fr; padding: 32px; }
  .blog-mini-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--mint-pale);
}
.testimonials-head {
  text-align: center;
  margin-bottom: 70px;
}
.testimonials-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.testimonials-head h2 em { font-style: italic; color: var(--purple); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 40px 34px;
  text-align: center;
  transition: all .35s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(45,58,53,.15);
}
.testimonial-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--purple);
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 26px;
  font-weight: 400;
}
.testimonial-author {
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.testimonial-author strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.testimonial-author span {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* ============================================================
   CTA BAND (reusable)
   ============================================================ */
.cta-band {
  padding: 120px 0;
  text-align: center;
  background: var(--cream);
}
.cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-band .eyebrow { margin-bottom: 16px; }
.cta-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 14px 0 26px;
  line-height: 1.05;
}
.cta-band h2 em { font-style: italic; color: var(--purple); }
.cta-band p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CTA on dark mint background */
.cta-band--dark {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-darkest) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(168,82,142,.20), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(107,31,94,.30), transparent 50%);
  pointer-events: none;
}
.cta-band--dark > * { position: relative; }
.cta-band--dark h2 { color: var(--white); }
.cta-band--dark h2 em { color: var(--purple-light); }
.cta-band--dark p { color: rgba(255,255,255,.78); }
.cta-band--dark .eyebrow { color: var(--purple-light); }
.cta-band--dark .eyebrow::before { background: var(--purple-light); }
.cta-band--dark .btn-solid { background: var(--white); color: var(--purple-deep); box-shadow: 0 4px 14px rgba(0,0,0,.20); }
.cta-band--dark .btn-solid:hover { background: var(--purple-pale); color: var(--purple-deep); box-shadow: 0 12px 28px rgba(0,0,0,.30); }
.cta-band--dark .btn-line { color: var(--white); border-color: rgba(255,255,255,.45); }
.cta-band--dark .btn-line:hover { background: var(--white); color: var(--purple-deep); border-color: var(--white); }

/* ============================================================
   PROSE (pagini text — Despre extins, articole blog, GDPR)
   ============================================================ */
.prose-wrap { padding: 40px 0 100px; background: var(--cream); }
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.prose h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 400;
  margin: 56px 0 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.prose h2 em { font-style: italic; color: var(--purple); }
.prose h3 {
  font-size: 1.35rem;
  font-weight: 500;
  font-family: var(--display);
  margin: 38px 0 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.prose p { margin-bottom: 22px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--purple); font-style: italic; }
.prose ul, .prose ol {
  margin: 0 0 26px 24px;
  padding-left: 0;
}
.prose li {
  margin-bottom: 12px;
  padding-left: 8px;
}
.prose ul li::marker { color: var(--purple); content: "· "; }
.prose blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--mint);
  padding: 18px 0 18px 32px;
  margin: 40px 0;
  font-weight: 400;
}
.prose a {
  color: var(--purple);
  border-bottom: 1px solid var(--mint-deep);
  font-style: italic;
}
.prose a:hover { color: var(--purple-deep); }
.prose .prose-caption {
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

/* ============================================================
   SERVICE DETAIL (pagini servicii individuale)
   ============================================================ */
.svc-detail { padding: 60px 0 80px; background: var(--cream); }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.svc-detail-aside {
  position: sticky;
  top: 110px;
  padding: 36px 32px;
  background: var(--cream-soft);
  border-radius: 14px;
  border: 1px solid var(--hairline);
}
.svc-detail-aside h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 22px;
  color: var(--ink);
}
.svc-detail-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.svc-detail-aside ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.svc-detail-aside ul li:last-child { border-bottom: 0; }
.svc-detail-aside ul li span {
  font-family: var(--display);
  font-style: italic;
  color: var(--purple);
  font-size: 13.5px;
  text-align: right;
}
@media (max-width: 920px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-detail-aside { position: static; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   PROBLEMS pills (probleme abordate)
   ============================================================ */
.problems-section {
  padding: 80px 0 100px;
  background: var(--cream);
}
.problems-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 30px auto 0;
}
.pill {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  font-size: 14.5px;
  color: var(--ink);
  transition: all .25s var(--ease);
  cursor: default;
}
.pill:hover {
  background: var(--purple);
  color: var(--cream-soft);
  border-color: var(--purple);
  transform: translateY(-2px);
}
.pill--accent { background: var(--mint-pale); border-color: var(--mint-pale); }
.pill--blush  { background: var(--blush-pale); border-color: var(--blush-pale); }
.pill--sand   { background: var(--sand-pale); border-color: var(--sand-pale); }
.pill--lavender { background: var(--lavender-pale); border-color: var(--lavender-pale); }

/* ============================================================
   STEPS (homepage + cum-lucram)
   ============================================================ */
.steps { padding: 120px 0; background: var(--paper); }
.steps-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.steps-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.steps-head h2 em { font-style: italic; color: var(--purple); }
.steps-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.step-card {
  background: var(--paper);
  border-radius: 4px;
  padding: 48px 40px 42px;
  position: relative;
  transition: all .4s var(--ease);
  border: 1px solid var(--hairline);
}
.step-card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--purple);
  transition: width .4s var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(45,14,40,.12);
  border-color: var(--purple-light);
}
.step-card:hover::before { width: 50%; }
.step-card-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 42px;
  color: var(--purple);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.step-card-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}
.step-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.step-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* ============================================================
   STAGES list (cum lucram)
   ============================================================ */
.stages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.stages-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: baseline;
}
.stages-list li:last-child { border-bottom: 0; }
.stages-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--purple);
}
.stages-body strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.stages-body span {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ============================================================
   BLOG list page
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0 100px;
}
.blog-card {
  background: var(--cream-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(45,58,53,.18);
}
.blog-card-img {
  aspect-ratio: 4/3;
  background: radial-gradient(circle at 30% 30%, #C8DDD3, #6FAA98 80%);
  position: relative;
}
.blog-card:nth-child(3n+2) .blog-card-img {
  background: radial-gradient(circle at 30% 30%, #F0E0D8, #C49585 80%);
}
.blog-card:nth-child(3n+3) .blog-card-img {
  background: radial-gradient(circle at 30% 30%, #F2EBDD, #B89B7C 80%);
}
.blog-card-body {
  padding: 30px 32px 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--purple);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.blog-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-link {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: all .25s var(--ease);
}
.blog-card-link:hover {
  color: var(--purple);
  border-color: var(--purple);
}
@media (max-width: 920px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* article meta */
.article-meta {
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.article-meta-sep { opacity: .4; }
.article-hero-img {
  max-width: 920px;
  margin: 0 auto 60px;
  aspect-ratio: 16/8;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #C8DDD3, #6FAA98 80%);
}
.article-hero-img.botanical {
  background: radial-gradient(circle at 50% 60%, #8FBAA8 0%, #3A5950 80%);
}
.article-hero-img.warm {
  background: radial-gradient(circle at 30% 30%, #F0E0D8, #C49585 80%);
}

/* ============================================================
   FORM (contact)
   ============================================================ */
.form-wrap {
  background: var(--paper);
  border-radius: 16px;
  padding: 48px 44px;
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 60px -30px rgba(45,58,53,.1);
}
.form-wrap h2 {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.form-wrap h2 em { font-style: italic; color: var(--purple); }
.form-wrap > p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 15.5px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--body);
  font-size: 15px;
  padding: 15px 18px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: all .2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--purple);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(92,132,117,.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 22px 0 28px;
}
.form-field-check input { margin-top: 4px; }
.form-field-check a { color: var(--purple); border-bottom: 1px solid var(--mint-deep); }
@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 36px 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--cream-soft);
  padding: 80px 0 32px;
  color: var(--ink-soft);
  font-size: 14.5px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--hairline);
}
.footer h4 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 22px;
}
.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.footer-brand .brand { margin-bottom: 4px; }
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--ink-soft);
}
.footer-links a:hover { color: var(--purple); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GOOGLE REVIEWS (real testimonials)
   ============================================================ */
.reviews {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--lavender-soft) 100%);
}
.reviews-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.reviews-head .eyebrow { margin-bottom: 14px; }
.reviews-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-top: 12px;
}
.reviews-head h2 em { font-style: italic; color: var(--purple); }
.reviews-head p {
  color: var(--muted);
  margin-top: 18px;
  font-size: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.review-card {
  background: var(--paper);
  border-radius: 4px;
  padding: 40px 36px;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--purple);
  box-shadow: 0 4px 12px rgba(45,14,40,.04);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(45,14,40,.12);
  border-top-color: var(--purple-deep);
}
.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.review-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.review-google-badge svg {
  width: 14px;
  height: 14px;
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #FFB400;
}
.review-stars svg {
  width: 14px;
  height: 14px;
}
.review-card blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.review-author {
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.review-author strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-author span {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============================================================
   MANIFESTO · dialog quote (wow moment)
   ============================================================ */
.manifesto {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--purple-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(168,82,142,.18), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(107,31,94,.25), transparent 50%);
  pointer-events: none;
}
.manifesto > * { position: relative; }
.manifesto .manifesto-eyebrow {
  color: var(--purple-light);
}
.manifesto .manifesto-eyebrow::before,
.manifesto .manifesto-eyebrow::after {
  color: var(--purple-light);
}
.manifesto .manifesto-marker {
  color: var(--purple-light);
}
.manifesto .manifesto-q {
  color: rgba(255,255,255,.65);
}
.manifesto .manifesto-q .manifesto-marker {
  color: rgba(255,255,255,.45);
}
.manifesto .manifesto-a {
  color: var(--white);
}
.manifesto .manifesto-a em {
  color: var(--purple-light);
  font-style: italic;
}
.manifesto .manifesto-conclusion {
  color: var(--white);
  border-top-color: rgba(255,255,255,.18);
}
.manifesto .manifesto-conclusion em {
  color: var(--purple-light);
}
.manifesto-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
  position: relative;
}
.manifesto-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--purple);
  letter-spacing: 0.06em;
  margin-bottom: 50px;
}
.manifesto-eyebrow::before, .manifesto-eyebrow::after {
  content: "·";
  display: inline-block;
  margin: 0 14px;
  color: var(--purple-light);
}
.manifesto-line {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.manifesto-marker {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--purple);
  line-height: 1.4;
}
.manifesto-q {
  color: var(--ink-soft);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.5;
}
.manifesto-q .manifesto-marker { color: var(--muted); font-weight: 400; }
.manifesto-a {
  color: var(--ink);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  margin-bottom: 36px;
}
.manifesto-a em {
  font-style: italic;
  color: var(--purple);
}
.manifesto-conclusion {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--purple-light);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.005em;
}
.manifesto-conclusion em {
  font-style: italic;
  color: var(--purple);
}
@media (max-width: 620px) {
  .manifesto-line { grid-template-columns: 30px 1fr; gap: 12px; }
  .manifesto-marker { font-size: 18px; }
}

/* ============================================================
   DIPLOMAS (despre page)
   ============================================================ */
.diplomas-section {
  padding: 100px 0;
  background: var(--cream-soft);
}
.diplomas-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.diplomas-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-top: 14px;
}
.diplomas-head h2 em { font-style: italic; color: var(--purple); }
.diplomas-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px;
}
.diplomas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.diploma {
  background: var(--paper);
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 20px 40px -22px rgba(45,58,53,.18);
  transition: transform .35s var(--ease);
  margin: 0;
}
.diploma:hover {
  transform: translateY(-4px) scale(1.015);
}
.diploma img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.diploma figcaption {
  margin-top: 14px;
  padding: 4px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .diplomas-grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* ============================================================
   PHOTO PLACEHOLDER OVERLAY · "Aici trebuie poză"
   ============================================================ */
.photo-needed {
  position: relative;
}
.photo-needed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 58, 53, 0.62);
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}
.photo-needed-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--cream-soft);
  pointer-events: none;
}
.photo-needed-label svg {
  width: 38px;
  height: 38px;
  opacity: 0.92;
  margin-bottom: 16px;
}
.photo-needed-label-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-transform: uppercase;
}
.photo-needed-label-sub {
  font-family: var(--body);
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.92;
  max-width: 280px;
  line-height: 1.5;
}

/* smaller variant for blog thumbnails */
.blog-card .photo-needed-label svg,
.blog-mini .photo-needed-label svg {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
}
.blog-card .photo-needed-label-title,
.blog-mini .photo-needed-label-title {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.blog-card .photo-needed-label-sub,
.blog-mini .photo-needed-label-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* ============================================================
   ANIMAȚII PREMIUM · scroll reveals + micro-interactions
   ============================================================ */

/* Keyframes de bază */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(124,40,112,.25); }
  50%      { box-shadow: 0 4px 20px rgba(124,40,112,.45), 0 0 0 4px rgba(124,40,112,.08); }
}

/* HERO · animație la încărcare (cascadă) */
.hero-text > .eyebrow { animation: fadeUp .8s var(--ease) .15s both; }
.hero-text h1         { animation: fadeUp .9s var(--ease) .30s both; }
.hero-text-lead       { animation: fadeUp .9s var(--ease) .45s both; }
.hero-ctas            { animation: fadeUp .9s var(--ease) .60s both; }
.hero-meta            { animation: fadeUp .9s var(--ease) .75s both; }
.hero-image           { animation: scaleIn 1.4s var(--ease) .20s both; }
.scroll-cue           { animation: fadeIn .6s var(--ease) 1.5s both, scrollBounce 2.4s ease-in-out 1.5s infinite; }

/* SCROLL REVEALS · clase pentru elemente */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* Delay-uri pentru stagger */
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }

/* PHOTO ZOOM · efect smooth pe hover */
.photo-zoom {
  overflow: hidden;
  position: relative;
}
.photo-zoom > img,
.photo-zoom > .photo-bg {
  transition: transform 1.2s var(--ease);
}
.photo-zoom:hover > img,
.photo-zoom:hover > .photo-bg {
  transform: scale(1.06);
}

/* Buton primary · efect pulse subtil pe ATENȚIE */
.btn-solid.btn-pulse {
  animation: subtlePulse 3.5s ease-in-out infinite;
}
.btn:active { transform: scale(.98); }

/* Cards · hover smooth amplificat */
.svc-card,
.svc-mini,
.step-card,
.review-card,
.approach-card,
.blog-mini,
.blog-card {
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s var(--ease);
}

/* Link arrow universal smooth */
.link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .35s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* Brand logo hover gentle */
.brand:hover .brand-mark img {
  transform: rotate(-4deg) scale(1.05);
  transition: transform .5s var(--ease);
}
.brand-mark img {
  transition: transform .5s var(--ease);
}

/* Nav cta hover lift consistent */
.nav-cta svg {
  transition: transform .35s var(--ease);
}
.nav-cta:hover svg {
  transform: rotate(-12deg);
}

/* Smooth section transitions */
section {
  transition: background .4s var(--ease);
}

/* Hero image — ken burns subtil (cinematic feel) */
@keyframes kenBurns {
  0%   { transform: scale(1) translateX(0); }
  100% { transform: scale(1.08) translateX(-1%); }
}
.hero-image img.hero-photo {
  animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Top bar phone — subtle attention every 8s */
@keyframes phoneAttention {
  0%, 88%, 100% { opacity: 1; }
  92%, 96%      { opacity: .55; }
}
.top-bar-phone {
  animation: phoneAttention 9s ease-in-out infinite;
}

/* Section enter from below — pentru .container */
.section-enter {
  animation: fadeUp 1s var(--ease) both;
}

/* Counter / stat appear */
.hero-meta-num {
  display: inline-block;
}

/* Smooth selection color change */
::selection {
  background: var(--purple-deep);
  color: var(--white);
  transition: background .3s;
}

/* Accessibility — reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-image img.hero-photo { animation: none !important; }
}

/* ============================================================
   CREDIT AUTOR (footer) · neuroweb.ro
   ============================================================ */
.footer-made {
  flex-basis: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.footer-made a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .2s;
}
.footer-made a:hover { color: var(--purple); }

/* ============================================================
   FIX · butoane în interiorul .prose (Despre, articole blog)
   Regula .prose a colora textul mov; restaurăm aspectul de buton.
   ============================================================ */
.prose a.btn { border-bottom: 0; font-style: normal; }
.prose a.btn-solid { color: var(--white); }
.prose a.btn-line  { color: var(--purple); }
