/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */

:root {
  --kc-shell-gradient: linear-gradient(135deg, #021528 0%, #061e34 40%, #0b1f38 100%);
  --color-primary: #20C997;
  --color-primary-hover: #18a97f;
  --color-blue: #1E88E5;
  --text-dark: #111827;
  --text-light: #f9fafb;
  --bg-light: #ffffff;
  --bg-dark: #0B1F38;
  --container-width: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button { font: inherit; cursor: pointer; }

/* ==========================================================================
   2. LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   3. BUTTONS & UI ELEMENTS
   ========================================================================== */

.k-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}

.k-btn:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(32,201,151,0.8);
  outline-offset: 2px;
}

.k-btn--mint,
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 6px rgba(32, 201, 151, 0.2);
}

.k-btn--mint:hover,
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(32, 201, 151, 0.3);
}

.k-btn--blue {
  background-color: var(--color-blue);
  color: #fff;
}

.k-btn--blue:hover {
  background-color: #1769b8;
  transform: translateY(-2px);
}

.k-btn--blue-outline,
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

.btn-outline {
  /* override pentru header dark */
  color: #e5ecf5;
  border-color: rgba(229, 236, 245, 0.7);
}

.k-btn--blue-outline:hover {
  background-color: rgba(30, 136, 229, 0.1);
}

.btn-outline:hover {
  color: #fff;
  border-color: #fff;
  background-color: rgba(255,255,255,0.1);
}

