@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --red: #e10600;
  --red-dark: #b80500;
  --red-light: #ff2b24;
  --red-glow: rgba(225, 6, 0, 0.35);
  --bg: #08080a;
  --bg-elevated: #121218;
  --bg-card: #16161d;
  --bg-card-2: #1c1c25;
  --text: #f4f4f6;
  --text-muted: #9a9aa8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.logo, .section-header h2, .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Site shell */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

#site-header.scrolled .header {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.promo-strip {
  background: linear-gradient(90deg, var(--red-dark), #8b0000);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.promo-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 0.55rem 0;
  text-align: center;
}

.promo-strip__badge {
  background: #fff;
  color: var(--red-dark);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.promo-strip__link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-strip__link:hover {
  opacity: 0.85;
}

/* Header */
.header {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.logo__text em {
  color: var(--red);
  font-style: normal;
}

.logo__text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header__phone {
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link--active {
  color: var(--red);
}

.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav__dropdown-link {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.nav__dropdown-link:hover {
  background: rgba(225, 6, 0, 0.1);
  color: var(--text);
}

.nav__cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px var(--red-glow);
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 28px var(--red-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
}

/* Hero */
.page-hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--image .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero--image .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.95), rgba(10, 10, 12, 0.7));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero__lead {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.page-content {
  padding: 3.5rem 0 5rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 12, 0.97) 0%,
    rgba(10, 10, 12, 0.88) 45%,
    rgba(10, 10, 12, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b66;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero__stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--red);
}

.hero__stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

/* Services */
.services {
  background: var(--bg-elevated);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: rgba(225, 6, 0, 0.4);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(225, 6, 0, 0.12);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

a.service-card {
  display: block;
  color: inherit;
}

a.service-card:hover h3 {
  color: var(--red);
}

.service-card__arrow {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
}

.service-card--featured {
  border-color: rgba(225, 6, 0, 0.45);
  background: linear-gradient(145deg, rgba(225, 6, 0, 0.08), var(--bg-card));
}

.highlight-box {
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.15), rgba(225, 6, 0, 0.05));
  border: 1px solid rgba(225, 6, 0, 0.35);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  color: var(--text-muted);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.content-grid__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.content-grid__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-block h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.content-block ul {
  padding-left: 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filters button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.gallery__item .gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.gallery__item.hidden {
  display: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #1fb855;
}

.btn--facebook {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.35);
}

.btn--facebook:hover {
  background: #166fe5;
}

/* Cont client — secțiune login evidentă */
.client-login-section {
  padding: 3.5rem 0;
  background: linear-gradient(160deg, rgba(225, 6, 0, 0.14) 0%, var(--bg-elevated) 45%, var(--bg) 100%);
  border-top: 1px solid rgba(225, 6, 0, 0.2);
  border-bottom: 1px solid var(--border);
}

.client-login {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: 2.5rem;
  align-items: center;
}

.client-login__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.client-login__info h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.client-login__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.client-login__features {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.client-login__features li {
  font-size: 0.92rem;
  padding-left: 1.35rem;
  position: relative;
}

.client-login__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.client-login__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.client-login__card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(225, 6, 0, 0.3);
  border-radius: 18px;
  padding: 1.9rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Accent roșu subțire în partea de sus a cardului */
.client-login__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff5a54);
}

.client-login__card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.client-login__card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.3);
}

.client-login__card-logo img {
  border-radius: 8px;
}

.client-login__card-head strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.client-login__card-head span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.client-login__form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.client-login__form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.client-login__form input::placeholder {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
}

.client-login__form input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.client-login__form .btn {
  width: 100%;
}

/* Separator "sau" între login și creare cont */
.client-login__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.15rem 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.client-login__divider::before,
.client-login__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.client-login__create {
  width: 100%;
}

