@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #eef4f1;
  --bg-soft: #f8fbfa;
  --panel: #ffffff;
  --panel-2: #eef8f5;
  --text: #173b34;
  --text-soft: #587773;
  --text-muted: #758b88;
  --line: #d9ebe6;
  --line-soft: #ecefeb;
  --brand: #264d46;
  --brand-deep: #183f3a;
  --brand-accent: #d6b96d;
  --brand-accent-soft: #f4ead8;
  --car: #1a6c63;
  --travel: #2d6b8d;
  --health: #7f8e38;
  --danger: #b6614d;
  --shadow: rgba(28, 71, 65, 0.08);
  --font: "Nunito", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: linear-gradient(135deg, #edf5f3 0%, #dcebe7 100%);
  color: var(--text);
  min-height: 100vh;
}

.app-shell {
  width: min(1500px, calc(100% - 40px));
  min-height: min(960px, calc(100vh - 40px));
  margin: 20px auto;
  display: flex;
  border-radius: 30px;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,.8);
  overflow: visible;
  box-shadow: 0 24px 80px var(--shadow);
}

.main-content {
  flex: 1;
  min-width: 0;
  padding: 34px 42px;
  background: var(--bg-soft);
}

@media (max-width: 980px) {
  .app-shell { width: min(100% - 24px, 760px); margin: 12px auto; }
  .main-content { padding-inline: 26px; }
}

@media (max-width: 680px) {
  .app-shell { display: block; width: 100%; min-height: 100vh; margin: 0; border-radius: 0; }
  .main-content { padding: 22px 16px 34px; }
}

@media (max-width: 980px) {
  .topbar { margin-inline: -26px; padding-inline: 26px; }
  .topbar-actions { flex: 1; justify-content: flex-end; }
  .top-navigation { overflow-x: auto; scrollbar-width: thin; }
  .top-nav-link { padding-inline: 9px; }
}

@media (max-width: 680px) {
  .topbar { margin: -22px -16px 0; padding: 12px 16px; }
  .top-navigation { flex: 1; overflow-x: auto; }
  .top-nav-link { font-size: 10px; }
}

.mobile-menu {
  display: none;
}