.btn-center {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ==========================================================================
   4. UTILITY BAR
   ========================================================================== */

.utilbar {
  background: var(--kc-shell-gradient);
  color: #e5ecf5;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.util-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 38px;
  width: 100%;
}

.utilbar-left { display: none; }

.utilbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.util-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  color: #e5ecf5;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.util-link:hover { opacity: 1; }

.util-select {
  min-width: 120px;
  padding: 4px 24px 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    rgba(0, 0, 0, 0.18)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 6px center;
  background-size: 14px;
  color: #fff;
  font-size: 12px;
  appearance: none;
  cursor: pointer;
}

.util-select option { color: #111827; }

.utilbar + .main-header { margin-top: -1px; }

/* ==========================================================================
   5. MAIN HEADER + NAV
   ========================================================================== */

.main-header {
  position: relative;
  z-index: 60;
  background: var(--kc-shell-gradient);
  color: #f9fafb;
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
}

.brand {
  position: relative;
  background: none;
  flex: 0 0 auto;
}

.brand::before,
.brand::after { content: none !important; }

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 230px;
  display: block;
}

.nav-inner {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.menu-item { position: relative; }

.menu-item > a,
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}

.menu-item > a:hover,
.menu-trigger:hover { color: #fff; }

/* Dropdown (2 columns) */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #084152;
  border-radius: 12px;
  padding: 14px;
  min-width: 520px;
  max-width: 720px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 200;
}

.menu-item:hover .dropdown,
.menu-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown .dd-item,
.dropdown a {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  align-items: start;
}

.dropdown .dd-item:hover,
.dropdown a:hover { background: rgba(255,255,255,0.10); }

.dropdown .dd-title {
  font-weight: 600;
  color: rgba(255,255,255,0.98);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown .dd-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.35;
}

.dropdown a + a,
.dropdown .dd-item + .dd-item { margin-top: 2px; }

.menu-item.align-right .dropdown {
  left: auto;
  right: 0;
}
/* Open dropdown on hover for desktop */
.menu-item.has-dropdown:hover .dropdown {
  display: block;
}

/* Keep click-open behavior for other dropdowns */
.menu-item.has-dropdown.open .dropdown {
  display: block;
}

/* Mobile burger */
.burger {
  display: none;              /* se activează în media query */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ==========================================================================
   6. MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: #021317;
  color: #fff;
  z-index: 9999;

  transform: translateX(100%);
  transition: transform 220ms ease;

  padding: 20px;
  box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* IMPORTANT: clasa trebuie să fie aceeași cu JS-ul tău */
.mobile-drawer.is-open {
  transform: translateX(0);
}

/* overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
}

/* meniu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.mobile-menu a {
  color: #fff;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

/* nav basics */
.nav {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.nav-inner {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
}

/* lock scroll when drawer is open */
.no-scroll {
  overflow: hidden !important;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-inner { display: none; }
  .burger { display: flex; }
}

/* Desktop: forțează ascunderea drawer-ului */
@media (min-width: 981px) {
  .mobile-drawer,
  .mobile-overlay {
    display: none !important;
  }
}
/* ==========================================================================
   7. HERO
   ========================================================================== */

.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 4rem 0;
  overflow: hidden;
  min-height: var(--hero-height, 520px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-overlay .container {
  display: flex;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-kicker {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

/* ==========================================================================
   8. SEARCH STRIP
   ========================================================================== */

.search-strip {
  position: relative;
  z-index: 40;
  padding: 1.5rem 0 2.25rem;
  background: var(--kc-shell-gradient);
}

.search-panel {
  width: 100%;
  background: #f5fbff;
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.search-standalone {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.search-main input[type="search"] {
  flex: 1 1 auto;
  border: none;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
}

.search-main select {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  padding: 0.4rem 1.5rem 0.4rem 0.75rem;
  font-size: 0.9rem;
  background: #f8fafc;
}

.search-main .btn-search {
  flex: 0 0 auto;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
}

.search-advanced-toggle {
  align-self: flex-end;
  margin-top: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  background: none;
  border: none;
  color: #0f3fad;
  text-decoration: underline;
  cursor: pointer;
}

/* ==========================================================================
   9. SECTIONS & GRIDS
   ========================================================================== */

.page-section,
.section { padding: 5rem 0; }

.section-light { background: #f8fafc; color: var(--text-dark); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-white { background: #fff; color: var(--text-dark); }

.section-header {
  margin-bottom: 3rem;
  max-width: 700px;
}

.section-title {
  font-size: 1.8rem;   /* ~29px */
  line-height: 1.2;
  font-weight: 700;
  max-width: 780px;
}
.section-dark .section-title,
.section-title-light {
  color: #ffffff;
}
.section-kicker {
  position: relative;
  display: inline-block;
  font-size: 16px;          /* ↑ de la ~11 */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.section-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 32px;               /* scurt = premium */
  height: 2px;
  background: var(--color-mint);
  border-radius: 2px;
  opacity: 0.9;
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card,
.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.section-dark .feature-card,
.section-dark .benefit-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}

.feature-title,
.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-text,
.benefit-text { color: #666; }

.section-dark .feature-text,
.section-dark .benefit-text { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   10. PRICING (DARK CARDS) — UPDATED (spacing + readability + hierarchy)
   ========================================================================== */

.pricing-plans {
  margin-top: 2rem;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;                 /* was 2rem */
  align-items: stretch;      /* better equal-height cards */
  margin-bottom: 5rem;       /* separation from sections below */
}

/* CARD */
.pricing-card {
  background: linear-gradient(180deg, #0f2a44 0%, #0b1f38 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;      /* was 2.5rem 2rem */
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  color: #e5ecf5;            /* light text */

  /* subtle border to separate from dark bg */
  border: 1px solid rgba(255,255,255,0.08);
}

/* CARD CENTRAL */
.pricing-card-middle {
  border: 2px solid var(--color-primary);
  transform: scale(1.04);    /* was 1.05 (less aggressive) */
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(32,201,151,0.25),
    0 18px 45px rgba(0,0,0,0.45);
}

/* HEADER spacing */
.pricing-card-header {
  margin-bottom: 2rem;
}

/* TITLU PLAN */
.pricing-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* KICKER / DESCRIERE SCURTĂ */
.pricing-card-kicker {
  font-size: 0.9rem;
  color: rgba(229,236,245,0.72);
  margin: 0;
}

/* MAIN PRICE block spacing */
.pricing-card-main-price {
  margin-bottom: 2.25rem;
}

/* PRICE line */
.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

/* PREȚ */
.price-new {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
}

/* PERIOADĂ */
.price-period {
  font-size: 0.95rem;
  color: rgba(229,236,245,0.72);
}

/* ECONOMII / BADGE */
.price-savings,
.pricing-promo-badge {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* cycles list (if you use it under main price) */
.pricing-card-cycles {
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.pricing-cycle-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(229,236,245,0.9);
}

.pricing-cycle-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.cycle-label {
  color: rgba(229,236,245,0.75);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.cycle-price {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.cycle-suffix {
  color: rgba(229,236,245,0.65);
  font-weight: 500;
  margin-left: 6px;
}

.cycle-discount {
  color: var(--color-primary);
  font-weight: 800;
  white-space: nowrap;
}

/* LISTĂ FEATURES */
.pricing-card-features {
  margin-top: 2rem;          /* was 1.75rem */
  margin-bottom: 2.5rem;     /* creates air before CTA */
  padding: 0;
  list-style: none;
}

.pricing-card-features li {
  margin-bottom: 0.9rem;     /* was 0.75 */
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(229,236,245,0.92);
}

.pricing-card-features li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 900;
  margin-top: 2px;
}

/* CTA */
.pricing-card-cta {
  margin-top: auto;
  padding-top: 1.5rem;       /* was 1.75 */
}

.pricing-card-cta .btn,
.pricing-card-cta .k-btn {
  width: 100%;
  justify-content: center;
}

/* Mobile: kill middle scale so it doesn't look cramped */
@media (max-width: 980px) {
  .pricing-plans-grid {
    gap: 2rem;
  }
  .pricing-card-middle {
    transform: none;
  }
}


/* ==========================================================================
   PRICING PAGE – TEXT + SECTIONS ON DARK — UPDATED (spacing + contrast)
   ========================================================================== */

.pricing-page {
  background: var(--bg-dark);
  color: #e5ecf5;
}

/* Give sections air */
.pricing-header {
  padding-top: 2.5rem;
  padding-bottom: 4rem;      /* key: avoids cards “touching” header text */
}

@media (min-width: 1200px) {
  .pricing-header {
    padding-bottom: 5rem;
  }
}

/* Headings / paragraphs inside pricing */
.pricing-page h1,
.pricing-page h2,
.pricing-page h3 {
  color: #ffffff;
}

.pricing-page p,
.pricing-page li,
.pricing-page label,
.pricing-page small {
  color: rgba(229,236,245,0.85);
}

/* Titles */
.pricing-section-title,
.pricing-title {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.pricing-section-subtitle,
.pricing-subtitle {
  color: rgba(229,236,245,0.78);
  max-width: 780px;
  margin-bottom: 2.25rem;    /* spacing under section intro text */
}

/* Country select row */
.pricing-country-select-row {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 1.5rem;
  align-items: end;
}

@media (max-width: 900px) {
  .pricing-country-select-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

.pricing-country-select label {
  color: rgba(229,236,245,0.9);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.pricing-country-select select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
}

.pricing-country-select select option {
  color: #111827; /* dropdown list on OS */
}

/* Warning box */
.pricing-country-warning {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
}
.pricing-country-warning p {
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.4;
}

/* Reports section spacing */
.pricing-reports {
  margin-top: 6rem;
}

.pricing-reports-list .coverage-report-list {
  margin-top: 18px;
}

/* Reports list */
.coverage-report-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.report-name {
  color: #ffffff;
  font-weight: 700;
}

.report-desc {
  color: rgba(229,236,245,0.78);
  margin-left: 8px;
}

.report-price {
  color: var(--color-primary);
  font-weight: 800;
  white-space: nowrap;
}

/* Compare section spacing */
.pricing-country-compare {
  margin-top: 6rem;
  padding-top: 3rem;
}

/* Compare (details/summary + table) */
.pricing-compare-details summary {
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ffffff;
}

.pricing-compare-table-wrapper {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(229,236,245,0.88);
}

.pricing-compare-table th {
  color: #ffffff;
  font-weight: 800;
  background: rgba(255,255,255,0.06);
}

.pricing-compare-table tr:hover td {
  background: rgba(255,255,255,0.05);
}


/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-dark);
  color: #a0aebf;
  padding-top: 4rem;
  border-top: 5px solid var(--color-primary);
}

.site-footer a {
  color: rgba(255,255,255,0.80);
  transition: color .15s ease, opacity .15s ease;
}

.site-footer a:hover {
  color: #fff;
  opacity: 0.95;
}

.site-footer a:focus-visible,
.footer-newsletter-form input:focus-visible,
.footer-newsletter-form button:focus-visible {
  outline: 2px solid rgba(32,201,151,0.8);
  outline-offset: 2px;
  border-radius: 8px;
}

.footer-logo img {
  width: 170px;
  opacity: 0.95;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 3rem;
}

.footer-brand p,
.footer-newsletter { margin-bottom: 10px; }

.footer-title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.footer-links a {
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
}

.footer-social {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-label {
  font-size: 13px;
  color: #cbd5f5;
  margin: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* icon-ul rămâne color/monocrom nativ din fișierul SVG/PNG */
.social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* stil de bază comun pentru toate link-urile */
.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  max-width: 40px;
  background-color: rgba(15, 23, 42, 0.75);
  transition:
    max-width 0.2s ease-out,
    padding 0.2s ease-out,
    background-color 0.2s ease-out,
    border-color 0.2s ease-out,
    transform 0.15s ease-out;
}

.social-text {
  white-space: nowrap;
  font-size: 13px;
  margin-left: 0;
  opacity: 0;
  max-width: 0;
  transition:
    opacity 0.2s ease-out,
    margin-left 0.2s ease-out,
    max-width 0.2s ease-out;
}

/* expand + ridicare la hover (comun) */
.social-link:hover {
  max-width: 180px;
  padding: 6px 12px;
  transform: translateY(-2px);
}

.social-link:hover .social-text {
  opacity: 1;
  margin-left: 8px;
  max-width: 120px;
}

/* Culoare brand implicită + la hover */

/* LinkedIn: albastru */
.social-link--linkedin {
  background-color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.8);
}
.social-link--linkedin:hover {
  background-color: #0a66c2;
}

/* X: negru */
.social-link--x {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}
.social-link--x:hover {
  background-color: #000000;
}

/* Facebook: albastru */
.social-link--facebook {
  background-color: #1877f2;
  border-color: rgba(24, 119, 242, 0.8);
}
.social-link--facebook:hover {
  background-color: #1877f2;
}

/* YouTube: roșu */
.social-link--youtube {
  background-color: #ff0000;
  border-color: rgba(255, 0, 0, 0.8);
}
.social-link--youtube:hover {
  background-color: #ff0000;
}


.footer-newsletter { margin-top: 14px; }

.footer-newsletter-label {
  margin: 0 0 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.footer-newsletter-form {
  display: flex;
  gap: 6px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  outline: none;
}

.footer-newsletter-form button {
  padding: 7px 12px;
  border-radius: 6px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.footer-newsletter-form button:hover { background: var(--color-primary-hover); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0 12px;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.footer-cert-icon {
  height: 28px;
  width: auto;
  opacity: 0.9;
  display: inline-block;
  object-fit: contain;
}

.footer-meta-text {
  font-size: 12px;
  opacity: 0.75;
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   12. RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  .nav-inner { display: none; }
  .burger { display: flex; }

  .pricing-card-middle { transform: scale(1); }

  .util-row { justify-content: center; }

  .search-main { flex-direction: column; }
  .search-main input,
  .search-main select,
  .search-main button { width: 100%; }

  /* Mobile dropdown width */
  .dropdown { min-width: 92vw; }
}

/* Small screens */
@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .container { padding-left: 1rem; padding-right: 1rem; }

  .dropdown .dd-item,
  .dropdown a { grid-template-columns: 1fr; row-gap: 6px; }
  .dropdown .dd-title { white-space: normal; }
}

/* Lock scroll when drawer is open */
.no-scroll { overflow: hidden !important; }

/* ==========================================================================
   MOBILE DRAWER + OVERLAY
   ========================================================================== */

/* Default: hidden on desktop */
.mobile-drawer,
.mobile-overlay {
  display: none;
}

/* Mobile/tablet: enable drawer */
@media (max-width: 980px) {
  .mobile-drawer,
  .mobile-overlay {
    display: block;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(86vw, 380px);
    transform: translateX(100%);
    transition: transform 220ms ease;
    z-index: 9999;

    background: #0b1f38;
    color: #e5ecf5;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
  }

  .mobile-overlay[hidden] {
    display: none !important;
  }
  .menu-item.has-dropdown:hover .dropdown { display: block; }
.menu-item.has-dropdown.open .dropdown { display: block; } /* păstrează și varianta pe click pentru celelalte */

.benefit-card--link { display:block; text-decoration:none; }
.benefit-card--link:hover { transform: translateY(-2px); }
.k-link { display:inline-block; margin-top:10px; text-decoration:none; }

/* Overlay shell */
.kc-overlay[hidden] { display: none; }
.kc-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.kc-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

/* Panel = “expanded card window” */
.kc-overlay__panel {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92vw);
  max-height: 88vh;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* keep scroll inside body */
}

.kc-overlay__header,
.kc-overlay__footer {
  padding: 16px 18px;
}

.kc-overlay__header {
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.kc-overlay__eyebrow {
  font-size: 14px;
  opacity: .75;
  margin-bottom: 6px;
}

.kc-overlay__title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}

.kc-overlay__close {
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  opacity: .75;
}

.kc-overlay__body {
  padding: 16px 18px;
  overflow: auto; /* scroll inside */
}

.kc-overlay__body p {
  margin: 0 0 12px 0;
}

.kc-overlay__footer {
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* Prevent background scroll when overlay open */
body.kc-overlay-open { overflow: hidden; }

.solution-page .solution-breadcrumb { margin: 10px 0 18px; }
.solution-block { margin: 26px 0; }
.solution-h2 { margin: 0 0 10px; }
.solution-p { margin: 0 0 10px; }
.solution-list { margin: 10px 0 0 18px; }
.solution-list li { margin: 0 0 8px; }
.solution-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.solution-chips .chip { padding: 6px 10px; border-radius: 999px; background: rgba(0,0,0,.06); }
.solution-nav { margin: 34px 0 8px; display: flex; justify-content: space-between; gap: 14px; }

}