.client-login__help {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.client-login__help a {
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
}

.client-login__full-link {
  display: block;
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.client-login__full-link:hover {
  color: var(--red);
}

.nav__login {
  border-color: var(--red) !important;
  color: #ff6b66 !important;
  white-space: nowrap;
}

.nav__login:hover {
  background: rgba(225, 6, 0, 0.12) !important;
  color: var(--text) !important;
}

.future-app-section {
  padding: 3rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.future-app {
  background: linear-gradient(145deg, rgba(225, 6, 0, 0.08), var(--bg-card));
  border: 1px solid rgba(225, 6, 0, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 820px;
}

.future-app__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(225, 6, 0, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.future-app h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.future-app p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.future-app__note {
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}

.trust-bar__item {
  text-align: center;
}

.trust-bar__item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--red);
}

.trust-bar__item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.about__text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__list {
  list-style: none;
  margin: 1.5rem 0;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.about__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Gallery */
.gallery {
  background: var(--bg-elevated);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--bg-card);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover::after {
  opacity: 1;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-band .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-band .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.contact__card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact__card a,
.contact__card p {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact__card a:hover {
  color: var(--red);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  background: var(--bg-elevated);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer__brand p {
  margin-top: 0.75rem;
}

.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
}

.footer h4 {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.4rem;
}

.footer a {
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--red);
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}

.footer__line2::before {
  content: " · ";
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}

.lightbox__nav:hover {
  background: var(--red);
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

/* Mobile nav */
@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 95;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 112;
  }

  .header {
    position: relative;
    z-index: 111;
  }

  .nav {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elevated);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__item--dropdown .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding-left: 0.5rem;
    box-shadow: none;
    display: none;
  }

  .nav__item--dropdown.open .nav__dropdown {
    display: block;
  }

  .nav__cta,
  .nav__login {
    display: flex;
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .header__phone {
    display: none;
  }

  .client-login {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .client-login__card {
    order: -1;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .content-grid,
  .cards-3,
  .trust-bar,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 1.5rem;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__image {
    order: -1;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 12, 0.98) 0%,
      rgba(10, 10, 12, 0.96) 45%,
      rgba(10, 10, 12, 0.94) 100%
    );
  }

  .hero__bg img {
    object-position: left 35%;
    filter: brightness(0.45);
  }

  .hero__content {
    background: rgba(10, 10, 12, 0.82);
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    margin-bottom: 1.75rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    background: rgba(10, 10, 12, 0.88);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 0.25rem;
  }

  .hero__stat strong {
    font-size: 1.15rem;
  }

  .hero__stat span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .highlight-box {
    padding: 1.25rem 1rem;
  }

  .highlight-box p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 400px) {
  .hero__stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__legal {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }

  .footer__line2::before {
    content: none;
  }

  .gallery-filters button {
    min-height: 44px;
    padding: 0.55rem 0.9rem;
  }
}

/* Accesibilitate: focus vizibil la navigare cu tastatura */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Link de salt la conținut (apare doar la focus cu tastatura) */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2000;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Respectă preferința de mișcare redusă */
/* ============================================================
   PREMIUM — animații, tranziții & micro-interacțiuni
   ============================================================ */

/* Bară de progres la scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--red), #ff5a54);
  z-index: 300;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--red-glow);
}

/* Scroll-reveal (clasele .reveal sunt adăugate din JS) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.22, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Intrare hero — fade-up cu stagger */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero__badge {
  animation: heroIn 0.7s both 0.1s;
}
.hero h1 {
  animation: heroIn 0.7s both 0.22s;
}
.hero__lead {
  animation: heroIn 0.7s both 0.36s;
}
.hero__actions {
  animation: heroIn 0.7s both 0.5s;
}
.hero__stats {
  animation: heroIn 0.7s both 0.64s;
}

/* Ken Burns subtil pe imaginea hero */
@keyframes kenburns {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1);
  }
}
.hero__bg img {
  animation: kenburns 20s ease-out forwards;
}

/* Badge hero — punct pulsatoriu */
.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(225, 6, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0);
  }
}

/* Butoane — efect de luciu la hover */
.btn {
  position: relative;
  overflow: hidden;
}
.btn--primary::after,
.btn--whatsapp::after,
.btn--facebook::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn--primary:hover::after,
.btn--whatsapp:hover::after,
.btn--facebook:hover::after {
  left: 150%;
}
.btn--primary:hover {
  transform: translateY(-2px);
}

/* Link-uri nav — underline animat */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Carduri servicii — lift + glow, iconiță & săgeată animate */
.service-card {
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(225, 6, 0, 0.22);
}
.service-card__icon {
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(225, 6, 0, 0.22);
}
.service-card__arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
}
.service-card:hover .service-card__arrow {
  transform: translateX(5px);
}

/* Imagini — zoom delicat la hover */
.gallery__item img,
.about__image img,
.content-grid__img img {
  transition: transform 0.6s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.gallery__item:hover img,
.about__image:hover img,
.content-grid__img:hover img {
  transform: scale(1.06);
}

/* Trust bar & contact card — lift subtil */
.trust-bar__item {
  transition: transform 0.25s ease;
}
.trust-bar__item:hover {
  transform: translateY(-4px);
}
.contact__card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.contact__card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.4);
}

