/* =========================================================
   דורעם אביר — ליווי השקעות נדל"ן בבוקרשט
   Design system: כחול-שחור עמוק + זהב, RTL, Frank Ruhl Libre / Heebo
   ========================================================= */

:root {
  --navy-deep: #101923;
  --charcoal-blue: #192532;
  --card-blue: #22303D;
  --gold: #C9A55A;
  --gold-soft: rgba(201, 165, 90, 0.35);
  --cream: #F3EFE6;
  --text-soft: #E8E8E8;
  --text-muted: rgba(232, 232, 232, 0.68);

  --font-serif: 'Frank Ruhl Libre', 'Noto Serif Hebrew', serif;
  --font-sans: 'Heebo', 'Noto Sans Hebrew', sans-serif;

  --container-max: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --radius-s: 4px;
  --radius-m: 8px;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  direction: rtl;
  text-align: right;
  background: var(--navy-deep);
  color: var(--text-soft);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; margin: 0; color: var(--cream); }
p { margin: 0; }

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

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-lede {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.gold-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 22px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-s);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}
.btn-icon { width: 1em; height: 1em; flex-shrink: 0; }
.btn-block .btn-icon { width: 14px; height: 14px; }
.btn-arrow svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.65;
  transform: translateY(1px);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #dab975;
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  border-color: rgba(232, 232, 232, 0.35);
  color: var(--cream);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--transition-medium), padding var(--transition-medium), box-shadow var(--transition-medium);
}
.site-header.is-scrolled {
  background: rgba(16, 25, 35, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(201,165,90,0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: cover;
  flex-shrink: 0;
  transition: width var(--transition-medium), height var(--transition-medium);
}
.site-header.is-scrolled .brand-mark { width: 44px; height: 44px; }
.brand-name {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--cream);
  line-height: 1.2;
}
.brand-name span {
  display: block;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-size: 15px;
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-soft);
  transition: color var(--transition-fast);
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 17px; height: 17px; flex-shrink: 0; }

.icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232,232,232,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.icon-link svg { width: 18px; height: 18px; }
.icon-link:hover, .icon-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232,232,232,0.3);
  border-radius: var(--radius-s);
  background: transparent;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 70px;
  padding-bottom: 40px;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,25,35,0.55) 0%, rgba(16,25,35,0.75) 55%, var(--navy-deep) 100%),
    linear-gradient(90deg, rgba(16,25,35,0.96) 8%, rgba(16,25,35,0.35) 55%, rgba(16,25,35,0.75) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-copy { max-width: none; }
.hero-eyebrow {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  display: block;
}
.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-title em {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  color: var(--gold);
  font-size: clamp(26px, 4.4vw, 52px);
  white-space: nowrap;
}
.hero-gold-rule {
  width: 84px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 0 0 24px;
}
.hero-text {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 38px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-portrait {
  position: relative;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 460px;
}
.hero-portrait-frame {
  position: relative;
  border: 1px solid var(--gold-soft);
  padding: 14px;
  border-radius: var(--radius-m);
}
.hero-portrait-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-s);
}
.hero-portrait-caption {
  position: absolute;
  bottom: -18px;
  right: 34px;
  background: var(--charcoal-blue);
  border: 1px solid var(--gold-soft);
  padding: 14px 22px;
  border-radius: var(--radius-s);
  font-family: var(--font-sans);
  font-size: 32px;
  line-height: 1.1;
  color: var(--cream);
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.hero-portrait-caption span {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--gold);
  margin-top: 1px;
  letter-spacing: 0.03em;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  z-index: 2;
}
.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Quick lead strip ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.quick-lead {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}
.quick-lead-bg { position: absolute; inset: 0; z-index: 0; }
.quick-lead-bg img { width: 100%; height: 100%; object-fit: cover; }
.quick-lead-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,25,35,0.88) 0%, rgba(16,25,35,0.72) 100%);
}
.quick-lead-form {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.quick-lead-title {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--cream);
  margin-bottom: 34px;
}
.quick-lead-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: stretch;
  gap: 22px;
  margin-bottom: 22px;
}
.quick-lead-fields .form-row { margin-bottom: 0; }
.quick-lead .quick-lead-fields input {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232,232,232,0.4);
  border-radius: 0;
  padding: 0 2px;
  text-align: center;
  color: var(--cream);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}
