:root {
  --ink: #111827;
  --muted: #4b5563;
  --bg: #fff;
  --panel: #f8fafc;
  --line: #e5e7eb;
  --accent: #0072CE;
  --cta: #0b5cad;
  --cta-ink: #fff;
}

html[data-theme="dark"] {
  --ink: #e5e7eb;
  --muted: #94a3b8;
  --bg: #0f172a;
  --panel: #111827;
  --line: #334155;
  --accent: #60a5fa;
  --cta: #2563eb;
  --cta-ink: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

html[data-lang="el"] .en { display: none; }
html[data-lang="en"] .el { display: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tiny {
  font-size: 12px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn.primary {
  background: var(--cta);
  color: var(--cta-ink);
  border-color: var(--cta);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn.sm {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
}

/* Theme toggle */
.theme-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-track {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.theme-icon {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

.theme-icon-sun,
.theme-icon-moon {
  color: #f8fafc;
}

html[data-theme="dark"] .theme-toggle-track {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(26px);
}

.theme-toggle:focus-visible .theme-toggle-track {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.spacer {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

/* Topbar */
.topbar {
  display: block;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.topbar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 10px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

#top-phones,
#top-email {
  white-space: nowrap;
}

.topbar a {
  color: inherit;
}

.topbar a:hover {
  text-decoration: underline;
}

.desktop-lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch a img,
.mobile-menu-lang a img {
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}

.mobile-menu-lang {
  display: none;
}

/* Layout grids */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

/* Careers form */
#careers-form {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
}

#careers-form .row {
  display: contents;
}

#careers-form .row-span {
  grid-column: 1 / -1;
}

#careers-form label {
  font-weight: 600;
}

#careers-form button {
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

#careers-form button:hover {
  opacity: 0.9;
}

@media (max-width: 720px) {
  #careers-form { grid-template-columns: 1fr; }
  #careers-form .row { display: block; }
  #careers-form label {
    display: block;
    margin-bottom: 6px;
  }
}

/* Contact */
.contact .lead {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

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

/* Shared form fields */
form input:not([type="checkbox"]):not([type="radio"]),
form textarea,
form select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  width: 100%;
  font: inherit;
}

form input:not([type="checkbox"]):not([type="radio"]):focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

form button.btn.primary {
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  border-radius: 8px;
}

.form-submit {
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #0b5cad;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 40;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  display: block;
}

.navbar .brand img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: #ffffff;
}

.nav-links a:hover {
  opacity: 0.82;
}

.nav-links a.active {
  font-weight: 700;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 4px;
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #f3f8ff, transparent);
}

.hero .hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
}

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

h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  margin: 10px 0 12px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--muted);
  max-width: 760px;
  line-height: 1.5;
}

.cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  background: #fff;
}

/* Sections / cards */
.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--panel);
}

.section p,
.section li,
.card p,
.card li,
.hero-card p,
.hero-card li {
  line-height: 1.65;
}

.section ul,
.section ol {
  padding-left: 1.2rem;
}

.section li + li {
  margin-top: 0.35rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(2, 6, 23, 0.05);
}

.card h3 {
  margin-top: 0;
}

/* Brands */
.brands {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brands-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 20px 0;
}

.brands-title {
  margin: 0 0 10px;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.brand-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.brand-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
  border-color: #cbd5e1;
}

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

.brand-logo img {
  width: 100%;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.badge-auth {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--accent);
}

