/* ============================================================
   NATAȘA — BROKER DE ASIGURĂRI
   Premium Insurance Broker Website
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0f172a;
  --blue-800: #1e3a5f;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --white: #ffffff;
  --accent: #f59e0b;
  --accent-light: #fef3c7;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- UTILITY ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-alt { background: var(--slate-50); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,99,235,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-white {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.logo-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  transition: color var(--transition);
}
.navbar.scrolled .logo-name { color: var(--blue-700); }
.navbar.scrolled .logo-tagline { color: var(--slate-500); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.navbar.scrolled .nav-links a { color: var(--slate-700); }
.navbar.scrolled .nav-links a:hover { color: var(--blue-700); background: var(--blue-50); }

.nav-cta {
  background: var(--white) !important;
  color: var(--blue-700) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md) !important;
  padding: 9px 20px !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md) !important;
  background: var(--blue-50) !important;
}
.navbar.scrolled .nav-cta {
  background: var(--blue-600) !important;
  color: var(--white) !important;
}
.navbar.scrolled .nav-cta:hover {
  background: var(--blue-700) !important;
}

/* ---------- JOIN TEAM ---------- */
.join-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.join-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate-800);
  margin-bottom: 16px;
  line-height: 1.65;
}

.join-content p {
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.75;
}
.join-content strong { color: var(--slate-800); }

.join-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 36px;
}