.quick-lead .quick-lead-fields input::placeholder { color: rgba(243,239,230,0.65); }
.quick-lead .quick-lead-fields input:focus { outline: none; border-color: var(--gold); }
.quick-lead .quick-lead-fields .form-row.has-error input { border-color: #d17a6a; }
.quick-lead-fields .field-error { text-align: center; }

.quick-lead-submit {
  box-sizing: border-box;
  height: 52px;
  align-self: end;
  border: 1px solid var(--gold);
  border-radius: var(--radius-s);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 600;
  padding: 0 32px;
  white-space: nowrap;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.quick-lead-submit:hover, .quick-lead-submit:focus-visible {
  background: #dab975;
  transform: translateY(-2px);
}

.required-legend {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-top: 10px;
  opacity: 0.85;
}
.quick-lead-bottom {
  display: flex;
  align-items: flex-start;
}
.quick-lead-bottom .form-check {
  margin-bottom: 0;
  font-size: 13px;
}
.quick-lead .form-status { max-width: 100%; }

@media (max-width: 760px) {
  .quick-lead-fields { grid-template-columns: 1fr; gap: 20px; }
  .quick-lead-submit { width: 100%; align-self: stretch; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--charcoal-blue);
  border-top: 1px solid rgba(201,165,90,0.15);
  border-bottom: 1px solid rgba(201,165,90,0.15);
  padding: 40px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}
.trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.trust-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(201,165,90,0.22);
}
.trust-item:first-child::before { display: none; }
.trust-item svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item span {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ---------- About ---------- */
.about {
  padding: 130px 0;
}
.about .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: stretch;
}
.about-media {
  position: relative;
  height: 100%;
}
.about-media-main {
  height: 100%;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(201,165,90,0.2);
}
.about-media-main img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.about-media-small {
  position: absolute;
  bottom: -50px;
  left: -50px;
  display: flex;
  gap: 14px;
}
.about-media-small img {
  width: 130px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-s);
  border: 4px solid var(--navy-deep);
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
}
.about-copy .section-title { margin-bottom: 6px; }
.about-copy .gold-rule { margin: 0 0 26px; }
.about-copy p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 20px;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 32px;
  padding-top: 26px;
}
.about-signature-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
}
.about-signature-role {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Reels ---------- */
.reels {
  padding: 110px 0;
  background: var(--charcoal-blue);
}
.reels-head {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}
.reels-head .eyebrow { justify-content: center; }
.reels-head .eyebrow::before { display: none; }
.reels-head .section-lede {
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(14px, 1.6vw, 18px);
}
@media (max-width: 760px) {
  .reels-head .section-lede { white-space: normal; }
}

.reels-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}
.reels-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reels-track::-webkit-scrollbar { display: none; }
.reels-arrow-prev, .reels-arrow-next { flex-shrink: 0; }
.reel-card {
  position: relative;
  flex: 0 0 calc((100% - 64px) / 5);
  scroll-snap-align: start;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-m);
  background: linear-gradient(150deg, var(--card-blue), var(--navy-deep));
  border: 1px solid rgba(201,165,90,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color var(--transition-medium), transform var(--transition-medium);
}
.reel-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.72) saturate(0.9);
  transition: transform var(--transition-medium), filter var(--transition-medium);
}
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,25,35,0.35) 0%, rgba(16,25,35,0.75) 100%);
  z-index: 1;
}
.reel-card:hover, .reel-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.reel-card:hover .reel-card-bg { transform: scale(1.06); filter: brightness(0.6) saturate(0.9); }
.reel-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(16,25,35,0.55);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  border-radius: 20px;
}
.reel-card-play {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(16,25,35,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-card-play svg { width: 20px; height: 20px; }
.reel-card-foot {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-soft);
}
.reel-card-foot svg { width: 13px; height: 13px; }

.reels-follow { display: flex; margin: 0 auto; width: fit-content; }
.reels-follow svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 1080px) {
  .reel-card { flex-basis: calc((100% - 32px) / 3); }
}
@media (max-width: 760px) {
  .reel-card { flex-basis: calc((100% - 16px) / 2); }
  .reels-arrow-prev, .reels-arrow-next { display: none; }
}
@media (max-width: 560px) {
  .reel-card { flex-basis: 68%; }
}