@media (max-width: 1120px) {
  .top-navigation,
  .topbar-quick-actions {
    display: none;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(6, 42, 120, .18);
    border-radius: 10px;
    background: #e9f2fb;
    color: #062A78;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .mobile-menu-button::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-button:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
  }

  .mobile-menu-button__icon {
    display: grid;
    gap: 3px;
    width: 18px;
  }

  .mobile-menu-button__icon span {
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    width: min(320px, calc(100vw - 32px));
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(6, 42, 120, 0.14);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(6, 42, 120, 0.18);
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 13px;
    border-radius: 12px;
    color: var(--brand-deep);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link:focus-visible,
  .mobile-menu-link.active {
    background: #e9f2fb;
    color: #062A78;
  }

  .mobile-menu-link--policy {
    background: var(--brand-deep);
    color: #fff;
  }

  .mobile-menu-link--policy:hover,
  .mobile-menu-link--policy:focus-visible {
    background: var(--brand);
    color: #fff;
  }

  .mobile-menu-link--travel {
    border: 1px solid rgba(45, 107, 141, 0.24);
    background: #e8f3f8;
    color: #194e6a;
  }

  .mobile-menu-link--travel:hover,
  .mobile-menu-link--travel:focus-visible,
  .mobile-menu-link--travel.active {
    background: #d7eaf3;
    color: #194e6a;
  }

  .mobile-menu-section {
    padding: 10px 13px 4px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-menu-section--first {
    padding-top: 4px;
  }

  .mobile-menu-link--all-products {
    border-top: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
  }

  .mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .mobile-menu-item .mobile-menu-link {
    flex: 1;
    min-width: 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--brand-deep);
    font: inherit;
    cursor: pointer;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    background: #e9f2fb;
  }

  .mobile-menu-toggle__caret {
    display: inline-block;
    font-size: 14px;
    transition: transform 160ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__caret {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding-left: 12px;
    margin-top: -2px;
  }

  .mobile-submenu.open {
    display: flex;
  }

  .mobile-submenu-link {
    min-height: 38px;
    font-size: 13px;
    padding-left: 20px;
    opacity: 0.9;
  }
}

@media (max-width: 680px) {
  .app-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .main-content {
    padding: 22px 16px 34px;
  }

  .topbar {
    margin: -22px -16px 0;
    padding: 10px 16px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .topbar-brand {
    gap: 5px;
    min-width: 0;
  }

  .topbar-brand__logo {
    height: 30px;
  }

  .topbar-whatsapp,
  .topbar-email,
  .topbar-phone {
    flex-shrink: 0;
  }

  .topbar-whatsapp {
    padding: 3px 4px;
  }

  .topbar-whatsapp__icon {
    height: 20px;
  }

  .topbar-email,
  .topbar-phone {
    width: 28px;
    height: 28px;
  }

  .topbar-actions {
    margin-left: auto;
    flex-shrink: 0;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .topbar-brand {
    gap: 4px;
  }

  .topbar-brand__logo {
    height: 26px;
  }

  .topbar-whatsapp__icon {
    height: 18px;
  }

  .topbar-email,
  .topbar-phone {
    width: 26px;
    height: 26px;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  margin: -34px -42px 0;
  padding: 12px 42px;
  background: rgba(248, 251, 250, 0.94);
  border-bottom: 1px solid rgba(6, 42, 120, 0.12);
  box-shadow: 0 8px 20px rgba(6, 42, 120, 0.07);
  backdrop-filter: blur(12px);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topbar-brand__logo {
  display: block;
  height: 52px;
  width: auto;
}

.topbar-brand__link {
  display: inline-flex;
}

.topbar-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(40, 211, 102, 0.12);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.topbar-whatsapp:hover,
.topbar-whatsapp:focus-visible {
  background: rgba(40, 211, 102, 0.22);
  transform: translateY(-1px);
}

.topbar-whatsapp__icon {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.topbar-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(6, 42, 120, 0.1);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.topbar-email:hover,
.topbar-email:focus-visible {
  background: rgba(6, 42, 120, 0.2);
  transform: translateY(-1px);
}

.topbar-email__icon {
  color: #062A78;
  font-size: 18px;
  line-height: 1;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(6, 42, 120, 0.1);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.topbar-phone:hover,
.topbar-phone:focus-visible {
  background: rgba(6, 42, 120, 0.2);
  transform: translateY(-1px);
}

.topbar-phone__icon {
  color: #062A78;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 680px) {
  .topbar {
    gap: 6px;
  }

  .topbar-brand {
    gap: 4px;
  }

  .topbar-brand__logo {
    height: 28px;
  }

  .topbar-whatsapp {
    padding: 2px 4px;
  }

  .topbar-whatsapp__icon {
    height: 18px;
  }

  .topbar-email,
  .topbar-phone {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }

  .topbar-actions {
    margin-left: auto;
    gap: 4px;
  }

  .mobile-menu-button {
    padding: 6px 10px;
    min-height: 34px;
  }
}

@media (max-width: 420px) {
  .topbar-brand__logo {
    height: 24px;
  }

  .mobile-menu-button {
    padding: 6px 8px;
  }

  .mobile-menu-button > span:last-child {
    display: none;
  }
}

.top-navigation {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
  padding: 4px;
  border: 1px solid rgba(6, 42, 120, 0.14);
  border-radius: 14px;
  background: #e9f2fb;
}

.top-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 10px;
  color: #164a84;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.top-nav-link:hover,
.top-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  color: #062A78;
}

.top-nav-link.active {
  background: #062A78;
  color: white;
  box-shadow: 0 5px 12px rgba(6, 42, 120, 0.18);
}

.top-nav-item-wrap {
  position: relative;
}

.top-nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 10;
  min-width: 200px;
  background: #062A78;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px var(--shadow);
  padding: 8px;
  display: none;
}

/* invisible bridge so hover survives the gap between the link and the panel */
.top-nav-submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.top-nav-item-wrap:hover .top-nav-submenu,
.top-nav-item-wrap:focus-within .top-nav-submenu {
  display: block;
}

.top-nav-submenu-link {
  display: block;
  width: 100%;
  text-align: left;
  color: #d2ebe7;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.top-nav-submenu-link:hover,
.top-nav-submenu-link.active {
  background: #e9f7f5;
  color: var(--brand-deep);
}

.top-nav-submenu-link:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: -2px;
}

.topbar-quick-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.topbar-quick-action:hover,
.topbar-quick-action:focus-visible {
  transform: translateY(-1px);
}

.topbar-quick-action--primary {
  background: var(--brand-deep);
  color: #fff;
}

.topbar-quick-action--primary:hover,
.topbar-quick-action--primary:focus-visible,
.topbar-quick-action--primary.active {
  background: var(--brand);
}

.topbar-quick-action--travel {
  border-color: rgba(45, 107, 141, 0.3);
  background: #e8f3f8;
  color: #194e6a;
}

.topbar-quick-action--travel:hover,
.topbar-quick-action--travel:focus-visible,
.topbar-quick-action--travel.active {
  border-color: var(--travel);
  background: #d7eaf3;
}

@media (max-width: 1120px) {
  .topbar-actions .top-navigation,
  .topbar-actions .topbar-quick-actions {
    display: none;
  }
}

.primary-button {
  border: none;
  background: var(--brand);
  color: white;
  font-weight: 800;
  font-size: 12px;
  padding: 12px 22px;
  border-radius: 12px;
  letter-spacing: 0.12em;
}

.context-next-step {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--car);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px var(--shadow);
}

.context-next-step[hidden] {
  display: none;
}

.context-next-step--ready {
  border-color: rgba(26, 108, 99, 0.35);
  background: var(--panel-2);
}

.context-next-step--home {
  border-left-color: var(--health);
}

.context-next-step--travel {
  border-left-color: var(--travel);
}

.context-next-step--finance {
  border-left-color: var(--brand-accent);
}

.context-next-step--after-action {
  margin-top: 24px;
}

.context-next-step:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

.context-next-step__intro h2 {
  margin-top: 9px;
  color: var(--brand-deep);
  font-size: 22px;
  line-height: 1.2;
}

.context-next-step__intro p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.context-next-step__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.context-next-step__options--single {
  grid-template-columns: minmax(0, 1fr);
}

.context-next-step__option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--brand-deep);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.context-next-step__option:hover,
.context-next-step__option:focus-visible {
  border-color: var(--brand);
  background: #fff;
  transform: translateY(-2px);
}

.context-next-step__option strong {
  font-size: 14px;
}

.context-next-step__option span {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.form-optional-details {
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.form-optional-details summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style-position: inside;
}

.form-optional-details summary::marker {
  color: var(--brand);
}

.form-optional-details summary small {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-optional-details summary:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}

.form-optional-details[open] summary {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.form-optional-details__content {
  padding: 2px 18px 18px;
}

@media (max-width: 520px) {
  .form-optional-details summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .form-optional-details__content {
    padding-inline: 14px;
  }
}

@media print {
  .form-optional-details {
    border: 0;
  }

  .form-optional-details summary {
    display: none;
  }

  .form-optional-details:not([open]) > .form-optional-details__content {
    display: block;
  }
}

.vacation-sticky-actions {
  position: sticky;
  bottom: 12px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 18px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--brand-deep);
  color: #fff;
  box-shadow: 0 14px 36px rgba(23, 59, 52, 0.24);
}

.vacation-sticky-actions span {
  max-width: 360px;
  margin-right: 6px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vacation-sticky-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.vacation-sticky-actions a:last-child {
  background: var(--brand-accent);
  color: var(--brand-deep);
}

@media (max-width: 820px) {
  .context-next-step {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .context-next-step {
    gap: 18px;
    padding: 18px;
  }

  .context-next-step__options {
    grid-template-columns: minmax(0, 1fr);
  }

  .context-next-step__option {
    min-height: 96px;
  }

  .vacation-sticky-actions {
    bottom: 8px;
    width: calc(100% - 16px);
    max-width: none;
    margin-inline: 8px;
  }

  .vacation-sticky-actions span {
    display: none;
  }

  .vacation-sticky-actions a {
    flex: 1;
    justify-content: center;
    padding-inline: 8px;
  }
}

.section-kicker {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: var(--brand-deep);
}

.compact-title {
  margin-top: 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.pill-icon {
  background: var(--brand-accent-soft);
  padding: 6px 11px;
  border-radius: 99px;
  font-size: 9px;
  color: var(--brand-deep);
  border: 1px solid var(--brand-accent-soft);
}

.small-heading {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-panel {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  padding: 30px;
  margin-top: 24px;
}

@media (max-width: 680px) {
  .about-panel,
  .products-panel {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
  }

  .about-header {
    display: block;
  }

  .about-header .pill-icon {
    display: inline-flex;
    margin-top: 14px;
  }

  .about-content {
    margin-top: 18px;
  }

  .about-story {
    padding: 18px;
    border-radius: 14px;
  }

  .about-intro p {
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
  }

  .section-title {
    line-height: 1.08;
  }
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-header .section-title {
  margin-top: 10px;
}

.about-content {
  display: block;
  margin-top: 26px;
}

.about-story {
  background: var(--bg-soft);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
}

.about-story--full {
  min-height: 72vh;
}

.about-intro {
  width: 100%;
  max-width: none;
}

.about-intro__opening {
  display: block;
}

.about-intro__portrait {
  float: right;
  margin: 0 0 24px 30px;
  width: min(100%, 280px);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 30px rgba(23, 59, 52, 0.1);
}

.about-intro__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-intro p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
}

.about-intro .signature {
  margin-top: 22px;
  font-weight: 800;
  color: var(--brand-deep);
  text-align: left;
}

.team-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.office-section {
  margin-top: 32px;
}

.team-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team-photo-card {
  overflow: hidden;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 30px rgba(23, 59, 52, 0.08);
}

.team-photo-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .about-intro__portrait {
    float: none;
    margin: 22px auto 0;
    width: min(100%, 280px);
  }

  .team-gallery {
    grid-template-columns: 1fr;
  }

  .team-photo-card img {
    height: auto;
    max-height: 360px;
    aspect-ratio: 4 / 3;
  }
}

.office-address-card {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line-soft);
  box-shadow: 0 10px 24px rgba(23, 59, 52, 0.05);
}

.office-address-pin {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-accent-soft);
  font-size: 20px;
  flex-shrink: 0;
}

.office-address-copy {
  flex: 1;
}

.office-address-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.office-address-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.6;
}

.office-address-link:hover,
.office-address-link:focus {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-hero {
  position: relative;
  padding: 30px 34px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(24, 63, 58, 0.96) 0%, rgba(38, 77, 70, 0.9) 55%, rgba(214, 185, 109, 0.35) 100%),
    url('../assets/consultant_travel.avif') center / cover no-repeat;
}

.about-hero .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.about-hero .section-title {
  color: white;
}

.about-hero .pill-icon {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 11px;
  padding: 8px 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-lede {
  font-size: 17px !important;
  font-weight: 700;
  color: var(--brand-deep) !important;
  text-align: left !important;
  line-height: 1.7 !important;
}

.about-signature {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-signature__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-accent-soft);
  color: var(--brand-accent);
  font-size: 18px;
}

.about-signature .signature {
  margin-top: 0;
  font-style: italic;
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-deep);
}

.about-signature__sticker {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: center bottom;
}

.about-divider {
  margin-top: 32px;
  height: 3px;
  width: 64px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-accent) 0%, transparent 100%);
}

.team-photo-card {
  position: relative;
}

.team-photo-card img {
  transition: transform 0.35s ease;
}

.team-photo-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 680px) {
  .about-hero {
    padding: 22px;
  }

  .about-lede {
    font-size: 15px !important;
  }

  .about-signature {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .about-signature__sticker {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(148px, 48vw);
    height: auto;
    aspect-ratio: 1;
  }
}

.products-panel {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  padding: 30px;
  margin-top: 24px;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.brand-concept-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(23, 59, 52, 0.04);
}

.brand-concept-card h3 {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.brand-concept-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.concept-icon {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(23, 59, 52, 0.07);
}

.product-icon {
  font-size: 76px;
  line-height: 1;
  color: var(--brand-deep);
}

.product-icon--rca {
  background: linear-gradient(135deg, #e6f3ef 0%, #cce5df 100%);
}

.product-icon--travel {
  background: linear-gradient(135deg, #eaf2f5 0%, #d6e7ee 100%);
  color: var(--travel);
}

.product-icon--malpraxis {
  background: linear-gradient(135deg, #f4ece5 0%, #ead8ce 100%);
  color: var(--danger);
}

.product-icon--vacante {
  background: linear-gradient(135deg, #f4f0dc 0%, #eadcb4 100%);
  color: #b47c36;
}

.product-icon--credite {
  background: linear-gradient(135deg, #e9eef6 0%, #d5dfef 100%);
  color: #526e9e;
}

.product-icon--leasing {
  background: linear-gradient(135deg, #e9f2ef 0%, #cde2dc 100%);
  color: #347d70;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-action {
  align-self: flex-start;
  margin-top: 16px;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.product-action:hover,
.product-action:focus {
  color: var(--car);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-icon {
    height: 170px;
  }

  .product-icon {
    font-size: 58px;
  }
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.family-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(23, 59, 52, 0.04);
}

.family-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.family-card__link:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: -3px;
}

.family-banner {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 1;
}

.family-banner--auto {
  background: linear-gradient(135deg, #e6f3ef 0%, #cce5df 100%);
  color: var(--car);
}

.family-banner__icon {
  height: 92px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.family-banner--locuinta {
  background: linear-gradient(135deg, #f4ece1 0%, #e9d9c2 100%);
  color: #a97c34;
}

.family-banner--elsiea {
  background: linear-gradient(135deg, #eef2df 0%, #dfe7bd 100%);
  color: var(--health);
}

.family-banner--relaxare {
  background: linear-gradient(135deg, #f4f0dc 0%, #eadcb4 100%);
  color: #b47c36;
}

.family-banner--viitor {
  background: linear-gradient(135deg, #e9eef6 0%, #d5dfef 100%);
  color: #526e9e;
}

.family-body {
  padding: 20px 22px 22px;
}

.family-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.family-body p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.family-links {
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.family-links a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.family-links a:hover,
.family-links a:focus {
  background: var(--brand-accent-soft);
  border-color: var(--brand-accent-soft);
  color: var(--brand-deep);
}

.family-links a.family-link--soon {
  background: transparent;
  border-style: dashed;
  color: var(--text-muted);
  cursor: default;
}

.family-links a.family-link--soon:hover,
.family-links a.family-link--soon:focus {
  background: transparent;
  border-color: var(--line-soft);
  color: var(--text-muted);
}

.family-link__soon {
  font-weight: 600;
  font-style: italic;
}

.produse-page {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.produse-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(38, 77, 70, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 14%, rgba(214, 185, 109, 0.22), transparent 28%),
    linear-gradient(135deg, #f8fbfa 0%, #eef8f5 50%, #f6f0de 100%);
  box-shadow: 0 18px 48px rgba(23, 59, 52, 0.08);
}

.produse-hero h1 {
  max-width: 760px;
  margin-top: 12px;
  color: var(--brand-deep);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.98;
}

.produse-hero p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.produse-paths {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(38, 77, 70, 0.12);
  border-radius: 24px;
  background: #ffffff;
}

.produse-section-header--paths {
  align-items: flex-start;
}

.produse-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.produse-path-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fbfa 0%, #eef8f5 100%);
  box-shadow: 0 10px 24px rgba(23, 59, 52, 0.04);
}

.produse-path-card span {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.produse-path-card strong {
  display: block;
  margin-top: 12px;
  color: var(--brand-deep);
  font-size: 1rem;
  line-height: 1.32;
}

.produse-path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.produse-path-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(38, 77, 70, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.produse-path-links a:hover,
.produse-path-links a:focus-visible {
  background: var(--brand-deep);
  color: #ffffff;
}

.produse-hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(38, 77, 70, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.produse-hero__aside > span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.produse-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.produse-quick-links a,
.produse-advice-link,
.produse-family-cta,
.produse-cross-link,
.produse-product-links a,
.produse-product-pill {
  text-decoration: none;
}

.produse-quick-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(23, 59, 52, 0.05);
}

.produse-quick-links a:hover,
.produse-quick-links a:focus-visible {
  border-color: rgba(214, 185, 109, 0.7);
  background: var(--brand-accent-soft);
}

.produse-family-section {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: #ffffff;
}

.produse-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.produse-advice-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid var(--brand-deep);
  border-radius: 12px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.produse-advice-link:hover,
.produse-advice-link:focus-visible {
  background: var(--brand-deep);
  color: #ffffff;
}

.produse-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.produse-family-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(23, 59, 52, 0.05);
}

.produse-family-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #eef8f5 100%);
}

.produse-family-card--featured.produse-family-card--auto {
  background: linear-gradient(135deg, #e6f3ef 0%, #cce5df 100%);
}

.produse-family-card--locuinta {
  background: linear-gradient(135deg, #f4ece1 0%, #e9d9c2 100%);
}

.produse-family-card--familie {
  background: linear-gradient(135deg, #eef2df 0%, #dfe7bd 100%);
}

.produse-family-card--relaxare {
  background: linear-gradient(135deg, #f4f0dc 0%, #eadcb4 100%);
}

.produse-family-card--viitor {
  background: linear-gradient(135deg, #e9eef6 0%, #d5dfef 100%);
}

.produse-family-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
}

.produse-family-card__media img {
  display: block;
  width: min(86px, 70%);
  height: auto;
  mix-blend-mode: multiply;
}

.produse-family-card--featured .produse-family-card__media {
  min-height: 180px;
}

.produse-family-card--featured .produse-family-card__media img {
  width: min(132px, 72%);
}

.produse-family-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.produse-family-card__eyebrow {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.produse-family-card h3 {
  margin-top: 8px;
  color: var(--brand-deep);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.05;
}

.produse-family-card p {
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.produse-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
}

.produse-product-links a,
.produse-product-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.produse-product-links a:hover,
.produse-product-links a:focus-visible {
  border-color: rgba(214, 185, 109, 0.75);
  background: var(--brand-accent-soft);
}

.produse-product-pill--soon {
  border-style: dashed;
  background: transparent;
  color: var(--text-muted);
}

.produse-pairing {
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(38, 77, 70, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--brand-deep);
  font-size: 0.86rem;
  line-height: 1.45;
}

.produse-pairing strong {
  font-weight: 900;
}

.produse-family-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: auto;
  padding-top: 18px;
}

.produse-family-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--brand-deep);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.produse-family-cta::after {
  content: "→";
  margin-left: 8px;
}

.produse-family-cta:hover,
.produse-family-cta:focus-visible {
  background: var(--brand);
}

.produse-cross-link {
  color: var(--car);
  font-size: 0.84rem;
  font-weight: 800;
}

.produse-cross-link:hover,
.produse-cross-link:focus-visible {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.produse-sticky-cta {
  position: sticky;
  bottom: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(24, 63, 58, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(23, 59, 52, 0.16);
  backdrop-filter: blur(12px);
}

.produse-sticky-cta span {
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 900;
}

.produse-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 12px;
  background: var(--brand-deep);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.produse-sticky-cta a:hover,
.produse-sticky-cta a:focus-visible {
  background: var(--brand);
}

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

  .produse-hero,
  .produse-family-card,
  .produse-family-card--featured {
    grid-template-columns: 1fr;
  }

  .produse-hero__aside {
    min-height: 0;
  }

  .produse-family-grid {
    grid-template-columns: 1fr;
  }

  .produse-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .produse-family-card__media,
  .produse-family-card--featured .produse-family-card__media {
    min-height: 132px;
  }
}

@media (max-width: 680px) {
  .family-banner {
    height: 110px;
    font-size: 46px;
  }

  .family-body {
    padding: 16px 18px 18px;
  }

  .produse-page {
    margin-top: 18px;
    gap: 18px;
  }

  .produse-hero,
  .produse-paths,
  .produse-family-section {
    border-radius: 18px;
  }

  .produse-path-grid {
    grid-template-columns: 1fr;
  }

  .produse-path-card {
    min-height: 0;
  }

  .produse-quick-links {
    grid-template-columns: 1fr;
  }

  .produse-section-header {
    display: block;
  }

  .produse-advice-link {
    margin-top: 16px;
  }

  .produse-family-card {
    padding: 14px;
    border-radius: 18px;
  }

  .produse-family-card__media img,
  .produse-family-card--featured .produse-family-card__media img {
    width: 88px;
  }

  .produse-sticky-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
}

.icon-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--brand-deep);
  text-decoration: none;
  cursor: pointer;
}

.icon-button.small-button {
  padding: 8px 11px;
  font-size: 13px;
}

.policy-frame-panel {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  padding: 24px;
  min-height: 720px;
  margin-top: 24px;
}

.policy-frame-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

#insureframe-container {
  width: 100%;
  min-height: 640px;
  height: clamp(620px, 72vh, 820px);
}

#insureframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  border-radius: 16px;
  background: white;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}

.policy-frame-panel__redirect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 48px 24px;
  text-align: left;
}

.policy-frame-panel__callout {
  margin: 0;
  color: var(--brand-deep);
  font-size: 18px;
  line-height: 1.35;
}

.policy-frame-panel__redirect p {
  width: 100%;
  color: var(--ink-soft, #4b5563);
  margin: 0;
}

@media (max-width: 980px) {
  .policy-frame-panel {
    min-height: 0;
    padding: 18px;
  }

  #insureframe-container {
    min-height: 560px;
    height: 70vh;
  }
}

@media (max-width: 680px) {
  .policy-frame-panel {
    padding: 14px;
    border-radius: 16px;
  }

  .policy-frame-panel__top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  #insureframe-container {
    min-height: 620px;
    height: 76svh;
  }

  #insureframe {
    border-radius: 10px;
  }
}

.home-page {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.home-hero {
  position: relative;
  min-height: clamp(440px, 58vh, 620px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  border-radius: 24px;
  color: white;
  background:
    linear-gradient(90deg, rgba(12, 50, 45, 0.96) 0%, rgba(12, 50, 45, 0.82) 48%, rgba(12, 50, 45, 0.24) 100%),
    url('../assets/Sediu 2.jpeg') center / cover no-repeat;
  box-shadow: 0 18px 50px rgba(23, 59, 52, 0.14);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(12, 50, 45, 0) 0%, rgba(12, 50, 45, 0.62) 100%);
  pointer-events: none;
}

.home-hero__content,
.home-hero__trust {
  position: relative;
  z-index: 1;
}

.home-hero .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.home-hero h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.96;
  font-weight: 900;
}

.home-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-primary-action,
.home-secondary-action,
.home-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.home-primary-action {
  background: var(--brand-accent);
  color: #1f342f;
}

.home-secondary-action {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero__trust {
  width: min(260px, 100%);
  align-self: flex-start;
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  list-style: none;
}

.home-hero__trust li {
  padding: 14px 16px;
}

.home-hero__trust li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero__trust strong,
.home-hero__trust span {
  display: block;
}

.home-hero__trust strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.home-hero__trust span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.5;
}

.home-section {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line-soft);
}

.home-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.home-inline-link,
.home-contact-link,
.home-service-card a,
.home-offer-strip a {
  color: var(--brand-deep);
  font-weight: 900;
  text-decoration: none;
}

.home-inline-link:hover,
.home-inline-link:focus,
.home-contact-link:hover,
.home-contact-link:focus,
.home-service-card a:hover,
.home-service-card a:focus,
.home-offer-strip a:hover strong,
.home-offer-strip a:focus strong {
  color: var(--car);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.home-service-card {
  grid-column: span 2;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(23, 59, 52, 0.08);
  background: #fff;
}

.home-service-card:nth-child(n + 4) {
  grid-column: span 3;
}

.home-service-card__image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.home-service-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.home-service-card__tag {
  margin-bottom: 0;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--panel-2);
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-service-card h3 {
  margin-top: 16px;
  color: var(--brand-deep);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.05;
}

.home-service-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-service-card a {
  margin-top: 18px;
  font-size: 0.86rem;
}

.home-service-card a + a {
  margin-top: 8px;
}

.home-service-card__primary {
  margin-top: auto !important;
  padding-top: 18px;
}

.home-section--travel {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(220px, 0.75fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: stretch;
  background: #fff;
}

.home-travel-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  align-self: center;
  overflow: hidden;
  border-radius: 18px;
}

.home-travel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-travel-copy p,
.home-section--about p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.home-offer-strip {
  display: grid;
  gap: 12px;
}

.home-offer-strip a {
  display: block;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 59, 52, 0.08);
  box-shadow: 0 10px 24px rgba(23, 59, 52, 0.05);
}

.home-offer-strip strong,
.home-offer-strip span {
  display: block;
}

.home-offer-strip strong {
  color: var(--brand-deep);
  font-size: 1rem;
}

.home-offer-strip span {
  margin-top: 7px;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.55;
}

.home-section--about {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.home-about-photo {
  width: 120px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: 3;
}

.home-contact-link {
  padding: 11px 15px;
  border-radius: 12px;
  background: #e8f5ec;
  color: #247a48;
}

@media (max-width: 980px) {
  .home-hero {
    display: block;
    min-height: 0;
  }

  .home-hero__trust {
    margin-top: 32px;
  }

  .home-section--travel,
  .home-section--about {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-service-card:nth-child(n + 4) {
    grid-column: span 3;
  }

  .home-travel-media {
    min-height: 280px;
    margin: -34px -34px 0;
    border-radius: 24px 24px 0 0;
  }

  .home-about-actions {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .home-page {
    margin-top: 18px;
    gap: 18px;
  }

  .home-hero,
  .home-section {
    border-radius: 18px;
  }

  .home-hero {
    padding: 24px 20px;
    background:
      linear-gradient(180deg, rgba(12, 50, 45, 0.94) 0%, rgba(12, 50, 45, 0.8) 62%, rgba(12, 50, 45, 0.58) 100%),
      url('../assets/Sediu 2.jpeg') 44% center / cover no-repeat;
  }

  .home-hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .home-hero__actions,
  .home-about-actions {
    display: grid;
  }

  .home-primary-action,
  .home-secondary-action,
  .home-contact-link {
    justify-content: center;
    text-align: center;
  }

  .home-section__header {
    display: block;
  }

  .home-section__header .home-inline-link {
    display: inline-flex;
    margin-top: 16px;
  }

  .home-service-card {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .home-service-card:nth-child(n + 4) {
    grid-column: 1 / -1;
  }

  .home-service-card__image {
    height: 180px;
  }

  .home-travel-media {
    min-height: 230px;
    margin: -24px -24px 0;
    border-radius: 18px 18px 0 0;
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(12, 30, 27, 0.84);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox__image {
  display: block;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  cursor: default;
}

.image-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(12, 30, 27, 0.55);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox__nav[hidden] {
  display: none;
}

.image-lightbox__nav:hover,
.image-lightbox__nav:focus-visible {
  background: var(--brand-accent);
  color: var(--brand-deep);
}

.image-lightbox__nav--prev {
  left: 18px;
}

.image-lightbox__nav--next {
  right: 18px;
}

body.image-lightbox-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .image-lightbox {
    padding: 18px;
  }

  .image-lightbox__image {
    max-width: 100%;
    border-radius: 12px;
  }

  .image-lightbox__nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .image-lightbox__nav--prev {
    left: 8px;
  }

  .image-lightbox__nav--next {
    right: 8px;
  }
}

.family-page {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.family-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4.5vw, 52px);
  overflow: hidden;
  border-radius: 24px;
  color: white;
  box-shadow: 0 18px 50px rgba(23, 59, 52, 0.14);
}


.family-hero--auto {
  min-height: clamp(400px, 52vh, 560px);
  align-items: end;
  background:
    linear-gradient(100deg, rgba(12, 50, 45, 0.93) 0%, rgba(12, 50, 45, 0.7) 46%, rgba(12, 50, 45, 0.28) 100%),
    url('../assets/pages/auto.PNG') center / cover no-repeat;
}


.family-hero--locuinta {
  min-height: clamp(400px, 52vh, 560px);
  align-items: end;
  background:
    radial-gradient(circle at 85% 12%, rgba(169, 124, 52, 0.42) 0%, rgba(12, 50, 45, 0) 58%),
    linear-gradient(135deg, rgba(12, 50, 45, 0.88) 0%, rgba(44, 74, 61, 0.65) 52%, rgba(107, 83, 48, 0.35) 100%),
    url('../assets/pages/locuinta.PNG') center / cover no-repeat;
  }

.family-hero--familie {
  min-height: clamp(400px, 52vh, 560px);
  align-items: end;
  background:
    radial-gradient(circle at 85% 12%, rgba(127, 142, 56, 0.48) 0%, rgba(12, 50, 45, 0) 58%),
    linear-gradient(135deg, rgba(12, 50, 45, 0.88) 0%, rgba(42, 75, 53, 0.65) 52%, rgba(95, 113, 48, 0.35) 100%),
    url('../assets/pages/familie.PNG') center / cover no-repeat;
}

.family-hero--viitor {
  background:
    radial-gradient(circle at 85% 12%, rgba(82, 110, 158, 0.5) 0%, rgba(12, 50, 45, 0) 58%),
    linear-gradient(135deg, rgba(12, 50, 45, 0.88) 0%, rgba(31, 70, 83, 0.65) 52%, rgba(63, 92, 138, 0.35) 100%),
    url('../assets/pages/viitor.PNG') center / cover no-repeat;
}

.family-hero--relaxare {
  min-height: clamp(400px, 52vh, 560px);
  align-items: end;
  background:
    linear-gradient(100deg, rgba(9, 44, 60, 0.92) 0%, rgba(9, 44, 60, 0.62) 46%, rgba(9, 44, 60, 0.24) 100%),
    url('../assets/pages/relaxare.PNG') center / cover no-repeat;
}

.family-hero--relaxare h1 {
  font-size: clamp(34px, 4.8vw, 60px);
}

.family-hero--relaxare .family-primary-action {
  border-radius: 999px;
  padding-inline: 26px;
}

.family-hero--relaxare .family-secondary-action {
  border-radius: 999px;
}

.family-hero--relaxare .family-hero__facts li {
  background: rgba(255, 255, 255, 0.18);
}

.family-section--relaxare {
  background: linear-gradient(160deg, #ffffff 0%, #f2f9f7 55%, #eef6fb 100%);
}

.product-grid--photo .product-card {
  padding: 0;
  overflow: hidden;
  background: white;
  border-radius: 22px;
}

.product-card--photo .product-card__photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-card--photo .product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card--photo:hover .product-card__photo img {
  transform: scale(1.05);
}

.product-card--photo .product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(9, 44, 60, 0.18);
}

.product-card__tag--hot {
  background: #b6614d;
  color: white;
}

.product-card--photo .product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

.product-card--photo .product-card__body h3 {
  margin-top: 0;
}

.family-hero .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.family-hero h1 {
  max-width: 640px;
  margin-top: 16px;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.02;
  font-weight: 900;
}

.family-hero p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
}

.family-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.family-primary-action,
.family-secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.family-primary-action {
  background: var(--brand-accent);
  color: #1f342f;
}

.family-secondary-action {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.family-hero__facts {
  display: grid;
  gap: 12px;
  list-style: none;
}

.family-hero__facts li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.family-hero__facts strong,
.family-hero__facts span {
  display: block;
}

.family-hero__facts strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.family-hero__facts span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.5;
}

.family-section {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line-soft);
}

.family-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.family-inline-link {
  color: var(--brand-deep);
  font-weight: 900;
  text-decoration: none;
}

.family-inline-link:hover,
.family-inline-link:focus {
  color: var(--car);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(23, 59, 52, 0.08);
  background: var(--panel-2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(23, 59, 52, 0.1);
}

.product-card--live {
  background: linear-gradient(145deg, #e5f3ef 0%, #c8e2dc 100%);
}

.product-card__tag {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card__tag--soon {
  background: var(--brand-accent-soft);
  color: #7a5f1d;
}

.product-card h3 {
  margin-top: 18px;
  color: var(--brand-deep);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.1;
}

.product-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-card__points {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.product-card__points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-card__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--car);
  font-weight: 900;
}

.product-card__cta {
  margin-top: auto;
  padding-top: 20px;
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.product-card__cta:hover,
.product-card__cta:focus {
  color: var(--car);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.family-section--help {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.family-section--help p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.family-help-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  grid-column: 2;
}

.family-contact-link {
  padding: 11px 15px;
  border-radius: 12px;
  background: #e8f5ec;
  color: #247a48;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .family-hero,
  .product-grid,
  .family-section--help {
    grid-template-columns: 1fr;
  }

  .family-help-actions {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .family-page {
    margin-top: 18px;
    gap: 18px;
  }

  .family-hero,
  .family-section {
    border-radius: 18px;
  }

  .family-section__header {
    flex-direction: column;
    gap: 12px;
  }

  .family-hero__actions,
  .family-help-actions {
    display: grid;
  }

  .family-primary-action,
  .family-secondary-action,
  .family-contact-link {
    justify-content: center;
    text-align: center;
  }
}