@media (max-width: 520px) {
  .brand-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .brand-logo {
    min-height: 96px;
    padding: 14px;
  }

  .brand-logo img {
    max-width: 120px;
    max-height: 42px;
  }

  .badge-auth {
    display: none;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 0 48px;
  background: #fff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .col {
  max-width: 520px;
}

.footer .menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer .menu a {
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer .menu a:hover {
  color: #374151;
  text-decoration: underline;
}

.footer .tiny {
  flex-basis: 100%;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-theme-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 6px;
}

/* ISO */
.iso-logo {
  max-height: 230px;
  max-width: 330px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.iso-card,
.cards .card {
  text-align: center;
}

.iso-card img,
.cards .card img {
  display: block;
  margin: 0 auto 12px;
  max-height: 310px;
  width: auto;
  object-fit: contain;
}

.cards .card h3 {
  margin: 8px 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.cards .card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Map */
.map-wrap {
  position: relative;
  padding-top: 56%;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Consent banner */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.18);
  padding: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.consent-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.consent-banner .consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.consent-banner .consent-actions .btn {
  justify-content: center;
}

.consent-banner .consent-link {
  text-decoration: underline;
}

.consent-panel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.consent-panel[hidden] {
  display: none !important;
}

.consent-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.consent-option:last-child {
  border-bottom: 0;
}

.consent-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  accent-color: var(--accent);
}

.consent-option strong {
  display: block;
  margin-bottom: 2px;
}

.consent-option small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

/* Map consent placeholder */
.map-consent-box {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 24px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  text-align: center;
}

.map-consent-box h3 {
  margin: 0 0 8px;
}

.map-consent-box p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 560px;
}

.map-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Dark theme overrides */
html[data-theme="dark"] body {
  background: var(--bg);
  color: var(--ink);
}

html[data-theme="dark"] .topbar,
html[data-theme="dark"] .footer,
html[data-theme="dark"] .hero-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .map-consent-box,
html[data-theme="dark"] .consent-banner,
html[data-theme="dark"] .stat {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="dark"] .section.alt,
html[data-theme="dark"] .topbar,
html[data-theme="dark"] .map-wrap {
  background: #0b1220;
}

html[data-theme="dark"] .tiny,
html[data-theme="dark"] .lead,
html[data-theme="dark"] .cards .card p,
html[data-theme="dark"] .footer .tiny,
html[data-theme="dark"] .footer .menu a,
html[data-theme="dark"] .map-consent-box p,
html[data-theme="dark"] .consent-banner p,
html[data-theme="dark"] .consent-option small,
html[data-theme="dark"] .contact .lead {
  color: var(--muted);
}

html[data-theme="dark"] .footer .menu a:hover {
  color: var(--ink);
}

html[data-theme="dark"] .btn.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

html[data-theme="dark"] a {
  color: var(--accent);
}

html[data-theme="dark"] .spacer,
html[data-theme="dark"] .footer,
html[data-theme="dark"] .topbar,
html[data-theme="dark"] .navbar,
html[data-theme="dark"] .brands,
html[data-theme="dark"] .hero-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .consent-panel {
  border-color: var(--line);
}

html[data-theme="dark"] form input:not([type="checkbox"]):not([type="radio"]),
html[data-theme="dark"] form textarea,
html[data-theme="dark"] form select {
  background: #0b1220;
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="dark"] form input:not([type="checkbox"]):not([type="radio"]):focus,
html[data-theme="dark"] form textarea:focus,
html[data-theme="dark"] form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

html[data-theme="dark"] .badge,
html[data-theme="dark"] .badge-auth {
  background: #0b1220;
  border-color: var(--line);
  color: var(--accent);
}

html[data-theme="dark"] .consent-option {
  border-bottom-color: #1e293b;
}

html[data-theme="dark"] .map-wrap {
  background: #0b1220;
}

html[data-theme="dark"] .navbar {
  background: #0b5cad;
}

html[data-theme="dark"] .topbar a {
  color: var(--ink);
}

html[data-theme="dark"] .btn {
  background-clip: padding-box;
}

/* Keep brand logos white in dark mode */
html[data-theme="dark"] .brand-logo {
  background: #ffffff;
  border-color: #e5e7eb;
}

html[data-theme="dark"] .brand-logo img {
  filter: none;
}

/* Desktop explicit */
@media (min-width: 861px) {
  .topbar {
    display: block;
  }

  .desktop-lang-switch {
    display: flex;
  }

  .mobile-menu-lang {
    display: none !important;
  }
}

/* Mobile navbar + language menu fix */
@media (max-width: 860px) {
  .topbar {
    display: none !important;
  }

  .nav-inner {
    position: relative;
    flex-wrap: wrap;
    min-height: 68px;
    padding: 10px 0;
    row-gap: 10px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
    background: #0b5cad;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 0 18px;
    overflow: visible;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    display: block;
    width: 100%;
    padding: 14px 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .nav-links > a:hover {
    opacity: 0.9;
  }

  .nav-links > a.active {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .navbar .brand img {
    max-width: 170px;
    height: auto;
  }

  .desktop-lang-switch {
    display: none !important;
  }

  .mobile-menu-lang {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 10px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow: visible;
  }

  .mobile-menu-lang a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 72px;
    padding: 18px 20px;
    border-radius: 20px;
    color: #ffffff !important;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.78);
    text-decoration: none;
    line-height: 1.2;
    font-size: 1.05rem;
    font-weight: 700;
    box-sizing: border-box;
    overflow: visible;
  }

  .mobile-menu-lang a img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
  }

  .mobile-menu-lang a:hover,
  .mobile-menu-lang a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-menu-lang a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }

  .mobile-menu-lang a:last-child {
    margin-bottom: 2px;
  }
}

/* Mobile spacing */
@media (max-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding: 42px 0;
  }

  .hero .hero-inner {
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 20px;
  }

  h1 {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: clamp(28px, 8.5vw, 42px);
  }

  h2 {
    font-size: clamp(26px, 7vw, 36px);
    margin-top: 0;
    margin-bottom: 14px;
  }

  h3 {
    font-size: clamp(20px, 5.3vw, 28px);
  }

  .lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .section p,
  .section li,
  .card p,
  .card li,
  .hero-card p,
  .hero-card li {
    font-size: 1rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .card,
  .hero-card {
    padding: 18px 16px;
  }

  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .consent-banner .consent-actions {
    flex-direction: column;
  }

  .consent-banner .consent-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta .btn {
    width: 100%;
  }

  .footer-theme-row {
    justify-content: flex-start;
  }

  .brand-logo img {
    max-width: 110px;
  }
}

@media (max-width: 640px) {
  .hero .hero-inner > div:first-child {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero .badge {
    margin-bottom: 8px;
  }

  .hero h1,
  .hero .lead,
  .hero .cta {
    max-width: 100%;
  }

  .hero .cta {
    margin-top: 18px;
  }

  .hero .cta .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero .hero-inner > div:first-child {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero h1 {
    line-height: 1.05;
  }

  .hero .lead {
    line-height: 1.45;
  }
}
.company-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  min-height: 420px;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
}

.company-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.02) saturate(0.95) brightness(0.98);
}