/* ========================================
   INFO-SOFT MEDICAL — Professional Medical Site
   Brand: Blue #0066CC, Light Blue #00A3E0, Green #00D084
   ======================================== */

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

:root {
  --blue: #0066CC;
  --blue-dark: #004C99;
  --blue-deeper: #003366;
  --light-blue: #00A3E0;
  --green: #00D084;
  --green-dark: #00B070;
  --dark: #122036;
  --text: #233042;
  --text-muted: #5A6475;
  --text-faint: #8A93A3;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F5F8FC;
  --border: #E2E7EF;
  --border-light: #EDF1F6;
  --accent-bg: #EBF4FF;
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --shadow-sm: 0 1px 2px rgba(16,28,48,0.05), 0 3px 10px rgba(16,28,48,0.05);
  --shadow-md: 0 1px 2px rgba(16,28,48,0.04), 0 10px 30px rgba(16,28,48,0.08);
  --shadow-lg: 0 2px 4px rgba(16,28,48,0.04), 0 20px 50px rgba(16,28,48,0.10);
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* DARK MODE VARIABLES */
html.dark {
  --blue: #3399FF;
  --blue-dark: #66B3FF;
  --blue-deeper: #1A3A5C;
  --light-blue: #33B5E5;
  --green: #33E89A;
  --green-dark: #00D084;
  --dark: #E8ECF0;
  --text: #D0D4DA;
  --text-muted: #A0A8B4;
  --text-faint: #6B7280;
  --bg: #0F1117;
  --surface: #1A1D26;
  --surface-alt: #14161E;
  --border: #2A2D38;
  --border-light: #22252E;
  --accent-bg: rgba(51,153,255,0.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
strong { font-weight: 600; }

/* CONTAINER */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 72px; width: auto; }
.main-nav { display: flex; gap: 1.75rem; align-items: center; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--blue); }

/* LANGUAGE BUTTON */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.lang-btn:hover {
  background: var(--accent-bg);
  border-color: var(--blue);
  color: var(--blue);
}
.lang-flag { font-size: 0.9rem; }
.lang-btn-mobile { display: none; }

.header-right-mobile {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0.5rem;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 5.5rem;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  width: 100%;
}
.mobile-nav-links a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-right-mobile { display: flex; }
  .mobile-nav-btn { display: block; }
  .lang-btn-mobile { display: inline-flex; }
}

/* ============ HERO ============ */
.hero {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(0,163,224,0.18), transparent 60%),
    linear-gradient(160deg, #0A2A52 0%, #0852A6 48%, #0A6FBE 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='60' height='60'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  max-width: 680px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn-primary {
  background: #fff;
  color: var(--blue);
}
.btn-primary:hover { background: var(--accent-bg); color: var(--blue-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--text-muted); }
.btn-sm { padding: 0.375rem 1rem; font-size: 0.8125rem; }
.btn-submit {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  padding: 0.75rem 2rem;
  width: 100%;
}
.btn-submit:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-size: 0.875rem;
  color: var(--dark);
}
.trust-item span {
  font-size: 0.75rem;
  color: var(--text-faint);
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}
.trust-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--accent-bg);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .trust-bar-inner { justify-content: center; text-align: center; }
  .trust-logos { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
  .trust-label { width: 100%; }
  .trust-badge { width: 100%; text-align: center; }
}

/* ============ N-FIS BANNER ============ */
.nfis-banner-section {
  padding: 0;
  background: var(--surface-alt);
}
.nfis-banner-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 0;
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section-alt {
  background: var(--surface-alt);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* ============ PRODUCT CARDS GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.pcard {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pcard-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--surface-alt);
}
.pcard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pcard-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: linear-gradient(135deg, var(--blue), var(--light-blue));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
.pcard-image-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-bg), var(--surface-alt));
}
.pcard-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 50%;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.pcard-body {
  padding: 1.25rem;
}
.pcard-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.pcard-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.pcard-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.pcard-specs span {
  padding: 0.2rem 0.5rem;
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pcard-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pcard-arrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }
  .pcard-image { height: 180px; }
}

/* ============ SOFTWARE GRID ============ */
.sw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.sw-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.sw-card:hover { box-shadow: var(--shadow-md); }
.sw-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  color: var(--blue);
  margin-bottom: 1rem;
}
.sw-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.sw-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