/* Card login — lift la hover */
.client-login__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.client-login__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
}

/* CTA band — strălucire animată */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
  animation: ctaSweep 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaSweep {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(160%);
  }
}

/* FAQ — acordeon animat */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq__item.open {
  border-color: rgba(225, 6, 0, 0.4);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
}
.faq__q:hover {
  color: var(--red);
}
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--red);
  transition: transform 0.3s ease;
  font-size: 1.4rem;
  line-height: 1;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__item.open .faq__a {
  grid-template-rows: 1fr;
}
.faq__a > div {
  overflow: hidden;
}
.faq__a p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===================== Recenzii ===================== */
.reviews {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(225, 6, 0, 0.07), transparent 45%),
    var(--bg);
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: -0.5rem 0 2.5rem;
  flex-wrap: wrap;
}
.reviews-summary__score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.reviews-summary__stars {
  display: inline-flex;
  gap: 2px;
  color: #ffc107;
}
.reviews-summary__count {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  right: 1.1rem;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(225, 6, 0, 0.18);
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: var(--shadow-soft);
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  flex-shrink: 0;
}
.review-card__name {
  display: block;
  font-size: 0.98rem;
}
.review-card__car {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.review-card__stars {
  margin-left: auto;
  display: inline-flex;
  gap: 1px;
  align-self: flex-start;
}
.review-card__stars .star {
  color: #3a3a45;
}
.review-card__stars .star--on {
  color: #ffc107;
}
.review-card__text {
  color: #d6d6df;
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.review-card__date {
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* Stelele inline (summary) */
.reviews-summary .star { color: #3a3a45; }
.reviews-summary .star--on { color: #ffc107; }

/* ===================== Blog / Sfaturi ===================== */
.blog-teaser {
  padding: 5rem 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: var(--shadow-soft);
}
.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.07);
}
.blog-card__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(225, 6, 0, 0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.blog-card__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.blog-card__body h3 {
  font-size: 1.18rem;
  line-height: 1.3;
}
.blog-card__body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.76rem;
}
.blog-card__more {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* Articol complet */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 8;
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article h2 { font-size: 1.7rem; margin: 2rem 0 0.85rem; }
.article h3 { font-size: 1.25rem; margin: 1.6rem 0 0.6rem; }
.article p { color: #d6d6df; margin-bottom: 1rem; line-height: 1.8; }
.article ul { color: #d6d6df; margin: 0 0 1.2rem 1.2rem; line-height: 1.8; }
.article ul li { margin-bottom: 0.4rem; }
.article__callout {
  background: linear-gradient(160deg, rgba(225, 6, 0, 0.12), rgba(225, 6, 0, 0.04));
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  color: #f0f0f3;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   Widget chat WhatsApp plutitor
   ============================================================ */
.wa-widget {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.wa-widget__btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-widget__btn:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}
.wa-widget__btn.is-open .wa-widget__pulse {
  display: none;
}
.wa-widget__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-widget__panel {
  width: min(330px, calc(100vw - 2.2rem));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  animation: waSlideIn 0.25s ease;
}
@keyframes waSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-widget__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #128c4b, #25d366);
  color: #fff;
}
.wa-widget__head img {
  border-radius: 50%;
  background: #fff;
}
.wa-widget__head strong {
  display: block;
  font-size: 0.92rem;
}
.wa-widget__head span {
  display: block;
  font-size: 0.7rem;
  opacity: 0.85;
}
.wa-widget__close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}
.wa-widget__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wa-widget__bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  padding: 0.7rem 0.85rem;
  font-size: 0.84rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.wa-widget__quick {
  display: block;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--text);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}
.wa-widget__quick:hover {
  background: rgba(37, 211, 102, 0.18);
  transform: translateX(3px);
}
.wa-widget__foot {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.wa-widget__foot .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.wa-widget__tel {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.wa-widget__tel:hover {
  color: var(--text);
}
@media (max-width: 640px) {
  .wa-widget {
    right: 0.8rem;
    bottom: 0.8rem;
  }
  .wa-widget__btn {
    width: 52px;
    height: 52px;
  }
}

/* ============================================================
   Formular programare online + calculator revizie
   ============================================================ */
.booking-section {
  background: linear-gradient(160deg, rgba(225, 6, 0, 0.07), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.booking-section h2 {
  margin-bottom: 0.4rem;
}
.booking-section > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.booking-form .form-field--full {
  grid-column: 1 / -1;
}
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.booking-form__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.booking-form__note {
  grid-column: 1 / -1;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Calculator revizie */
.calc-section {
  margin: 2.5rem 0;
}
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}
.calc-card__form {
  display: grid;
  gap: 1rem;
}
.calc-result {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.calc-result__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.calc-result__price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.calc-result__price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.calc-result__items {
  width: 100%;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.calc-result__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.calc-result__row strong {
  color: var(--text);
}
.calc-result__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}
.calc-result__disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
}
@media (max-width: 820px) {
  .calc-card {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
  .booking-section {
    padding: 1.4rem;
  }
}

/* ============================================================
   Blog: toolbar filtre + căutare
   ============================================================ */
.blog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.blog-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  color: var(--text-muted);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-search:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.blog-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}
.blog-search input::placeholder {
  color: var(--text-muted);
}
.blog-filters {
  margin-bottom: 0;
}
.blog-card.hidden {
  display: none;
}
.blog-toolbar__empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.blog-toolbar__empty a {
  color: var(--red);
  font-weight: 600;
}

/* ============================================================
   Finisaje UI: accesibilitate + micro-interacțiuni
   ============================================================ */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection {
  background: rgba(225, 6, 0, 0.55);
  color: #fff;
}
.btn {
  will-change: transform;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
img {
  font-style: italic; /* alt text vizibil elegant când imaginea lipsește */
}

/* ============================================================
   Sfaturi: articole pe pagini individuale
   ============================================================ */
.article--paged {
  display: none;
}
.article--paged.is-open {
  display: block;
  margin-top: 0 !important;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  animation: articleIn 0.35s ease;
}
@keyframes articleIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.article-back:hover {
  color: var(--text);
  border-color: var(--red);
  transform: translateX(-3px);
}

/* ============================================================
   Design glass — carduri translucide cu blur (păstrează culorile)
   ============================================================ */
@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .service-card,
  .blog-card,
  .contact__card,
  .faq__item,
  .highlight-box,
  .booking-section,
  .calc-card,
  .client-login__card,
  .future-app,
  .trust-bar,
  .hero__stat,
  .article--paged.is-open,
  .blog-search,
  .blog-toolbar__empty {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(22, 22, 29, 0.55) 55%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    backdrop-filter: blur(12px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 44px rgba(0, 0, 0, 0.35);
  }
  .calc-result {
    background: rgba(14, 14, 19, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.09);
  }
  .header {
    background: rgba(10, 10, 13, 0.68);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .wa-widget__panel {
    background: rgba(18, 18, 24, 0.72);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
  }
}

/* ============================================================
   Optimizare mobil — site public
   ============================================================ */
@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .contact-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }
  .contact-actions .btn {
    width: 100%;
    text-align: center;
  }
  .gallery-filters,
  .blog-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.4rem;
  }
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }
  .gallery-filters button {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .booking-form,
  .portal-form-grid {
    grid-template-columns: 1fr;
  }
  .article--paged.is-open h2 {
    font-size: 1.35rem;
  }
  .section-header h2 {
    font-size: 1.45rem;
  }
  .cta-band h2 {
    font-size: 1.4rem;
  }
  .promo-strip__inner p {
    font-size: 0.78rem;
  }
}

/* ============================================================
   Modernizare vizuală — accente gradient + micro-interacțiuni
   ============================================================ */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(225, 6, 0, 0.22), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(60, 90, 200, 0.12), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.hero__badge {
  position: relative;
  overflow: hidden;
}
.hero__badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: badgeSheen 4.5s ease-in-out infinite;
}
@keyframes badgeSheen {
  0%, 60% { left: -120%; }
  100% { left: 160%; }
}

/* Carduri: hover mai expresiv, tranziții fluide, colțuri consistente */
.service-card,
.blog-card,
.contact__card,
.about__image,
.future-app,
.calc-card {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s, border-color 0.32s;
}
.service-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(225, 6, 0, 0.18);
}
.service-card__icon {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}
.service-card:hover .service-card__icon {
  transform: scale(1.12) rotate(-4deg);
}
.blog-card__media img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

/* Titluri de secțiune cu accent gradient pe eticheta mică */
.section-label {
  background: linear-gradient(90deg, var(--red), #ff5a4d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Butoane primare — strălucire fină la hover */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn--primary:hover::after {
  transform: translateX(100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge::after,
  .btn--primary::after { animation: none; transition: none; }
}