.join-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all var(--transition);
}
.join-perk:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.join-perk-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.join-perk strong {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}
.join-perk span:last-child {
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* Right visual column */
.join-visual {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join-card-main {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: var(--white);
}

.join-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  font-style: italic;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.join-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

.js-num {
  width: 28px;
  height: 28px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.join-tag {
  background: var(--accent-light);
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #92400e;
}

@media (max-width: 1024px) {
  .join-grid { grid-template-columns: 1fr; gap: 48px; }
  .join-visual { position: static; }
}

@media (max-width: 768px) {
  .join-perks { grid-template-columns: 1fr; gap: 10px; }
  .join-card-main { padding: 28px 24px; }
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 36px;
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.76rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}
.topbar-left strong {
  color: #f59e0b;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.topbar-dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.74rem;
}
.topbar-right a {
  color: rgba(255,255,255,.75);
  font-weight: 500;
  transition: color var(--transition);
}
.topbar-right a:hover { color: var(--white); }
.topbar-sep { opacity: 0.3; }

/* Navbar Destine logo — doar la scroll */
.navbar-destine-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.navbar.scrolled .navbar-destine-logo {
  opacity: 1;
  pointer-events: auto;
}
.navbar-destine-logo:hover { opacity: 0.8; }
.navbar-destine-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ============================================================
   DESTINE HOLIDAYS SECTION
   ============================================================ */
.holidays-section {
  background: linear-gradient(160deg, var(--slate-900) 0%, #0c1a3a 50%, #0a2240 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.holidays-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.18) 0%, transparent 70%);
  pointer-events: none;
}

.holidays-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.holidays-label {
  color: rgba(147,197,253,.9) !important;
  border-color: rgba(147,197,253,.25) !important;
  background: rgba(37,99,235,.15) !important;
}

.holidays-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 20px;
}

.holidays-desc {
  color: rgba(203,213,225,.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.holidays-desc strong { color: var(--white); }

.holidays-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.holidays-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.holidays-perk-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.holidays-perks li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.holidays-perks li strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}
.holidays-perks li span {
  color: rgba(148,163,184,.85);
  font-size: 0.87rem;
}

.holidays-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(148,163,184,.4);
  color: rgba(203,213,225,.9);
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: rgba(147,197,253,.6);
  color: var(--white);
}

/* Visual column */
.holidays-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.holidays-card {
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
}

.holidays-card-agency {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.holidays-card-logo {
  height: 48px;
  margin-bottom: 10px;
}
.holidays-card-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.holidays-logo-fallback {
  align-items: center;
  height: 48px;
}
.holidays-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.2;
}
.holidays-logo-text strong { color: #e67e22; }

.holidays-card-tagline {
  font-size: 0.82rem;
  color: var(--slate-400);
  font-style: italic;
  margin-bottom: 16px;
}
.holidays-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.holidays-card-list li {
  font-size: 0.88rem;
  color: var(--slate-700);
  font-weight: 500;
}

.holidays-card-insurance {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 12px 36px rgba(37,99,235,.4);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 28px;
}
.holidays-card-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.holidays-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.holidays-card-sub {
  font-size: 0.8rem;
  color: rgba(147,197,253,.85);
  margin: 0 0 12px;
}
.holidays-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.holidays-badge-group span {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .holidays-inner { grid-template-columns: 1fr; gap: 48px; }
  .holidays-visual { flex-direction: row; }
  .holidays-card-agency { flex: 1; }
  .holidays-card-insurance { flex: 1; }
}
@media (max-width: 768px) {
  .holidays-section { padding: 72px 0; }
  .holidays-visual { flex-direction: column; }
  .holidays-title { font-size: 1.9rem; }
}
@media (max-width: 480px) {
  .holidays-section { padding: 56px 0; }
  .holidays-actions { flex-direction: column; }
  .holidays-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .holidays-card { padding: 22px 20px; }
}

/* Partner band */
.partner-band {
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 32px 0;
}

.partner-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-band-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partner-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.partner-band-text p {
  font-size: 0.95rem;
  color: var(--slate-600);
}
.partner-band-text strong {
  color: var(--slate-900);
  font-weight: 700;
}

.partner-logo-wrap {
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.partner-logo-wrap:hover { opacity: 0.8; }

.partner-logo {
  height: 56px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .partner-band-inner { justify-content: center; text-align: center; }
  .partner-band-text { align-items: center; }
}

/* Logo chip */
.logo-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-destine-chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 100px;
  padding: 2px 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar.scrolled .logo-destine-chip {
  color: #d97706;
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--slate-700); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--blue-900) 0%,
    var(--blue-800) 40%,
    #1e40af 70%,
    #1d4ed8 100%
  );
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(59,130,246,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(29,78,216,.3) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* HERO split layout */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding: 130px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge::before {
  content: '◆';
  font-size: 0.6rem;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-subtitle strong { color: var(--white); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  backdrop-filter: blur(10px);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 2px;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(59,130,246,.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: block;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}

.hero-photo-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  white-space: nowrap;
}
.hpb-icon { font-size: 1.5rem; }
.hero-photo-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-900);
  font-weight: 700;
}
.hero-photo-badge span {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 1; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--blue-700);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-icon {
  font-size: 1.1rem;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: top center;
  display: block;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  font-size: 0.85rem;
  z-index: 3;
  text-align: center;
}
.badge-icon {
  font-size: 1.4rem;
  color: var(--accent);
}
.about-badge-float strong { display: block; font-size: 0.9rem; color: var(--slate-900); }
.about-badge-float small { color: var(--slate-500); }


.about-content .section-label { margin-bottom: 12px; }

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--slate-800);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-content p {
  color: var(--slate-600);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-content p em { color: var(--blue-600); font-style: normal; font-weight: 600; }

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.value-chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 100px;
  padding: 6px 16px;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-100);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.service-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.service-benefits {
  list-style: none;
  margin-bottom: 24px;
}
.service-benefits li {
  font-size: 0.85rem;
  color: var(--slate-700);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-benefits li::before {
  content: '✓';
  color: var(--blue-500);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-600);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--blue-700); gap: 8px; }

.services-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  border-radius: var(--radius-xl);
  border: 1px solid var(--blue-100);
}
.services-cta p {
  font-size: 1.1rem;
  color: var(--slate-700);
  margin-bottom: 24px;
}
.services-cta strong { color: var(--blue-700); }

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

.why-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon { font-size: 1.6rem; }

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ---------- PROCESS ---------- */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 240px;
}

.process-connector {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--blue-100));
  margin-top: 35px;
  position: relative;
}
.process-connector::after {
  content: '▶';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-300);
  font-size: 0.7rem;
}