/* ============ WHY / DE CE NOI ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.why-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  border-radius: var(--radius-md);
  color: var(--blue);
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

/* ============ VALIDATION STRIP ============ */
.validation-strip {
  padding: 2rem;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
}
.validation-strip h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.validation-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.val-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.val-item svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 0.125rem;
}
.val-item span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============ CONTACT ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.contact-info-item svg {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 0.25rem;
}
.contact-info-item div {
  display: flex;
  flex-direction: column;
}
.contact-info-item strong {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 0.125rem;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 0.9375rem;
  color: var(--dark);
  font-weight: 500;
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.contact-form-wrap h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 64px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.375rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--light-blue); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 1rem 0;
}
.cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 240px;
  line-height: 1.4;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ============ ANIMATIONS ============ */
@media (prefers-reduced-motion: no-preference) {
  .section-title,
  .pcard,
  .sw-card,
  .why-card,
  .validation-strip,
  .contact-form-wrap,
  .contact-info {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease forwards;
    animation-play-state: paused;
  }
  .is-visible {
    animation-play-state: running;
  }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.9375rem; }
  .section { padding: 2.5rem 0; }
}

/* ============ DARK MODE OVERRIDES ============ */
html.dark .site-header {
  background: rgba(15,17,23,0.92);
  border-bottom-color: var(--border);
}
html.dark .mobile-nav-overlay {
  background: rgba(15,17,23,0.98);
}
html.dark .mobile-nav-links a {
  color: var(--text);
  border-bottom-color: var(--border);
}
html.dark .hero {
  background: linear-gradient(135deg, #0A0E18 0%, #0F1A30 50%, #132840 100%);
}
html.dark .hero::after {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(51,153,255,0.08)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='60' height='60'/%3E%3C/svg%3E");
}
html.dark .btn-primary {
  background: var(--blue);
  color: #fff;
}
html.dark .btn-primary:hover {
  background: var(--blue-dark);
  color: #fff;
}
html.dark .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
html.dark .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
html.dark .btn-outline-dark {
  color: var(--text);
  border-color: var(--border);
}
html.dark .btn-outline-dark:hover {
  border-color: var(--text-muted);
}
html.dark .btn-submit {
  background: #3399FF;
  border-color: #3399FF;
  color: #fff;
}
html.dark .btn-submit:hover {
  background: #2277DD;
  border-color: #2277DD;
}
html.dark .trust-bar {
  background: var(--surface);
  border-bottom-color: var(--border);
}
html.dark .trust-item strong {
  color: var(--dark);
}
html.dark .nfis-banner-section {
  background: var(--surface-alt);
}
html.dark .pcard-image-icon {
  background: linear-gradient(135deg, var(--accent-bg), var(--surface-alt));
}
html.dark .pcard-icon-wrap {
  background: var(--surface);
}
html.dark .form-group input,
html.dark .form-group select,
html.dark .form-group textarea {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}
html.dark .form-group input:focus,
html.dark .form-group select:focus,
html.dark .form-group textarea:focus {
  border-color: #3399FF;
  box-shadow: 0 0 0 3px rgba(51,153,255,0.15);
}
html.dark .site-footer {
  background: #080A0F;
}
html.dark .footer-logo {
  filter: brightness(0) invert(1);
}
html.dark .logo-img {
  filter: brightness(0.85) invert(0.88) hue-rotate(180deg);
}
html.dark .cookie-banner {
  background: var(--surface);
  border-top-color: var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

/* THEME TOGGLE BUTTON */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.theme-btn:hover {
  background: var(--accent-bg);
  border-color: var(--blue);
  color: var(--blue);
}
.theme-btn svg {
  width: 16px;
  height: 16px;
}
.theme-btn .icon-moon { display: block; }
.theme-btn .icon-sun { display: none; }
html.dark .theme-btn .icon-moon { display: none; }
html.dark .theme-btn .icon-sun { display: block; }
.theme-btn-mobile { display: none; }

@media (max-width: 768px) {
  .theme-btn-mobile {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
  }
  .theme-btn-mobile svg {
    width: 20px;
    height: 20px;
  }
  .lang-btn-mobile {
    min-height: 2.75rem;
  }
  .mobile-nav-btn {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }
}

/* ============ PRINT ============ */
@media print {
  .site-header, .hero-cta, .mobile-nav-btn, .mobile-nav-overlay, .cookie-banner, .lang-btn { display: none; }
  .hero { background: var(--blue) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { font-size: 11pt; }
  .section { padding: 1.5rem 0; }
}

/* ===== Sprint 3 — Form GDPR checkbox ===== */
.form-gdpr label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
}
.form-gdpr input[type="checkbox"] {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  margin-top: 3px;
  flex-shrink: 0;
}
.form-gdpr a {
  color: var(--blue);
  text-decoration: underline;
}
html.dark .form-gdpr label { color: var(--text-muted); }

/* ===== Sprint 3 — Header phone button ===== */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent-bg);
  color: var(--blue);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-phone:hover {
  background: var(--blue);
  color: #fff;
}
html.dark .header-phone {
  background: var(--surface-alt);
  color: var(--blue);
}
html.dark .header-phone:hover {
  background: var(--blue);
  color: #fff;
}
@media (max-width: 768px) {
  .header-phone { display: none; }
}

/* ===== Sprint 3 — Legal pages + disclaimer ===== */
.legal-disclaimer {
  background: #FFF8E1;
  border-left: 4px solid #FFC107;
  color: #5D4037;
  padding: 16px 20px;
  border-radius: 4px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.5;
}
.legal-disclaimer strong {
  color: #E65100;
  display: inline-block;
  margin-bottom: 4px;
}
.legal-disclaimer a {
  color: #E65100;
  text-decoration: underline;
  font-weight: 500;
}
html.dark .legal-disclaimer {
  background: rgba(255, 193, 7, 0.08);
  color: #FFB74D;
  border-left-color: #FFA000;
}
html.dark .legal-disclaimer strong { color: #FFB74D; }
html.dark .legal-disclaimer a { color: #FFB74D; }

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--dark);
}
.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--dark);
}
.legal-page p, .legal-page ul { margin-bottom: 16px; }
.legal-page ul { padding-left: 24px; }
.legal-page li { margin-bottom: 6px; }
.legal-page .last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ===== Sprint 3 — Footer legal links ===== */
.footer-legal {
  margin-top: 16px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  color: var(--text-muted);
}
.footer-legal a { color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--blue); }
.footer-legal span { color: var(--text-faint); }