/* ---------- Benefits grid ---------- */
.benefits {
  padding: 130px 0;
  background: var(--charcoal-blue);
}
.benefits-head {
  max-width: 680px;
  margin-bottom: 60px;
}
.benefits-head .section-title {
  white-space: nowrap;
  font-size: clamp(22px, 2.6vw, 42px);
}
@media (max-width: 480px) {
  .benefits-head .section-title { white-space: normal; font-size: 26px; }
}
.benefits-head-centered {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.gold-rule-center {
  margin-left: auto;
  margin-right: auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card-blue);
  border: 1px solid rgba(201,165,90,0.14);
  border-radius: var(--radius-m);
  padding: 30px 26px 46px;
  overflow: hidden;
  transition: background var(--transition-medium), border-color var(--transition-medium), transform var(--transition-medium);
}
.benefit-card:hover {
  background: #283a49;
  border-color: var(--gold-soft);
  transform: translateY(-6px);
}
.benefit-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon svg { width: 51px; height: 51px; color: var(--gold); }
.benefit-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 8px;
}
.benefit-card p {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 240px;
  margin: 0 auto;
}
.benefit-link {
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  opacity: 0.65;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.benefit-link svg { width: 15px; height: 15px; }
.benefit-link:hover { opacity: 1; transform: translateX(-3px); }

/* ---------- Why Bucharest ---------- */
.why-bucharest {
  position: relative;
  padding: 150px 0;
  background: var(--navy-deep);
  overflow: hidden;
}
.why-bucharest-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-bucharest-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}
.why-bucharest-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(16,25,35,0.55) 40%, var(--navy-deep) 100%);
}
.why-bucharest .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-bucharest .eyebrow { justify-content: center; }
.why-bucharest .eyebrow::before { display: none; }
.why-bucharest .section-title { max-width: 760px; }
.why-bucharest .section-lede { max-width: 700px; margin: 0 auto 60px; text-align: center; }

.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 48px;
}
.why-point {
  border-top: 1px solid var(--gold-soft);
  padding-top: 24px;
}
.why-point strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 10px;
}
.why-point span {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ---------- Process ---------- */
.process {
  padding: 130px 0;
  background: var(--charcoal-blue);
}
.process-head { max-width: 680px; margin-bottom: 64px; }
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 4%;
  left: 4%;
  height: 1px;
  background: rgba(201,165,90,0.25);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: -9px;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-right: 5px solid var(--gold);
  opacity: 0.55;
}
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16.5px;
  line-height: 1.4;
  color: var(--cream);
}

/* ---------- Who it's for ---------- */
.who-for { padding: 130px 0; }
.who-for .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.who-for-media {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(201,165,90,0.2);
}
.who-for-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.who-for-media .who-for-media-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 26px 8px rgba(255,255,255,0.4);
  z-index: 2;
}
.who-for-copy p { color: var(--text-muted); font-size: 17px; margin-bottom: 18px; }
.who-for-list { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.who-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--text-soft);
}
.who-for-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Testimonial ---------- */
.testimonial {
  padding: 130px 0;
  background: var(--charcoal-blue);
}
.testimonial-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.testimonial-head .eyebrow { justify-content: center; }
.testimonial-head .eyebrow::before { display: none; }