.process-cta { text-align: center; }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  border-color: transparent;
  color: var(--white);
}
.testimonial-card.featured .stars { color: var(--accent); }
.testimonial-card.featured blockquote { color: rgba(255,255,255,.9); }
.testimonial-card.featured .author-avatar {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.testimonial-card.featured strong { color: var(--white); }
.testimonial-card.featured span { color: rgba(255,255,255,.65); }

.stars {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 2px;
}

blockquote {
  font-size: 0.92rem;
  color: var(--slate-700);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-900);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  padding: 80px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band-text p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  max-width: 460px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-top: 12px; }

.contact-lead {
  font-size: 1rem;
  color: var(--slate-600);
  margin: 16px 0 36px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--slate-800);
  font-weight: 500;
}
.contact-item a:hover { color: var(--blue-600); }

.contact-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--slate-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}
.social-btn svg { width: 18px; height: 18px; }

/* FORM */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-200);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: all var(--transition);
  appearance: none;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue-600);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.82rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 1.4rem;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.5); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,.55);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact strong {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(37,99,235,.45);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,.55);
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
  animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--slate-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--slate-900);
}
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1); }
}

/* Mobile — mutat deasupra floating CTA bar */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 72px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-btn svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}
.floating-cta::before {
  content: '→';
}

/* ============================================================
   WIZARD — Multi-step quote form
   ============================================================ */
.wizard {
  width: 100%;
}

.wizard-progress {
  height: 5px;
  background: var(--slate-200);
  border-radius: 99px;
  margin-bottom: 10px;
  overflow: hidden;
}
.wizard-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  border-radius: 99px;
  width: 33.33%;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

.wizard-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.wizard-step {
  display: none;
  animation: wizardFadeIn 0.3s ease;
}
.wizard-step.active { display: block; }

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard-step h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

/* Insurance type grid */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.ins-btn {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s, transform 0.15s;
  text-align: center;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ins-btn:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  color: var(--blue-700);
  transform: translateY(-2px);
}
.ins-btn.selected {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,99,235,.25);
}
.ins-btn-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.9rem;
  background: var(--slate-50);
  border-color: var(--slate-300);
  border-style: dashed;
}
.ins-btn-wide:hover {
  border-style: solid;
  border-color: var(--blue-400);
  background: var(--blue-50);
}

/* Step 2 dynamic fields */
#step2Fields .form-group { margin-bottom: 16px; }

.wizard-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.wizard-radio-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: border-color 0.15s, background 0.15s;
}
.wizard-radio-group input[type="radio"] { display: none; }
.wizard-radio-group input[type="radio"]:checked + span {
  /* handled via JS class */
}
.wizard-radio-group label.radio-selected {
  border-color: var(--blue-600);
  background: var(--blue-50);
  color: var(--blue-700);
}

/* Wizard nav */
.wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.wizard-nav .btn { flex: 1; justify-content: center; }
.wizard-nav .btn-ghost {
  flex: 0 0 auto;
  min-width: 110px;
  background: transparent;
  border: 2px solid var(--slate-200);
  color: var(--slate-600);
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.wizard-nav .btn-ghost:hover {
  border-color: var(--slate-400);
  color: var(--slate-800);
}

/* Success step */
.form-success {
  text-align: center;
  padding: 32px 20px 24px;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--slate-600);
  font-size: 0.95rem;
  max-width: 300px;
  margin: 0 auto;
}

/* Step 3 GDPR */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 4px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-600);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.5;
  cursor: pointer;
}
.form-note {
  font-size: 0.78rem;
  color: var(--slate-400);
  text-align: center;
  margin-top: 16px;
}