/* ============================================================
   REDESIGN 2026 — limbaj vizual „catalog" (aerisit, editorial)
   Adăugiri peste tema existentă; NU redefinește :root și nici
   clase existente — doar componente noi + rafinări de ritm.
   ============================================================ */

/* ritm de secțiune mai aerisit */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

/* EYEBROW — eticheta editorială de deasupra titlurilor */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.section-head { max-width: 64ch; margin-bottom: 2.75rem; }
.section-head .section-title { margin-bottom: 0.6rem; }
.section-head .section-intro { margin-bottom: 0; }
.section-title { letter-spacing: -0.015em; }

/* HERO — badge editorial */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #EAF3FE;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* FEATURE BAND — înlocuiește banda cu poză-text (N-FIS flagship) */
.feature-band { padding: clamp(2.75rem, 5vw, 4.5rem) 0; background: var(--surface-alt); }
.feature-band-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.feature-band-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.feature-band-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}
.feature-band > .container > .feature-band-inner p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 46ch;
}
.feature-points { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 0 0 1.5rem; padding: 0; }
.feature-points li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9375rem; color: var(--text); }
.feature-points svg { flex-shrink: 0; color: var(--green); margin-top: 0.15rem; }

@media (max-width: 768px) {
  .feature-band-inner { grid-template-columns: 1fr; }
  .feature-band-media { order: -1; }
}

/* rafinare carduri: hairline + tranziție lină (peste regulile existente) */
.pcard, .sw-card, .why-card { border-color: var(--border-light); }
.pcard:hover, .sw-card:hover, .why-card:hover { border-color: var(--border); }

/* buton solid albastru — pentru CTA pe fundal deschis */
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
html.dark .btn-blue { background: var(--blue); border-color: var(--blue); color: #06121F; }
html.dark .btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

/* dark mode pentru componentele noi */
html.dark .feature-band { background: var(--surface-alt); }
html.dark .feature-band-media { background: var(--surface); border-color: var(--border); }
