/* ============================================
   Asigurări Contactless — Homepage (index)
   Page-specific styles (extracted from inline)
   Used only by: index.html
   ============================================ */

:root {
  --primary: #0E5B94;
  --primary-dark: #0a3f68;
  --secondary: #3B8CB8;
  --accent: #A8D8F0;
  --bg: #FFFFFF;
  --bg-soft: #EAF4FB;
  --bg-alt: #F5F7FA;
  --text: #1A2B3C;
  --muted: #6B7B8A;
  --border: #E1E8EF;
  --gradient: linear-gradient(180deg, #A8D8F0 0%, #3B8CB8 50%, #0E5B94 100%);
  --r-island: 36px;
  --r-card: 24px;
  --shadow-sm: 0 2px 10px rgba(14,91,148,0.08);
  --shadow-md: 0 10px 30px rgba(14,91,148,0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* Insulele rotunjite — limbajul vizual Reasig */
.island {
  max-width: 1320px;
  margin: 20px auto;
  border-radius: var(--r-island);
  padding: 88px 0;
}
.island > .wrap { padding: 0 64px; }
.island-blue { background: var(--primary); color: white; position: relative; overflow: hidden; }
.island-blue::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,216,240,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.island-blue::after {
  content: '';
  position: absolute;
  bottom: -220px; left: -140px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,216,240,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.island-soft { background: var(--bg-soft); }
.island-alt { background: var(--bg-alt); }

/* Pill de evidențiere în text — împrumut Omnis, în paleta AC */
.hl {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 14px;
  padding: 0 14px;
  line-height: 1.25;
}
.island-blue .hl { box-shadow: 0 4px 18px rgba(168,216,240,0.35); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1.5px; background: var(--secondary); }
.island-blue .section-label { color: var(--accent); }
.island-blue .section-label::before { background: var(--accent); }

h2.title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--primary);
  margin-bottom: 18px;
}
.island-blue h2.title { color: white; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  position: relative;
  z-index: 101;
  background: linear-gradient(90deg, #0E5B94 0%, #3B8CB8 100%);
  color: white;
  font-size: 13.5px;
}
.announce .wrap {
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 40px;
  position: relative;
}
.announce .msg { display: inline-flex; align-items: center; gap: 9px; text-align: center; }
.announce .msg .tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: 6px;
}
.announce .msg strong { font-weight: 700; }
.announce .msg em { font-style: normal; color: var(--accent); font-weight: 600; }
.announce .a-cta {
  position: absolute;
  right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: white;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.announce .a-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.site-header .wrap {
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-mark { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark .logo-shield { width: 38px; height: 46px; flex-shrink: 0; }
.logo-mark .logo-text { font-weight: 800; font-size: 17px; letter-spacing: 0.04em; line-height: 1; color: var(--primary); }
.logo-mark .logo-text small {
  display: block;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--secondary);
  margin-top: 5px;
  white-space: nowrap;
}
.nav-main { display: flex; gap: 30px; align-items: center; }
.nav-main a { font-size: 14px; font-weight: 500; padding: 6px 0; transition: color .25s ease; }
.nav-main a:hover { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pill-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pill-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============ HERO ============ */
.hero { padding: 80px 0 64px; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero .sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero .sub strong { color: white; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(168,216,240,0.4); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 26px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 15px;
  font-weight: 600;
  transition: background .25s ease, transform .25s ease;
}
.btn-wa:hover { background: rgba(37,211,102,0.9); border-color: transparent; transform: translateY(-2px); }
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badges-img a { display: inline-block; transition: transform .2s ease, opacity .2s ease; }
.store-badges-img a:hover { transform: translateY(-2px); opacity: .9; }
.store-badges-img img { height: 46px; width: auto; border-radius: 8px; display: block; }
@media (max-width: 560px) { .store-badges-img img { height: 42px; } }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(168,216,240,0.35);
  color: white;
  transition: background .25s ease, transform .25s ease;
}
.store-badge:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.store-badge svg { width: 20px; height: 20px; }
.store-badge .t { line-height: 1.15; }
.store-badge .t small { display: block; font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.store-badge .t strong { font-size: 13px; font-weight: 700; }
.hero-legal {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(168,216,240,0.85);
}
.hero-phone-zone { position: relative; display: flex; justify-content: center; }
/* carcasă iPhone premium (Dynamic Island + butoane + ramă titan) */
.phone {
  position: relative;
  width: 262px;
  background: linear-gradient(150deg, #244e6f 0%, #0a2940 55%, #07203a 100%);
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    0 0 0 2px #2c5778,                 /* margine titan exterioară */
    0 0 0 11px #0a2940,                /* corp ramă */
    0 0 0 12px #1a3a56,                /* highlight muchie */
    0 36px 80px rgba(5,30,50,0.5);
  transform: rotate(3deg);
}
/* butoane laterale */
.phone::before {           /* buton dreapta (power) */
  content: "";
  position: absolute;
  right: -14px; top: 132px;
  width: 3px; height: 58px;
  background: #1a3a56;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2);
}
.phone::after {            /* butoane stânga (volum) */
  content: "";
  position: absolute;
  left: -14px; top: 116px;
  width: 3px; height: 38px;
  background: #1a3a56;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 -56px 0 #1a3a56, 0 -90px 0 0 #1a3a56;  /* mute + volum sus */
}
.phone-screen {
  position: relative;
  background: linear-gradient(180deg, #f5fafe 0%, #eaf4fb 100%);
  border-radius: 36px;
  padding: 40px 14px 18px;            /* spațiu sus pt. Dynamic Island */
  min-height: 470px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
  overflow: hidden;
}
/* Dynamic Island */
.phone-screen::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 26px;
  background: #07121c;
  border-radius: 16px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
/* lentila camerei în Island */
.phone-screen::after {
  content: "";
  position: absolute;
  top: 19px; left: calc(50% + 26px);
  transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2c5778, #07121c 70%);
  z-index: 6;
}

/* ===== iPhone 14 real (SVG clonat) cu ecranul brand suprapus + animație GSAP ===== */
.ip14-stage { perspective: 1400px; }
.ip14 {
  position: relative;
  width: 290px;
  aspect-ratio: 433 / 883;
  will-change: transform;
}
.ip14-img { width: 100%; height: 100%; display: block; }
/* ecranul brand peste zona de display a SVG-ului (viewBox 433x883) */
.ip14-screen {
  position: absolute;
  top: 2.5%; left: 5.1%; right: 5.1%; bottom: 2.5%;
  border-radius: 12% / 5.6%;
  overflow: hidden;
  background: linear-gradient(180deg, #f5fafe 0%, #eaf4fb 100%);
  display: flex; flex-direction: column; gap: 9px;
  padding: 13% 9% 7%;
  color: var(--text);
}
.ip14-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.ip14-title { font-weight: 800; font-size: 17px; line-height: 1.15; margin-bottom: 6px; }
.ip14-foot { margin-top: auto; display: flex; justify-content: space-between; font-size: 9.5px; color: var(--secondary); }
/* Dynamic Island peste ecran */
.ip14-island {
  position: absolute;
  top: 4.6%; left: 50%; transform: translateX(-50%);
  width: 33%; height: 3%;
  background: #07121c; border-radius: 20px; z-index: 3;
}
@media (max-width: 480px){ .ip14 { width: 230px; } }

/* varianta hero: ușor înclinat (ca telefonul vechi), chat în ecran */
.ip14--hero { transform: rotate(3deg); width: 270px; }
.ip14-screen--chat {
  gap: 8px;
  padding: 15% 8% 8%;
  overflow-y: auto;
}
.ip14-screen--chat .chat-head { display: flex; align-items: center; gap: 9px; padding-bottom: 9px; border-bottom: 1px solid var(--border); }
.ip14-screen--chat .chat-head .av { width: 30px; height: 30px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ip14-screen--chat .chat-head .n { font-size: 11px; font-weight: 700; }
.ip14-screen--chat .chat-head .s { font-size: 9px; color: #2e9e5b; font-weight: 600; }
.ip14-screen--chat .bubble { max-width: 88%; padding: 8px 11px; border-radius: 14px; font-size: 10px; line-height: 1.45; }
.ip14-screen--chat .bubble.bot { background: #fff; border: 1px solid var(--border); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.ip14-screen--chat .bubble.user { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-head { display: flex; align-items: center; gap: 9px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.chat-head .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
}
.chat-head .n { font-size: 11px; font-weight: 700; }
.chat-head .s { font-size: 9px; color: #2e9e5b; font-weight: 600; }
.bubble {
  max-width: 85%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 10.5px;
  line-height: 1.45;
}
.bubble.bot { background: white; border: 1px solid var(--border); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.bubble.user { background: var(--primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.policy-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px 11px;
  box-shadow: var(--shadow-sm);
}
.policy-chip .k { font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.policy-chip .v { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; margin-top: 2px; }
.policy-chip .price { font-size: 13px; font-weight: 800; color: var(--primary); }
.phone-float {
  position: absolute;
  bottom: 36px;
  left: -8px;
  background: white;
  color: var(--text);
  border-radius: 16px;
  padding: 11px 15px;
  box-shadow: 0 16px 40px rgba(5,30,50,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatY 5s ease-in-out infinite;
}
.phone-float .ic {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone-float strong { display: block; font-size: 12px; line-height: 1.2; }
.phone-float small { font-size: 10px; color: var(--muted); }
.partner-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner-chip {
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.partner-chip:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.insurer-strip {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(168,216,240,0.25);
  display: flex;
  flex-wrap: nowrap;            /* o singură linie */
  gap: 12px;
  align-items: center;
  position: relative;
  overflow-x: auto;             /* derulare laterală pe mobil */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox: ascunde scrollbar */
  padding-bottom: 4px;
}
.insurer-strip::-webkit-scrollbar { display: none; }  /* Chrome/Safari */
.insurer-strip .lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.insurer-chip {
  padding: 7px 15px;
  border-radius: 100px;
  border: 1px solid rgba(168,216,240,0.3);
  background: rgba(255,255,255,0.06);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;          /* numele nu se rupe */
  flex-shrink: 0;               /* chip-urile nu se înghesuie */
}

/* ============ TIPURI DE ASIGURĂRI (grilă Omnis) ============ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.type-mini {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px 22px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
}
.type-mini:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.type-mini .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background .3s ease, color .3s ease;
}
.type-mini:hover .ic { background: var(--gradient); color: white; }
.type-mini { display: flex; flex-direction: column; }
.type-mini h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.type-mini p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.type-calc {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.type-mini:hover .type-calc { background: var(--gradient); border-color: transparent; color: white; }
.type-calc svg { transition: transform .25s ease; }
.type-mini:hover .type-calc svg { transform: translateX(3px); }

/* ============ CARDURI 3D DepthFold (tipuri asigurări) ============ */
.df-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  --glass-edge: rgba(255,255,255,0.85);
}
.df-parent { width: 100%; height: 300px; perspective: 1000px; perspective-origin: 50% 50%;
  filter: drop-shadow(0 26px 46px rgba(14,91,148,.28)); }
.df-card {
  position: relative; height: 100%; border-radius: 44px;
  background: linear-gradient(135deg, #A8D8F0 0%, #3B8CB8 55%, #0E5B94 100%);
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease;
  box-shadow: rgba(14,91,148,0) 40px 50px 25px -40px, rgba(14,91,148,.28) 0 25px 25px -5px;
}
.df-parent:hover .df-card {
  transform: rotate3d(1,1,0,24deg);
  box-shadow: rgba(14,91,148,.4) 26px 44px 26px -34px, rgba(168,216,240,.35) 0 0 56px -10px, rgba(14,91,148,.15) 0 25px 35px 0;
}
/* glass */
.df-glass { position: absolute; inset: 8px; border-radius: 50px; border-top-right-radius: 100%;
  background: linear-gradient(0deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.85) 100%);
  transform: translate3d(0,0,25px); border-inline-start: 1px solid var(--glass-edge);
  border-bottom: 1px solid rgba(255,255,255,.75); transition: all .5s ease-in-out; pointer-events: none; }
/* orbite logo */
.df-logo { position: absolute; inset-inline-end: 0; top: 0; transform-style: preserve-3d; pointer-events: none; z-index: 2; }
.df-circle { display: block; position: absolute; aspect-ratio: 1; border-radius: 50%; top: 0; inset-inline-end: 0;
  background: rgba(168,216,240,.4); box-shadow: rgba(14,91,148,.2) -10px 10px 24px 0;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: all .5s ease-in-out; }
.df-circle:nth-child(1){ width: 150px; transform: translate3d(0,0,20px); top: 8px; inset-inline-end: 8px; }
.df-circle:nth-child(2){ width: 122px; transform: translate3d(0,0,40px); top: 10px; inset-inline-end: 10px; transition-delay: .05s; }
.df-circle:nth-child(3){ width: 96px;  transform: translate3d(0,0,60px); top: 16px; inset-inline-end: 16px; transition-delay: .1s; }
.df-circle:nth-child(4){ width: 70px;  transform: translate3d(0,0,80px); top: 22px; inset-inline-end: 22px; transition-delay: .15s; }
.df-circle:nth-child(5){ width: 46px;  transform: translate3d(0,0,100px); top: 28px; inset-inline-end: 28px; display: grid; place-content: center; transition-delay: .2s; }
.df-circle:nth-child(5) svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.df-parent:hover .df-circle:nth-child(2){ transform: translate3d(0,0,60px); }
.df-parent:hover .df-circle:nth-child(3){ transform: translate3d(0,0,80px); }
.df-parent:hover .df-circle:nth-child(4){ transform: translate3d(0,0,100px); }
.df-parent:hover .df-circle:nth-child(5){ transform: translate3d(0,0,120px); }
/* content */
.df-content { padding: 92px 3.25rem 0 1.75rem; transform: translate3d(0,0,26px); position: relative; z-index: 3; }
.df-title { display: block; color: #0a3f68; font-weight: 900; font-size: 1.2rem; letter-spacing: -.02em; font-family: var(--font-display, 'Poppins', sans-serif); }
.df-text { display: block; margin-top: .85rem; color: rgba(10,63,104,.82); font-size: .85rem; line-height: 1.5; font-weight: 600; }
/* buton */
.df-bottom { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; justify-content: flex-end;
  transform: translate3d(0,0,26px); z-index: 4; transform-style: preserve-3d; }
.df-btn { font-family: inherit; font-weight: 800; font-size: .82rem; padding: 9px 18px; border-radius: 999px;
  border: none; cursor: pointer; color: #fff; background: #0E5B94; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: rgba(14,91,148,.45) 0 8px 6px -5px; transition: transform .2s; text-decoration: none; }
.df-btn:hover { transform: translateY(-1px); }
.df-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.df-btn:hover svg { transform: translateX(3px); }
@media (max-width: 1100px){ .df-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .df-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce){
  .df-parent:hover .df-card { transform: none; }
  .df-parent:hover .df-circle { transform: inherit; }
}

/* ============ BENEFICII AUTO (card mare Reasig) ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-top: 36px;
}
.benefit {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.benefit:nth-last-child(-n+2) { border-bottom: 0; }
.benefit .ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.benefit p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============ METODE DE PLATĂ ============ */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pay-card {
  background: white;
  border-radius: var(--r-card);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pay-card .ic {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--gradient);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pay-card h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.pay-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ============ SLOGAN QUOTE (Omnis highlight) ============ */
.quote { text-align: center; max-width: 880px; margin: 0 auto; }
.quote p {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.value-card { text-align: center; padding: 24px 18px; border-radius: var(--r-card); background: var(--bg-alt); transition: transform .3s ease, box-shadow .3s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: white; }
.value-card .vc-ic { width: 48px; height: 48px; border-radius: 14px; background: white; color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.value-card p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 1024px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ============ TESTIMONIALE ============ */
.reviews-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.score-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(168,216,240,0.35);
  border-radius: 100px;
  padding: 10px 22px;
}
.score-pill .n { font-family: 'JetBrains Mono', monospace; font-size: 20px; font-weight: 600; color: white; }
.score-pill .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card {
  background: white;
  border-radius: var(--r-card);
  padding: 24px 22px;
  color: var(--text);
}
.review-card .head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.review-card .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.review-card .nm { font-size: 13px; font-weight: 700; }
.review-card .nm .st { display: block; color: var(--secondary); font-size: 11px; letter-spacing: 1.5px; }
.review-card .body { font-size: 12.5px; line-height: 1.6; color: var(--muted); margin-bottom: 10px; }
.review-card .src { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--secondary); }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 18px; font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ============ BLOG ============ */
.blog-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 36px 36px 40px;
}
.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.blog-head h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.blog-head .all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .25s ease, transform .25s ease;
}
.blog-head .all-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.blog-card .img {
  height: 150px;
  background: var(--bg-soft);
  overflow: hidden;
}
.blog-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card:hover .img img { transform: scale(1.05); }
.blog-card .body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .date { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 15.5px; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.blog-card .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
}
.blog-card .more svg { transition: transform .25s ease; }
.blog-card:hover .more svg { transform: translateX(4px); }

/* ============ APP INSTALL (pașii Omnis) ============ */
.app-install .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.steps { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; align-items: center; gap: 16px; }
.step .num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step p { font-size: 15px; font-weight: 500; color: var(--text); }
.qr-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.qr-box {
  width: 110px; height: 110px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}
.qr-note { font-size: 12px; color: var(--muted); max-width: 180px; line-height: 1.5; }
.app-install .store-badge { background: var(--primary); border-color: var(--primary); }
.app-install .store-badge:hover { background: var(--primary-dark); }

/* ============ CONTACT ============ */
.contact .wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.cinfo { display: flex; align-items: center; gap: 14px; }
.cinfo .ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(168,216,240,0.35);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cinfo .k { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.cinfo .v { font-family: 'JetBrains Mono', monospace; font-size: 15px; color: white; }
.contact-form {
  background: white;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(5,30,50,0.25);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
  outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--secondary); background: white; }
.contact-form textarea { resize: vertical; min-height: 110px; margin-bottom: 14px; }
.contact-form .btn-accent { width: 100%; justify-content: center; }
.contact-form .note { font-size: 11px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ============ FOOTER ============ */
.site-footer {
  max-width: 1320px;
  margin: 20px auto;
  border-radius: var(--r-island);
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 36px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-desc { margin-top: 20px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 340px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.75); transition: color .25s ease; }
.footer-col a:hover { color: white; }
.footer-legal {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(168,216,240,0.2);
  padding-top: 24px;
  margin-bottom: 16px;
}
.footer-legal strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-base { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.55); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 28px; height: 28px; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-phone-zone { order: -1; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .benefit:last-child { border-bottom: 0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .app-install .wrap, .contact .wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .island { margin: 10px; border-radius: 26px; padding: 52px 0; }
  .island > .wrap { padding: 0 26px; }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 22px 16px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-main.open { display: flex; }
  .nav-main a { padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--bg-alt); }
  .nav-main a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .pill-cta, .pill-phone { display: none; }
  .types-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-panel { padding: 24px 18px 28px; }
  .footer-cols { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .phone { width: 210px; }
  .phone-screen { min-height: 380px; }
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .announce .a-cta { display: none; }
  .announce .wrap { padding: 9px 22px; }
  .announce { font-size: 12px; }
}