/* Wizard responsive */
@media (max-width: 560px) {
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .ins-btn { padding: 14px 10px; font-size: 0.82rem; }
  .wizard-nav { flex-direction: column-reverse; }
  .wizard-nav .btn-ghost { min-width: unset; }
}
@media (max-width: 360px) {
  .insurance-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- 1200px — Large tablet / small desktop ---------- */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .hero-title { font-size: clamp(2rem, 4vw, 3.4rem); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 1024px — Tablet landscape ---------- */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; padding: 120px 32px 60px; }
  .hero-photo { max-width: 380px; }
  .hero-photo-badge { left: -10px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrapper { max-width: 420px; margin: 0 auto; }

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

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card.featured { grid-column: span 2; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

/* ---------- 768px — Tablet portrait / large phone ---------- */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Topbar — compactat */
  .topbar { height: 32px; }
  .topbar-inner { justify-content: center; }
  .topbar-right { display: none; }
  .topbar-left { font-size: 0.72rem; gap: 6px; }

  /* Navbar */
  .navbar { top: 32px; }
  .hamburger { display: flex; }
  .navbar-destine-logo { display: none; }

  /* Hamburger → X */
  .hamburger span { transition: all 0.25s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Backdrop */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.6);
    z-index: 998;
  }
  .nav-backdrop.open { display: block; }

  /* Dropdown — simplu display none/flex, fara transform bug */
  .nav-links {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 8px 16px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
    border-bottom: 3px solid var(--blue-600);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    color: var(--slate-700) !important;
    padding: 13px 8px !important;
    border-radius: 0 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid var(--slate-100) !important;
    background: none !important;
  }
  .nav-links a:last-child { border-bottom: none !important; }
  .nav-cta {
    display: block !important;
    background: var(--blue-600) !important;
    color: var(--white) !important;
    margin-top: 12px !important;
    border-radius: var(--radius-md) !important;
    text-align: center !important;
    border-bottom: none !important;
    padding: 14px !important;
    font-weight: 700 !important;
  }

  /* Hero mobile — poza Natașa ca fundal full-bleed, text deasupra */
  .hero {
    background-image: url('photos/photo_41.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .hero-bg {
    background: linear-gradient(
      to bottom,
      rgba(15,23,42,.55) 0%,
      rgba(15,23,42,.35) 30%,
      rgba(15,23,42,.75) 70%,
      rgba(15,23,42,.95) 100%
    );
  }
  .hero-bg::before { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 96px 20px 56px;
    gap: 0;
    min-height: 100svh;
    align-content: flex-end;
    text-align: center;
  }
  .hero-photo-wrap { display: none; }
  .hero-badge { margin: 0 auto 20px; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.96rem; margin-bottom: 28px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    justify-content: space-around;
    padding: 16px 12px;
    margin-top: 0;
  }
  .stat-icon { font-size: 1.3rem; }
  .stat-label { font-size: 0.68rem; }
  .stat-divider { height: 32px; }
  .hero-scroll-hint { display: none; }

  /* Trust bar */
  .trust-bar { padding: 16px 0; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    justify-items: start;
    padding: 0 20px;
  }
  .trust-item { font-size: 0.82rem; }

  /* About */
  .about-grid { gap: 40px; }
  .about-image-wrapper { max-width: 320px; }
  .about-photo { border-radius: var(--radius-lg); }
  .about-badge-float { font-size: 0.78rem; padding: 10px 14px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px; }
  .services-cta { padding: 32px 20px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 22px 18px; }
  .why-icon-wrap { width: 46px; height: 46px; margin-bottom: 14px; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; gap: 0; }
  .process-connector {
    width: 2px;
    height: 36px;
    margin: 0;
    flex: unset;
    background: linear-gradient(180deg, var(--blue-300), var(--blue-100));
  }
  .process-connector::after {
    content: '▼';
    right: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(50%);
  }
  .step-number { width: 60px; height: 60px; font-size: 1.1rem; margin-bottom: 16px; }
  .step-content { text-align: center; }
  .step-content p { max-width: 280px; margin: 0 auto; }

  /* Testimonials — horizontal scroll */
  .testimonials-grid {
    grid-template-columns: repeat(3, 85vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .testimonial-card.featured { grid-column: span 1; order: 0; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band-inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-band-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 28px 20px; border-radius: var(--radius-lg); }
  .form-row { grid-template-columns: 1fr; }

  /* Partner band */
  .partner-band { padding: 24px 0; }
  .partner-band-inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .partner-logo { height: 44px; }

  /* Footer */
  .footer { padding: 56px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: unset; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }

  /* Floating CTA — full width bar at bottom */
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.9rem;
    transform: translateY(100%);
  }
  .floating-cta.visible { transform: translateY(0); }
  .floating-cta:hover { transform: translateY(0); }

  /* Section headers tighter */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.2rem); }
}

/* ---------- 480px — Phone ---------- */
@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }

  .topbar { display: none; }
  .navbar { top: 0; }

  .hero-inner { padding: 88px 16px 40px; }
  .hero-photo { max-width: 200px; }
  .hero-title { font-size: 1.75rem; }
  .hero-photo-badge { font-size: 0.72rem; padding: 8px 12px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 14px; }
  .stat-divider { display: none; }
  .stat { min-width: 80px; }

  .trust-inner { grid-template-columns: 1fr; gap: 8px; }

  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 20px 16px; }

  .services-grid { gap: 12px; }
  .service-card { padding: 20px 16px; }

  .testimonials-grid { grid-template-columns: repeat(3, 92vw); }

  .contact-form-wrapper { padding: 24px 16px; }
  .contact-form h3 { font-size: 1.2rem; }

  .section-label { font-size: 0.7rem; }
  .section-title { font-size: 1.6rem; }

  .btn-lg { padding: 13px 24px; font-size: 0.95rem; }

  .footer-inner { gap: 24px; }
  .partner-logo { height: 36px; }
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ========== FAQ SECTION ========== */
.faq-section { background: var(--slate-50); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
  border-color: var(--blue-500);
  box-shadow: 0 4px 24px rgba(37,99,235,.10);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item.open .faq-q {
  color: var(--blue-600);
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  stroke: var(--slate-600);
  transition: stroke 0.2s;
}

.faq-item.open .faq-chevron {
  background: var(--blue-600);
  transform: rotate(180deg);
}

.faq-item.open .faq-chevron svg {
  stroke: var(--white);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.faq-body-inner {
  overflow: hidden;
}

.faq-a {
  padding: 0 26px 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-a strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== INSURERS / PARTENERI ===== */
.insurers-section {
  padding: 64px 0 56px;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.insurers-section .section-label {
  text-align: center;
  margin-bottom: 6px;
}

.insurers-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.insurers-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.insurers-carousel-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.insurers-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: insurers-scroll 32s linear infinite;
}

.insurers-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes insurers-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.insurer-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 20px 16px;
  min-height: 110px;
  width: 160px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.insurer-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.insurer-card img {
  width: auto;
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter var(--transition);
}

.insurer-card:hover img {
  filter: grayscale(0%);
}

.insurer-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

/* text-only cards — smaller, subtler, clearly secondary */
.insurer-card-text {
  background: var(--slate-50);
  min-height: 72px;
  width: 130px;
  padding: 16px 14px;
  box-shadow: none;
  border-color: var(--slate-200);
  opacity: 0.85;
}

.insurer-card-text:hover {
  opacity: 1;
}

.insurer-text-name {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--slate-600) !important;
  text-align: center;
  line-height: 1.3;
}

/* visual divider between logo group and text group */
.insurer-divider {
  width: 1px;
  height: 60px;
  background: var(--slate-300);
  flex-shrink: 0;
  align-self: center;
  opacity: 0.5;
}

.insurers-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 24px;
  opacity: 0.6;
}

/* ===== INSURERS / PARTENERI ===== */
.insurers-section {
  padding: 64px 0 56px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.insurers-section .section-label {
  text-align: center;
  margin-bottom: 6px;
}

.insurers-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.insurers-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.insurers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

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

@media (max-width: 640px) {
  .insurers-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

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

.insurer-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px 14px;
  min-height: 100px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.insurer-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.insurer-card img {
  width: auto;
  height: 38px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--transition);
}

.insurer-card:hover img {
  filter: grayscale(0%);
}

.insurer-card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}

.insurer-card-text {
  background: var(--white);
}

.insurer-text-name {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  text-align: center;
  line-height: 1.3;
}

.insurers-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 24px;
  opacity: 0.6;
}