.testimonial-mark {
  font-family: var(--font-serif);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.testimonial-mark-bottom {
  margin-top: 4px;
  margin-bottom: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-author .rule { width: 34px; height: 1px; background: var(--gold); }
.testimonial-author span {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--gold);
}

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  max-width: 1113px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.carousel-track {
  position: relative;
  flex: 1;
}
.carousel-slide {
  display: none;
  flex-direction: column;
  justify-content: center;
  height: 552px;
  background: var(--card-blue);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-m);
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  overflow: auto;
}
.carousel-slide.is-active {
  display: flex;
  animation: carouselFade 0.55s ease;
}
@keyframes carouselFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-slide.is-active { animation: none; }
}
.carousel-quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(232,232,232,0.28);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:hover, .carousel-arrow:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.06);
}
.carousel-dots {
  position: absolute;
  bottom: -44px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  background: transparent;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.carousel-dot.is-active { background: var(--gold); transform: scale(1.15); }

@media (max-width: 760px) {
  .carousel { gap: 10px; }
  .carousel-arrow { width: 38px; height: 38px; }
  .carousel-dots { bottom: -36px; }
}

/* ---------- CTA / Form ---------- */
.cta {
  position: relative;
  padding: 150px 0;
  background: var(--navy-deep);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(16,25,35,0.85) 100%);
}
.cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.cta-info .section-title { margin-bottom: 20px; }
.cta-info p { color: var(--text-muted); font-size: 18px; margin-bottom: 40px; max-width: 460px; }
.cta-contact { display: flex; flex-direction: column; gap: 18px; margin-bottom: 34px; }
.cta-contact a, .cta-contact span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-soft);
  transition: color var(--transition-fast);
}
.cta-contact a:hover { color: var(--gold); }
.cta-contact svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.lead-form {
  background: var(--card-blue);
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: var(--radius-m);
  padding: clamp(28px, 4vw, 44px);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.required-star { color: var(--gold); }
.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--charcoal-blue);
  border: 1px solid rgba(232,232,232,0.16);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  color: var(--text-soft);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(232,232,232,0.35); }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row.has-error input, .form-row.has-error textarea { border-color: #d17a6a; }
.field-error {
  display: none;
  color: #e0998a;
  font-size: 13px;
  margin-top: 7px;
}
.form-row.has-error .field-error { display: block; }

.form-row-inline {
  display: flex;
  gap: 16px;
}
.form-row-inline .form-row { flex: 1; }

.form-check {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-check input { margin-top: 4px; accent-color: var(--gold); flex-shrink: 0; }
.form-check a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.form-check .field-error { flex-basis: 100%; margin: 0; }
.form-check.has-error label { color: #e0998a; }
.form-check.has-error input { outline: 1px solid #d17a6a; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-s);
  font-size: 14.5px;
  text-align: center;
}
.form-status.is-success {
  display: block;
  background: rgba(201,165,90,0.14);
  color: var(--gold);
  border: 1px solid var(--gold-soft);
}
.form-status.is-error {
  display: block;
  background: rgba(209,122,106,0.12);
  color: #e0998a;
  border: 1px solid rgba(209,122,106,0.35);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-blue);
  border-top: 1px solid rgba(201,165,90,0.15);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-col h4 {
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--gold); }
.footer-map-group {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.footer-map-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-map-item iframe {
  display: block;
  width: 110px;
  height: 110px;
  border: 0;
  border-radius: var(--radius-s);
  filter: grayscale(0.35) contrast(1.05) brightness(0.92);
}
.footer-map-item span {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(232,232,232,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: transform var(--transition-fast);
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Accessibility widget ---------- */
.a11y-fab {
  position: fixed;
  bottom: 92px;
  left: 26px;
  z-index: 91;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--charcoal-blue);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: transform var(--transition-fast);
}
.a11y-fab svg { width: 26px; height: 26px; }
.a11y-fab:hover, .a11y-fab:focus-visible { transform: scale(1.08); }

.a11y-panel {
  position: fixed;
  bottom: 152px;
  left: 26px;
  z-index: 92;
  width: 300px;
  max-width: calc(100vw - 40px);
  background: var(--card-blue);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-m);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  overflow: hidden;
}
.a11y-panel[hidden] { display: none; }
.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(201,165,90,0.15);
}
.a11y-panel-head h2 {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--cream);
}
.a11y-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.a11y-close svg { width: 16px; height: 16px; }
.a11y-close:hover { color: var(--gold); }

.a11y-options {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.a11y-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-soft);
}
.a11y-stepper { display: flex; gap: 8px; }
.a11y-stepper button {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(232,232,232,0.25);
  background: transparent;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
}
.a11y-stepper button:hover { border-color: var(--gold); color: var(--gold); }

.a11y-toggle-btn {
  text-align: right;
  padding: 11px 14px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(232,232,232,0.2);
  background: transparent;
  color: var(--text-soft);
  font-size: 14px;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.a11y-toggle-btn:hover { border-color: var(--gold); color: var(--gold); }
.a11y-toggle-btn[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
}
.a11y-reset {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(232,232,232,0.2);
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
}
.a11y-reset:hover { color: var(--gold); border-color: var(--gold); }
.a11y-statement-link {
  display: block;
  text-align: center;
  padding: 13px;
  font-size: 12.5px;
  color: var(--gold);
  border-top: 1px solid rgba(201,165,90,0.15);
}
.a11y-statement-link:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .a11y-fab { bottom: 86px; left: 18px; width: 46px; height: 46px; }
  .a11y-panel { bottom: 140px; left: 18px; }
}

/* Accessibility state overrides, applied via JS on <html> */
html.a11y-contrast, html.a11y-contrast body {
  background: #000 !important;
  color: #fff !important;
}
html.a11y-contrast * {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}
html.a11y-contrast img,
html.a11y-contrast .hero-bg img,
html.a11y-contrast .why-bucharest-bg img,
html.a11y-contrast .cta-bg img,
html.a11y-contrast .quick-lead-bg img { opacity: 0.25 !important; filter: grayscale(1); }
html.a11y-contrast a { color: #ffd54a !important; text-decoration: underline !important; }
html.a11y-contrast .btn-primary,
html.a11y-contrast .a11y-toggle-btn[aria-pressed="true"] { background: #ffd54a !important; color: #000 !important; }

html.a11y-underline a { text-decoration: underline !important; text-underline-offset: 3px; }

html.a11y-motion-off *,
html.a11y-motion-off *::before,
html.a11y-motion-off *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-readable body,
html.a11y-readable input,
html.a11y-readable textarea,
html.a11y-readable button {
  font-family: Arial, Helvetica, "Noto Sans Hebrew", sans-serif !important;
  letter-spacing: 0.01em;
}
html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3, html.a11y-readable h4 {
  font-family: Arial, Helvetica, "Noto Sans Hebrew", sans-serif !important;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Simple page (privacy) ---------- */
.simple-page {
  padding: 150px 0 100px;
  max-width: 820px;
  margin: 0 auto;
}
.simple-page h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 30px; }
.simple-page h2 {
  font-size: 24px;
  color: var(--gold);
  margin: 46px 0 16px;
}
.simple-page p, .simple-page li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 14px;
}
.simple-page ul { padding-right: 20px; list-style: disc; }
.simple-page a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 0;
    top: 0;
    background: var(--navy-deep);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 0 var(--gutter);
    z-index: 95;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { font-size: 22px; font-family: var(--font-serif); }
  body.nav-open { overflow: hidden; }
  .nav-toggle { display: flex; position: relative; z-index: 96; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-portrait { justify-self: center; margin-top: 40px; }
  .about .container,
  .who-for .container,
  .cta .container { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 70px; height: auto; }
  .about-media-main { height: auto; }
  .about-media-main img { height: 420px; min-height: 0; }
  .who-for-media { order: -1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .why-points { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-track::before { display: none; }
  .process-step::after { display: none; }
  .trust-bar .container { justify-content: center; gap: 30px 50px; }
  .trust-item:nth-child(2)::before,
  .trust-item:nth-child(3)::before,
  .trust-item:nth-child(4)::before { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .about, .benefits, .why-bucharest, .process, .who-for, .testimonial, .cta {
    padding: 90px 0;
  }
  .header-phone span, .header-actions .icon-link { display: none; }
  .hero { min-height: auto; padding-top: 110px; }
  .hero-portrait-frame img { height: 420px; }
  .hero-portrait-caption { right: 16px; font-size: 24px; padding: 12px 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .why-points { grid-template-columns: 1fr; gap: 22px; }
  .process-track { grid-template-columns: 1fr; gap: 30px; }
  .about-media-small { position: static; margin-top: 14px; }
  .about-media-small img { width: 100px; height: 130px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-map-item iframe { width: 90px; height: 90px; }
  .form-row-inline { flex-direction: column; gap: 0; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 18px; left: 18px; }
}
