/* ============================================================
   INFONET — main.css  v1.0
   ============================================================ */

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

:root {
  --blue:       #0057A8;
  --blue-dark:  #003F7D;
  --blue-light: #EBF4FF;
  --sky:        #00A1E0;
  --orange:     #F4A020;
  --orange-dk:  #D4880A;
  --dark:       #1A1F36;
  --text:       #3D4059;
  --muted:      #7A7F9A;
  --light-bg:   #F5F8FC;
  --white:      #FFFFFF;
  --border:     #DDE3EE;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,87,168,.10);
  --shadow-lg:  0 12px 48px rgba(0,87,168,.16);
  --transition: .22s ease;
  --font:       'Inter','Segoe UI',Arial,sans-serif;
  --font-h:     'Poppins','Segoe UI',Arial,sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); color: var(--dark); line-height: 1.25; }
h1 { font-size: clamp(2rem,4vw,3rem); }
h2 { font-size: clamp(1.6rem,3vw,2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--blue-light);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.section-title { margin-bottom: .5rem; }
.section-sub   { color: var(--muted); font-size: 1.05rem; max-width: 600px; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); }
.btn--outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--white    { background: var(--white); color: var(--blue); }
.btn--white:hover { background: var(--blue-light); }
.btn--sm       { padding: 9px 20px; font-size: .88rem; }
.btn--lg       { padding: 16px 36px; font-size: 1.05rem; }

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 6px 0;
}
.topbar__inner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  overflow: visible;
  background: linear-gradient(90deg, #003F7D 0%, #1E6BB5 8%, #ffffff 18%, #ffffff 28%, #2a7abf 55%, #003F7D 100%);
  border-bottom: 1px solid #bcd0ea;
  box-shadow: 0 2px 12px rgba(0,63,125,.15);
  transition: box-shadow .22s ease;
}
.site-header .header__inner { height: 72px; padding: 0; align-items: stretch; }
.site-header .logo { display: flex; align-items: center; padding: 0; }
.site-header .logo img { height: 60px; width: auto; }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.10); }
.site-header .nav-link { color: #374151 !important; }
.site-header .nav-link:hover { color: #0057A8 !important; background: #EFF6FF !important; }
.site-header .nav-link.active { color: #922B21 !important; font-weight: 900; }
.theme-toggle { display: none !important; }
.topbar { background: #0A0F1E; border-bottom: 1px solid rgba(0,120,255,.15); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo img { height: 44px; width: auto; }
.logo-text { font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; color: var(--blue); }
.logo-text strong { color: var(--orange); }

/* ── NAV ──────────────────────────────────────────────────── */
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-light); }
.nav-link .arrow { font-size: .65rem; vertical-align: middle; margin-left: 2px; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ── MEGA MENU ────────────────────────────────────────────── */
.has-mega { position: static; }

.mega-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid #0057A8;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  z-index: 99999;
}

/* Transparent bridge πάνω από το menu — καλύπτει το gap */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;
  background: transparent;
}

@keyframes megaFade { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }




.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 32px 24px;
}

.mega-col { padding: 0 24px; border-right: 1px solid var(--border); }
.mega-col:last-child { border-right: none; }

.mega-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mega-col ul li { margin-bottom: 4px; }
.mega-col ul li a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--text);
  transition: all var(--transition);
}
.mega-col ul li a:hover { background: var(--blue-light); color: var(--blue); padding-left: 14px; }

.mega-col--highlight { background: var(--light-bg); border-radius: var(--radius); }
.mega-cta-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
}
.mega-cta-btn:hover { background: var(--blue-dark) !important; }

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger span {
  display: block; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(0,31,71,.82) 0%, rgba(0,87,168,.75) 55%, rgba(0,161,224,.65) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  
  opacity: .03;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 16px; border-radius: 99px;
  font-size: .82rem; font-weight: 600;
  margin-bottom: 20px; backdrop-filter: blur(8px);
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero p   { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__img { text-align: center; }
.hero__img img { border-radius: 16px; box-shadow: var(--shadow-lg); max-height: 420px; object-fit: cover; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.stat { text-align: center; }
.stat__num { font-family: var(--font-h); font-size: 2.2rem; font-weight: 700; color: var(--orange); }
.stat__label { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 4px; }

/* ── SECTIONS ─────────────────────────────────────────────── */
section { padding: 80px 0; }
section.alt-bg { background: var(--light-bg); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── CARDS ────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 24px;
}
.cards-grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.card__text  { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.card__link  { margin-top: 16px; display: inline-block; font-weight: 600; color: var(--blue); font-size: .9rem; }
.card__link:hover { color: var(--orange); }

/* ── SECTOR PILLS ─────────────────────────────────────────── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 16px;
}
.sector-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}
.sector-pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.sector-pill__icon { font-size: 1.6rem; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.why-list li:last-child { border-bottom: none; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why-text strong { display: block; color: var(--dark); font-size: .95rem; margin-bottom: 3px; }
.why-text span   { color: var(--muted); font-size: .88rem; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background-color: #003F7D;
  background-size: cover !important;
  background-position: center !important;
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,25,60,.88) 0%, rgba(0,70,140,.80) 100%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.75); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info__item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info__icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-info__text strong { display: block; color: var(--dark); margin-bottom: 2px; }
.contact-info__text span   { color: var(--muted); font-size: .9rem; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: .9rem; color: var(--dark); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font); font-size: .95rem; color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,168,.1); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }

.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 500; }
.alert--success { background: #ECFDF5; color: #065F46; border: 1px solid #6EE7B7; }
.alert--error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }

/* ── PRODUCT PAGE ─────────────────────────────────────────── */
.product-features { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-text strong { display: block; margin-bottom: 3px; color: var(--dark); }
.feature-text span   { color: var(--muted); font-size: .87rem; }

/* ── ADMIN ────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--dark); color: var(--white); padding: 0; }
.admin-sidebar__brand { padding: 24px 20px; font-family: var(--font-h); font-size: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-nav a { display: block; padding: 12px 20px; color: rgba(255,255,255,.7); font-size: .92rem; border-left: 3px solid transparent; transition: all var(--transition); }
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(255,255,255,.08); border-left-color: var(--orange); }
.admin-content { padding: 32px; background: var(--light-bg); }
.admin-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }

.table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.table th, .table td { padding: 12px 16px; text-align: left; font-size: .9rem; }
.table th { background: var(--light-bg); font-weight: 600; color: var(--dark); border-bottom: 1px solid var(--border); }
.table td { border-bottom: 1px solid var(--border); }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--blue-light); }

.badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: .78rem; font-weight: 600; }
.badge--green { background: #ECFDF5; color: #065F46; }
.badge--gray  { background: #F3F4F6; color: #6B7280; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.logo-footer { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 14px; display: block; }
.logo-footer strong { color: var(--orange); }
.footer__brand p { font-size: .9rem; line-height: 1.7; margin-top: 8px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .85rem; transition: background var(--transition);
}
.footer__social a:hover { background: var(--blue); }
.footer__col h5 { color: var(--white); font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer__col ul li a { color: rgba(255,255,255,.6); font-size: .88rem; display: block; padding: 4px 0; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--orange); }
.footer__contact li { font-size: .88rem; padding: 4px 0; }
.footer__contact a  { color: rgba(255,255,255,.6); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--orange); }

/* ── UTILITIES ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.py-80 { padding: 80px 0; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .5s ease both; }
.fade-up-2 { animation: fadeUp .5s .1s ease both; }
.fade-up-3 { animation: fadeUp .5s .2s ease both; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .hero__img      { display: none; }
  .hero__stats    { grid-template-columns: repeat(3,1fr); }
  .why-grid       { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .btn--primary { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed; inset: 0; top: 70px;
    background: var(--white);
    overflow-y: auto;
    padding: 20px;
    z-index: 998;
  }
  .main-nav.open .nav-list { flex-direction: column; gap: 0; }
  .main-nav.open .nav-link { padding: 14px 10px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .main-nav.open .mega-menu { display: none !important; }

  .hero__stats  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cards-grid   { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .mega-menu__inner { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .admin-layout { grid-template-columns: 1fr; }
}

/* ── LOGO SVG fixes ───────────────────────────────────────── */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img, .logo svg { height: 46px; width: auto; transition: opacity var(--transition); }
.logo:hover img, .logo:hover svg { opacity: .85; }

/* ── MEGA MENU hover refinements ──────────────────────────── */
.has-mega > .nav-link { position: relative; }
.has-mega > .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 14px; right: 14px;
  height: 2px; background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.has-mega:hover > .nav-link::after { transform: scaleX(1); }

/* ── HERO image box ───────────────────────────────────────── */
.hero__img svg, .hero__img img {
  width: 100%; max-width: 540px;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── TOPBAR links ─────────────────────────────────────────── */
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--orange); }

/* ── Card link arrow animation ────────────────────────────── */
.card__link::after { content: ' →'; display: inline; }
.card:hover .card__link { color: var(--orange); letter-spacing: .01em; }

/* ── Sector pill text ─────────────────────────────────────── */
.sector-pill:hover { color: var(--white) !important; }

/* ── Page hero gradient variation ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #003F7D 0%, #0057A8 60%, #0080C8 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  
  opacity: .04; pointer-events: none;
}

/* ── Breadcrumb separator ─────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--orange); }

/* ── MEGA MENU — JS controlled (no gap flicker) ─────────── */
.has-mega.mega-open .mega-menu { display: block !important; }
.has-mega:hover > .mega-menu { display: block; }
.has-mega:hover > .mega-menu { display: block; }
.has-mega.mega-open > .nav-link::after { transform: scaleX(1); }

/* Bridge: transparent area under nav link to prevent gap close */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
  background: transparent;
}

/* ── Logo PNG — remove black background via mix-blend-mode ── */
.logo img {
  height: 48px;
  width: auto;
  /* Αν το PNG έχει μαύρο background, το multiply το κρύβει */
  mix-blend-mode: multiply;
  background: transparent;
}

/* Fallback: αν το site-header είναι λευκό, multiply δουλεύει τέλεια */


/* ============================================================
   PROMOS
   ============================================================ */
.promos-section { padding: 48px 0 0; }

/* Single promo banner */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  border-radius: 16px;
  flex-wrap: wrap;
}
.promo-banner--orange { background: linear-gradient(135deg,#D4880A,#F4A020); color:white; }
.promo-banner--blue   { background: linear-gradient(135deg,#003F7D,#0057A8); color:white; }
.promo-banner--dark   { background: linear-gradient(135deg,#1A1F36,#2D3452); color:white; }
.promo-banner--green  { background: linear-gradient(135deg,#065F46,#10B981); color:white; }

.promo-banner__content { flex: 1; min-width: 260px; }
.promo-banner__title   { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 700; color: white; margin-bottom: 6px; }
.promo-banner__sub     { color: rgba(255,255,255,.82); font-size: .97rem; margin: 0; }
.promo-banner__btn     { background: white; color: var(--dark); font-weight: 700; flex-shrink: 0; white-space: nowrap; }
.promo-banner--orange .promo-banner__btn:hover { background: var(--orange-dk); color: white; }
.promo-banner--blue   .promo-banner__btn:hover { background: var(--blue-dark); color: white; }
.promo-banner--dark   .promo-banner__btn:hover { background: rgba(255,255,255,.15); color: white; }
.promo-banner--green  .promo-banner__btn:hover { background: #065F46; color: white; }

/* Multiple promos grid */
.promos-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }

.promo-card {
  padding: 28px 30px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.promo-card--orange { background: linear-gradient(135deg,#D4880A,#F4A020); }
.promo-card--blue   { background: linear-gradient(135deg,#003F7D,#0057A8); }
.promo-card--dark   { background: linear-gradient(135deg,#1A1F36,#2D3452); }
.promo-card--green  { background: linear-gradient(135deg,#065F46,#10B981); }

.promo-card__title { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: white; margin: 4px 0; }
.promo-card__sub   { color: rgba(255,255,255,.80); font-size: .88rem; line-height: 1.55; flex: 1; }
.promo-card__btn   { display: inline-flex; align-items: center; margin-top: 12px; background: rgba(255,255,255,.18); color: white; font-weight: 600; font-size: .88rem; padding: 9px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,.3); transition: background var(--transition); align-self: flex-start; }
.promo-card__btn:hover { background: rgba(255,255,255,.30); color: white; }

/* Badge */
.promo-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  color: white;
  font-size: .78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 99px;
  letter-spacing: .03em;
  width: fit-content;
}

/* Promo countdown (optional) */
.promo-ends { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: 6px; }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition);
}
.news-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Featured (1st) card */
.news-card--featured {
  border-left: 4px solid var(--blue);
  background: var(--blue-light);
}
.news-card--featured .news-card__title a { color: var(--blue-dark); }

.news-card__cat {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--sky);
  background: rgba(0,161,224,.1);
  padding: 3px 10px; border-radius: 99px;
  width: fit-content;
}
.news-card__title { font-size: 1rem; font-weight: 700; line-height: 1.35; margin: 0; }
.news-card__title a { color: var(--dark); }
.news-card__title a:hover { color: var(--blue); }
.news-card__excerpt { color: var(--muted); font-size: .88rem; line-height: 1.6; flex: 1; margin: 0; }
.news-card__footer  { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.news-card__date    { font-size: .8rem; color: var(--muted); }
.news-card__link    { font-size: .85rem; font-weight: 600; color: var(--blue); }
.news-card__link:hover { color: var(--orange); }

/* News listing page */
.news-list { display: flex; flex-direction: column; gap: 24px; }
.news-list-item {
  display: grid; grid-template-columns: auto 1fr;
  gap: 24px; align-items: start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.news-list-item:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.news-list-item__date { text-align: center; min-width: 60px; }
.news-list-item__day  { font-family: var(--font-h); font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.news-list-item__mon  { font-size: .75rem; color: var(--muted); text-transform: uppercase; }

/* Responsive */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
  .promos-grid { grid-template-columns: 1fr; }
  .promo-banner { padding: 24px; }
}

/* ── MEGA MENU — 3 col variant (default) & labels ─────────── */
.mega-menu__inner--4col {
  grid-template-columns: 1.15fr 1fr 0.9fr;
}

/* Δημόσιες col — διακριτό highlight */
.mega-col--highlight {
  background: linear-gradient(160deg, #EBF4FF 0%, #F5F8FC 100%);
  border-radius: 10px;
  padding: 16px 20px !important;
  border-right: none !important;
  position: relative;
}
.mega-col--highlight::before {
  content: '';
  position: absolute;
  top: 12px; left: -1px;
  width: 3px; height: calc(100% - 24px);
  background: var(--blue);
  border-radius: 3px;
}

/* Νέα nav link — small dot indicator αν υπάρχουν νέα νέα */
.nav-link--news { position: relative; }
.nav-link--news::after {
  content: '';
  position: absolute;
  top: 6px; right: 6px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  border: 1.5px solid white;
}

@media (max-width: 1100px) {
  .mega-menu__inner--4col { grid-template-columns: 1fr 1fr; }
  .mega-menu__inner--4col .mega-col:last-child { display: none; }
}

/* ============================================================
   PROMO TICKER BAR
   ============================================================ */
.promo-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
  z-index: 990;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
}

/* Scrolling track */
.promo-ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  animation: tickerScroll 32s linear infinite;
}
.promo-ticker:hover .promo-ticker__track { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Each item */
.promo-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  color: white;
  text-decoration: none;
  font-size: .85rem;
  border-right: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0;
  transition: opacity .2s;
}
.promo-ticker__item:hover { opacity: .85; color: white; }

.promo-ticker__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.promo-ticker__text {
  font-weight: 600;
  font-size: .88rem;
}
.promo-ticker__sub {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
}
.promo-ticker__cta {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  flex-shrink: 0;
  transition: background .2s;
}
.promo-ticker__item:hover .promo-ticker__cta { background: rgba(255,255,255,.32); }

/* Close button */
.promo-ticker__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  cursor: pointer;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  transition: background .2s;
  -webkit-mask-image: none;
  mask-image: none;
}
.promo-ticker__close:hover { background: rgba(0,0,0,.3); color: white; }

/* Hide when closed */
.promo-ticker.ticker-hidden {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}

/* Mobile: απλοποιημένο */
@media (max-width: 640px) {
  .promo-ticker__sub { display: none; }
  .promo-ticker__cta { display: none; }
  .promo-ticker { height: 36px; }
}

/* ============================================================
   MEGA MENU — SOFTWARE (redesigned)
   ============================================================ */
/* ── Mega Menu Software — Modern Style ─────────────────────── */
.mega-menu--software {
  border-top: none !important;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 24px 60px rgba(0,0,0,.13) !important;
  padding-bottom: 6px;
}

.mega-software__inner {
  display: flex;
  flex-wrap: nowrap;
  padding: 28px 0 24px;
  width: 100%;
}
.mega-software__col {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid #F0F4F8;
}
.mega-software__col:last-child { border-right: none; }
.mega-software__divider { display: none; }

/* Dividers */
.mega-software__divider {
  width: 1px;
  background: #F0F4F8;
  margin: 0;
  align-self: stretch;
}



/* Column headers — each gets a distinct gradient accent */
.mega-software__col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid transparent;
}
.mega-software__col-head--private {
  background: linear-gradient(135deg,#EFF6FF,#DBEAFE);
  border-color: #BFDBFE;
}
.mega-software__col-head--public {
  background: linear-gradient(135deg,#FFF7ED,#FED7AA);
  border-color: #FCD0A0;
}
.mega-software__col-head--cat {
  background: linear-gradient(135deg,#F0FDF4,#BBF7D0);
  border-color: #A7F3D0;
}
.mega-software__col-head--sector {
  background: linear-gradient(135deg,#FDF4FF,#E9D5FF);
  border-color: #DDD6FE;
}

/* Icon in head — small white card */
.mega-software__col-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.mega-software__col-title {
  font-size: .86rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.mega-software__col-sub {
  font-size: .71rem;
  color: #64748B;
  margin-top: 2px;
}

/* Δημόσιες: subtle warm tint */
.mega-software__col--public { border-radius: 8px; }

/* Links */
.mega-software__list { list-style: none; padding: 0; }
.mega-software__list li { margin-bottom: 3px; }

.mega-software__link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: all .15s;
  text-decoration: none;
  color: #374151;
  border: 1px solid transparent;
}
.mega-software__link:hover {
  background: #F8FAFF;
  border-color: #E0EAFF;
  color: #1D4ED8;
  transform: translateX(2px);
}
.mega-software__link-icon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
  background: #F1F5F9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .15s;
}
.mega-software__link:hover .mega-software__link-icon {
  background: #DBEAFE;
}
.mega-software__link span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mega-software__link strong {
  font-size: .86rem;
  font-weight: 600;
  color: #1E293B;
  display: block;
  line-height: 1.2;
}
.mega-software__link em {
  font-style: normal;
  font-size: .72rem;
  color: #94A3B8;
  display: block;
}
.mega-software__link:hover strong { color: #1D4ED8; }
.mega-software__link:hover em { color: #60A5FA; }

/* Sector pills — modern bordered pills */
.mega-software__list--sectors {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mega-software__sector-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 99px;
  font-size: .83rem;
  font-weight: 500;
  color: #374151;
  background: #F8FAFC;
  border: 1px solid #E8EDF2;
  transition: all .15s;
  text-decoration: none;
}
.mega-software__sector-pill:hover {
  background: #8B5CF6;
  border-color: #8B5CF6;
  color: white;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(139,92,246,.25);
}

/* All sectors CTA */
.mega-software__all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 9px 16px;
  background: #8B5CF6;
  color: white;
  font-size: .81rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all .15s;
  width: 100%;
  box-shadow: 0 2px 8px rgba(139,92,246,.25);
  gap: 6px;
}
.mega-software__all-btn::after { content: ' →'; }
.mega-software__all-btn:hover {
  background: #7C3AED;
  color: white;
  box-shadow: 0 6px 18px rgba(139,92,246,.35);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1180px) {
  .mega-software__inner {
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
  }
  .mega-software__inner > *:nth-child(6),
  .mega-software__inner > *:nth-child(7) { display: none; }
}
@media (max-width: 860px) {
  .mega-software__inner { grid-template-columns: 1fr 1px 1fr; }
  .mega-software__inner > *:nth-child(4),
  .mega-software__inner > *:nth-child(5) { display: none; }
}

/* ── Logo ──────────────────────────────────────────────────── */
.logo img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* Αν το header γίνει σκούρο ποτέ, αλλάξτε σε: */
/* mix-blend-mode: screen; */

/* ============================================================
   DARK THEME
   ============================================================ */
[data-theme="dark"] {
  --blue:       #4A9FE0;
  --blue-dark:  #2478BF;
  --blue-light: #1A2A40;
  --sky:        #5BC8F0;
  --orange:     #F4A020;
  --orange-dk:  #D4880A;
  --dark:       #E8EAF6;
  --text:       #B8BDD8;
  --muted:      #6B7299;
  --light-bg:   #141829;
  --white:      #1A1F36;
  --border:     #2A3055;
}

/* ── Base ── */
[data-theme="dark"] body            { background: #0F1320; color: #B8BDD8; }
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4              { color: #E8EAF6; }
[data-theme="dark"] a               { color: #4A9FE0; }
[data-theme="dark"] a:hover         { color: #5BC8F0; }

/* ── Topbar ── */
[data-theme="dark"] .topbar         { background: #080C18; }

/* ── Header ── */
[data-theme="dark"] 
[data-theme="dark"] .nav-link       { color: #C8CCE8; }
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active{ background: #1E2A48; color: #4A9FE0; }
[data-theme="dark"] .logo-text      { color: #4A9FE0; }

/* ── Mega Menu ── */
[data-theme="dark"] .mega-menu      { background: #141829; border-color: #4A9FE0; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
[data-theme="dark"] .mega-col       { border-right-color: #2A3055; }
[data-theme="dark"] .mega-title     { color: #6B7299; border-bottom-color: #2A3055; }
[data-theme="dark"] .mega-col ul li a { color: #B8BDD8; }
[data-theme="dark"] .mega-col ul li a:hover { background: #1E2A48; color: #4A9FE0; }
[data-theme="dark"] .mega-col--highlight { background: #141E38; }

/* Software mega menu dark */
[data-theme="dark"] .mega-menu--software { background: #141829; }
[data-theme="dark"] .mega-software__col-head--priv { background: #1A2540; }
[data-theme="dark"] .mega-software__col-head--pub  { background: #1A2540; border-left-color: #4A9FE0; }
[data-theme="dark"] .mega-software__col-head--cat  { background: #161C30; }
[data-theme="dark"] .mega-software__col-head--sec  { background: rgba(244,160,32,.08); }
[data-theme="dark"] .mega-software__col-title      { color: #E8EAF6; }
[data-theme="dark"] .mega-software__col-sub        { color: #6B7299; }
[data-theme="dark"] .mega-software__link           { color: #B8BDD8; }
[data-theme="dark"] .mega-software__link:hover     { background: #1E2A48; color: #4A9FE0; }
[data-theme="dark"] .mega-software__link-icon      { background: #1E2840; }
[data-theme="dark"] .mega-software__link strong    { color: #E8EAF6; }
[data-theme="dark"] .mega-software__link em        { color: #6B7299; }
[data-theme="dark"] .mega-software__link:hover strong { color: #4A9FE0; }
[data-theme="dark"] .mega-software__sector-pill    { color: #B8BDD8; }
[data-theme="dark"] .mega-software__sector-pill:hover { background: rgba(244,160,32,.1); color: #E8EAF6; }
[data-theme="dark"] .mega-software__divider        { background: #2A3055; }
[data-theme="dark"] .mega-software__col--public    { background: linear-gradient(180deg,rgba(26,37,64,.6) 0%,transparent 100%); }

/* ── Hero ── */
[data-theme="dark"] .hero           { background: linear-gradient(135deg, #050A14 0%, #0D1830 50%, #0A2040 100%); }

/* ── Sections ── */
[data-theme="dark"] section.alt-bg  { background: #141829; }
[data-theme="dark"] .section-tag    { background: #1A2A40; color: #4A9FE0; }

/* ── Cards ── */
[data-theme="dark"] .card          { background: #1A1F36; border-color: #2A3055; }
[data-theme="dark"] .card:hover    { border-color: #4A9FE0; }
[data-theme="dark"] .card__title   { color: #E8EAF6; }
[data-theme="dark"] .card__text    { color: #6B7299; }

/* ── Sector pills ── */
[data-theme="dark"] .sector-pill   { background: #1A1F36; border-color: #2A3055; color: #B8BDD8; }
[data-theme="dark"] .sector-pill:hover { background: #4A9FE0; border-color: #4A9FE0; color: #fff; }

/* ── Why list ── */
[data-theme="dark"] .why-list li   { border-bottom-color: #2A3055; }
[data-theme="dark"] .why-icon      { background: #1A2A40; }
[data-theme="dark"] .why-text strong { color: #E8EAF6; }
[data-theme="dark"] .why-text span  { color: #6B7299; }

/* ── Forms ── */
[data-theme="dark"] .form-control  { background: #141829; border-color: #2A3055; color: #E8EAF6; }
[data-theme="dark"] .form-control:focus { border-color: #4A9FE0; box-shadow: 0 0 0 3px rgba(74,159,224,.15); }
[data-theme="dark"] .form-label    { color: #C8CCE8; }

/* ── Features ── */
[data-theme="dark"] .feature-item  { background: #1A1F36; border-color: #2A3055; }
[data-theme="dark"] .feature-text strong { color: #E8EAF6; }
[data-theme="dark"] .feature-text span   { color: #6B7299; }

/* ── News ── */
[data-theme="dark"] .news-card         { background: #1A1F36; border-color: #2A3055; }
[data-theme="dark"] .news-card--featured{ background: #141E38; border-color: #4A9FE0; }
[data-theme="dark"] .news-card__title a { color: #E8EAF6; }
[data-theme="dark"] .news-card__excerpt { color: #6B7299; }
[data-theme="dark"] .news-list-item     { background: #1A1F36; border-color: #2A3055; }

/* ── Page hero ── */
[data-theme="dark"] .page-hero     { background: linear-gradient(135deg,#050A14,#0D1830,#0A2040); }

/* ── Promos ── */
[data-theme="dark"] .promo-banner--blue { background: linear-gradient(135deg,#050A14,#0D1E38); }

/* ── Footer ── */
[data-theme="dark"] .site-footer   { background: #080C18; }
[data-theme="dark"] .footer__bottom{ border-top-color: rgba(255,255,255,.06); }

/* ── Admin ── */
[data-theme="dark"] .admin-content  { background: #0F1320; }
[data-theme="dark"] .admin-header   { background: #111726; border-bottom-color: #2A3055; }
[data-theme="dark"] .table          { background: #1A1F36; }
[data-theme="dark"] .table th       { background: #141829; color: #E8EAF6; border-bottom-color: #2A3055; }
[data-theme="dark"] .table td       { border-bottom-color: #2A3055; color: #B8BDD8; }
[data-theme="dark"] .table tr:hover td { background: #1E2A48; }

/* ── Theme Toggle Button ── */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--light-bg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--blue); background: var(--blue-light); }
[data-theme="dark"] .theme-toggle  { background: #1E2840; border-color: #2A3055; }
[data-theme="dark"] .theme-toggle:hover { border-color: #4A9FE0; background: #1A2A48; }



/* ============================================================
   MEGA MENU — 4 Columns with colored headers
   ============================================================ */
.mega-menu__inner--4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0;
}
.mega-menu__inner--4col .mega-col {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.mega-menu__inner--4col .mega-col:last-child { border-right: none; }

.mega-col__head { margin-bottom: 12px; }

.mega-col__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text, #374151);
  font-size: .875rem;
  transition: all .14s;
  margin-bottom: 2px;
}
.mega-col__link:hover { background: #EFF6FF; color: #1D4ED8; }
.mega-col__link strong { display: block; font-size: .85rem; font-weight: 600; }
.mega-col__link em { display: block; font-size: .72rem; color: #94A3B8; font-style: normal; margin-top: 1px; }
.mega-col__link-icon {
  width: 30px; height: 30px;
  background: #F1F5F9;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.mega-col__link:hover .mega-col__link-icon { background: #DBEAFE; }

.mega-col__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  margin: 3px 2px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 99px;
  font-size: .79rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all .14s;
}
.mega-col__pill:hover { background: #3B82F6; border-color: #3B82F6; color: white; }

.mega-col__more {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: #3B82F6;
  text-decoration: none;
  margin-top: 12px;
  padding: 0 10px;
}
.mega-col__more:hover { color: #1D4ED8; }

@media (max-width: 1100px) {
  .mega-menu__inner--4col { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PHOSPHOR ICONS — Global Styles
   ============================================================ */

/* Feature items με Phosphor */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .18s;
}
.feature-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,87,168,.08);
  transform: translateY(-2px);
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.feature-icon-wrap i {
  font-size: 1.5rem;
  color: #0057A8;
}
.feature-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.feature-text span   { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* Why-us list με Phosphor */
.why-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.why-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon-wrap i { font-size: 1.3rem; color: #0057A8; }

/* Cards με Phosphor */
.card__icon-ph {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.card__icon-ph i { font-size: 1.6rem; color: #0057A8; }

/* Sector pills με Phosphor */
.sector-pill i { font-size: 1.1rem; color: var(--blue); }

/* Ph icon color variants */
.ph-orange i { color: #F4A020 !important; }
.ph-green  i { color: #10B981 !important; }
.ph-purple i { color: #7C3AED !important; }
.ph-red    i { color: #EF4444 !important; }

/* Sidebar admin Phosphor */
.admin-nav__link i { font-size: 1rem; width: 18px; text-align: center; }

/* Phosphor in mega menu */
.mega-software__col-icon i { font-size: 1.4rem; }
.mega-software__link-icon i { font-size: 1.1rem; color: var(--blue); }
.mega-software__sector-pill i { font-size: 1rem; }
.mega-title i { font-size: .95rem; }

/* ── Heroicons SVG Sizing ─────────────────────────────────── */
.feature-icon-wrap svg,
.why-icon-wrap svg,
.card__icon-ph svg { display: block; }
.mega-software__col-icon svg { display: inline-block; vertical-align: middle; }
.mega-software__link-icon svg { display: inline-block; vertical-align: middle; }
.mega-software__sector-pill svg { display: inline-block; vertical-align: middle; }
.admin-icon { display: block; }
.admin-nav__icon svg { display: block; }

/* ── Section divider ──────────────────────────────────────── */
section + section,
section + .cta-banner,
.cta-banner + section {
  border-top: 1px solid #E8EDF5;
}




/* Gradient header nav */
.site-header .nav-link { color: #C0392B !important; font-weight: 800 !important; font-size: .9rem !important; }
.site-header .nav-link:hover { color: #922B21 !important; background: rgba(192,57,43,.08) !important; }
.site-header .nav-link.active { color: #922B21 !important; font-weight: 900; }

/* ── Nav link alignment fix ──────────────────────── */
.nav-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  vertical-align: middle !important;
}
.nav-link .arrow {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  margin-top: 0 !important;
  font-size: .65rem !important;
}
.nav-list li {
  display: flex !important;
  align-items: center !important;
}

/* ── Roboto nav font ─────────────────────────────── */
.site-header .nav-link,
.site-header .nav-link span {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 900 !important;
}

/* Mega menu positioning fix */
.main-nav { position: static; }
.nav-list { position: static; }
.has-mega { position: static; }
.site-header { overflow: visible !important; }
.mega-menu { top: 100%; }

/* ═══════════════════════════════════════════════
   MOBILE FIXES — infonet.net.gr
   ═══════════════════════════════════════════════ */

/* ── Topbar: κρύβουμε σε πολύ μικρές οθόνες ── */
@media (max-width: 768px) {
  .topbar { display: none; }

  /* Header */
  .site-header .header__inner {
    height: 60px !important;
    padding: 0 16px !important;
    grid-template-columns: auto 1fr auto !important;
  }
  .site-header .logo img { height: 44px !important; }

  /* Gold partner badge: κρύβουμε σε mobile */
  .header-actions > div:first-child { display: none !important; }
  .header-actions > div[style*="width:1px"] { display: none !important; }

  /* Hamburger */
  .hamburger { display: flex !important; }
  .header-actions .btn--primary { display: none !important; }

  /* Accent bar */
  #accent-bar { top: 60px !important; }

  /* Hero */
  .hero { padding: 40px 0 32px !important; }
  .hero__content h1 { font-size: 1.8rem !important; }
  .hero__content p { font-size: .95rem !important; }
  .hero__badge { font-size: .72rem !important; }
  .hero__badge img { height: 28px !important; }
  .hero__actions { flex-direction: column !important; gap: 10px !important; }
  .hero__actions .btn { width: 100% !important; text-align: center !important; }
  .hero__stats { grid-template-columns: repeat(3,1fr) !important; gap: 8px !important; }
  .stat__num { font-size: 1.5rem !important; }

  /* Products grid: 1 column */
  .cards-grid { grid-template-columns: 1fr !important; }
  .card { padding: 20px !important; }

  /* Sectors: wrap pills */
  .sectors-grid { flex-wrap: wrap !important; gap: 8px !important; }
  .sector-pill { font-size: .8rem !important; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr !important; }

  /* Promos */
  .promos-section .cards-grid { grid-template-columns: 1fr !important; }
  .promo-card { padding: 24px 20px !important; }

  /* News */
  .news-list { grid-template-columns: 1fr !important; }

  /* CTA section */
  .cta-banner h2 { font-size: 1.5rem !important; }
  .btn-group { flex-direction: column !important; align-items: center !important; }
  .btn-group .btn { width: 100% !important; max-width: 320px !important; }

  /* Sections padding */
  section { padding: 48px 0 !important; }
  .container { padding: 0 16px !important; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Contact page */
  .contact-stats { grid-template-columns: 1fr !important; }

  /* Fix any overflow */
  body { overflow-x: hidden !important; }
  * { max-width: 100% !important; }
  img { max-width: 100% !important; height: auto !important; }
}

/* ── Tablet (768px - 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr) !important; }
  .container { padding: 0 24px !important; }
  .hero__content h1 { font-size: 2.2rem !important; }
  .site-header .header__inner { height: 64px !important; }
  /* Gold partner: μικρότερο σε tablet */
  .gp-badge .gp-text-bot { font-size: .68rem !important; }
  .gp-badge .gp-text-top { display: none !important; }
}

/* ── Mobile nav overlay ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: #0F172A !important;
    z-index: 9998 !important;
    overflow-y: auto !important;
    padding: 16px !important;
  }
  .main-nav.open .nav-list {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .main-nav.open .nav-link {
    color: white !important;
    font-size: 1rem !important;
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .main-nav.open .nav-link span { color: rgba(255,255,255,.5) !important; }
  /* CTA στο κάτω mobile menu */
  .main-nav.open::after {
    content: '' !important;
    display: block !important;
    height: 80px !important;
  }
  .mobile-cta {
    display: block !important;
    margin: 16px 0 !important;
    text-align: center !important;
  }
}
.mobile-cta { display: none; }

/* ── Hamburger animation ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 9999;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #1E3A5F;
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Fix max-width issue on product pages ── */
@media (max-width: 768px) {
  * { max-width: 100% !important; box-sizing: border-box !important; }
  .mega-menu { display: none !important; }
  [style*="padding-right:52%"] { padding-right: 0 !important; }
  [style*="width:50%"][style*="position:absolute"] { display: none !important; }
  [style*="width:420px"] { width: auto !important; }
  [style*="grid-template-columns:1fr 1.65fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 300px"] { grid-template-columns: 1fr !important; }
}

/* ── CRITICAL: nav + hamburger visibility ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex !important; flex-direction: column !important; }
  .hamburger { display: flex !important; }
  .header-actions > a.btn--primary { display: none !important; }
}
@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .main-nav { display: flex !important; }
}

@media (max-width: 768px) {
  .main-nav.open .nav-link,
  .main-nav.open .nav-link span {
    color: rgba(255,255,255,.85) !important;
    font-size: .95rem !important;
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
  }
  .main-nav.open .nav-list {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
  }
  .main-nav.open .has-mega { position: static !important; }
  .main-nav.open .mega-menu { display: none !important; }
}

/* ── Mobile header layout fix ───────────────────── */
@media (max-width: 768px) {
  .site-header .header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important;
    padding: 0 16px !important;
    width: 100% !important;
  }
  .site-header .logo {
    flex: 1 !important;
  }
  .site-header .main-nav {
    display: none;
  }
  .site-header .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  #hamburger {
    display: flex !important;
    flex-shrink: 0 !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    cursor: pointer !important;
    padding: 8px !important;
    background: none !important;
    border: 1px solid #bcd0ea !important;
    border-radius: 7px !important;
    width: 38px !important;
    height: 38px !important;
  }
  #hamburger span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #003F7D !important;
    border-radius: 2px !important;
  }
  #header-cta { display: none !important; }
  #header-actions > div:first-child { display: none !important; }
  #header-actions > div[style*="width:1px"] { display: none !important; }
}

@media (max-width: 768px) {
  .main-nav.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #0F172A !important;
    z-index: 9998 !important;
    overflow-y: auto !important;
    padding: 20px !important;
  }
  .main-nav.open .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-size: 1rem !important;
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    display: block !important;
    font-weight: 700 !important;
  }
  .main-nav.open .nav-list {
    flex-direction: column !important;
    width: 100% !important;
  }
  .main-nav.open .mega-menu { display: none !important; }
}

/* ═══ Product page mobile ═══ */
@media (max-width: 768px) {

  /* ── Hero section ── */
  .why-grid { grid-template-columns: 1fr !important; }

  /* ── Watermark logos: κρύψε σε mobile ── */
  .pw-left, .pw-right,
  [style*="pwSwingL"], [style*="pwSwingR"] { display: none !important; }

  /* ── Features grid ── */
  .product-features {
    grid-template-columns: 1fr !important;
  }
  .feature-item {
    flex-direction: row !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  /* ── Highlights panel ── */
  .why-grid > div:last-child {
    padding: 20px !important;
  }

  /* ── Suitable section: αφαίρεσε floating image ── */
  [style*="padding-right:52%"] {
    padding-right: 20px !important;
    padding: 24px 20px !important;
    min-height: auto !important;
  }
  [style*="width:50%"][style*="position:absolute"],
  [style*="width:50%;overflow:hidden"] {
    display: none !important;
  }

  /* ── Suitable pills: wrap ── */
  [style*="display:flex;flex-wrap:wrap;gap:8px"] {
    gap: 8px !important;
  }
  .cf-chip,
  [class*="chip"] {
    font-size: .78rem !important;
    padding: 7px 12px !important;
  }

  /* ── Page hero ── */
  .page-hero h1 { font-size: 1.6rem !important; }
  .page-hero p  { font-size: .9rem !important; }

  /* ── Product hero logo ── */
  #hdr-logo-img { height: 48px !important; }

  /* ── Intro section ── */
  section[style*="position:relative;overflow:hidden"] {
    overflow: hidden !important;
  }

  /* ── CTA buttons ── */
  .btn-group,
  [style*="display:flex"][style*="gap"][style*="btn"] {
    flex-direction: column !important;
    width: 100% !important;
  }
  .btn-group .btn,
  [style*="btn--primary"],
  [style*="btn--outline"] {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  /* Suitable section — remove floating image */
  #suitable-wrap {
    padding-right: 20px !important;
    min-height: auto !important;
  }
  #suitable-img { display: none !important; }

  /* Features grid → 1 column */
  .product-features {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {

  /* ── Κρύψε ΟΛΑ τα watermarks/decorative absolute divs ── */
  .why-grid > section > div[style*="position:absolute"],
  section > div[style*="position:absolute"][style*="opacity"],
  [style*="position:absolute"][style*="background:url"],
  [style*="position:absolute"][style*="pointer-events:none"] {
    display: none !important;
  }

  /* ── Hero intro section: κρύψε watermarks ── */
  section[style*="position:relative;overflow:hidden"] > div[style*="position:absolute"] {
    display: none !important;
  }

  /* ── Header logo: μην κόβεται ── */
  .site-header .header__inner {
    overflow: visible !important;
  }
  .site-header .logo {
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .site-header .logo img {
    max-width: 140px !important;
    height: 40px !important;
    object-fit: contain !important;
  }

  /* ── Buttons στο product hero ── */
  [style*="display:flex"][style*="gap"][style*="margin-top"] {
    flex-direction: column !important;
    gap: 10px !important;
  }
}

@media (max-width: 768px) {
  .mobile-hide { display: none !important; }
}

/* ═══ Mobile nav fixes ═══ */
@media (max-width: 768px) {

  /* Κρύψε mega menus μέσα στο mobile nav */
  .main-nav.open .mega-menu,
  .main-nav.open .mega-menu--software,
  .main-nav.open [class*="mega-"] { display: none !important; }

  /* Nav links: inline flex */
  .main-nav.open .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 14px 12px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,.9) !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 0 !important;
    font-family: 'Roboto', sans-serif !important;
    text-decoration: none !important;
  }

  /* Arrow inline */
  .main-nav.open .arrow {
    color: rgba(255,255,255,.4) !important;
    font-size: .7rem !important;
    display: inline !important;
  }

  .main-nav.open .nav-list {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
    list-style: none !important;
    padding: 0 !important;
  }

  .main-nav.open li {
    width: 100% !important;
    position: static !important;
  }

  /* CTA button at bottom of menu */
  .main-nav.open .mobile-cta {
    display: block !important;
    margin: 20px 0 8px !important;
    background: #0057A8 !important;
    color: white !important;
    text-align: center !important;
    padding: 14px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 1rem !important;
  }
}

/* ═══ Mobile nav — FINAL FIX ═══ */
@media (max-width: 768px) {

  /* Κρύψε ΠΑΝΤΑ τα mega menus σε mobile */
  .mega-menu,
  .mega-menu--software,
  [class*="mega-spotlight"],
  .has-mega > div:not(.nav-link) { display: none !important; }

  /* Σιγουρέψου ότι τα has-mega links είναι clickable */
  .has-mega { position: static !important; }
  .has-mega > a.nav-link {
    pointer-events: auto !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    color: rgba(255,255,255,.9) !important;
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
  }

  /* Κρύψε sub-panels */
  .mega-spotlight__panel,
  .mega-spotlight__cats,
  .mega-software__inner,
  .mega-menu__inner { display: none !important; }
}

/* ═══ MEGA MENU: FORCE HIDE ON MOBILE ═══ */
@media (max-width: 768px) {
  body .mega-menu,
  body .mega-menu.active,
  body .has-mega.mega-open .mega-menu,
  body .has-mega .mega-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  /* Prevent mega menu z-index overlap */
  body .main-nav.open ~ * .mega-menu,
  body .main-nav.open .mega-menu {
    display: none !important;
  }
}

/* Touch devices: never show mega menu on hover */
@media (hover: none), (max-width: 768px) {
  .has-mega:hover > .mega-menu { display: none !important; }
  .has-mega.mega-open > .mega-menu { display: none !important; }
  .mega-menu { display: none !important; }
}

/* ═══ Hide mega menus when mobile nav is open ═══ */
body.mobile-nav-open .mega-menu,
body.mobile-nav-open [class*="mega-menu"],
body.mobile-nav-open .has-mega > div,
body.mobile-nav-open .has-mega > .mega-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
/* Also when nav has open class */
.main-nav.open ~ .mega-menu,
.main-nav.open .mega-menu {
  display: none !important;
}

/* ═══ Mega menu z-index fix on mobile ═══ */
@media (max-width: 768px) {
  /* Mega menu behind the mobile nav overlay */
  .mega-menu {
    z-index: 1 !important;
    display: none !important;
  }
  /* Mobile nav overlay above everything */
  .main-nav.open {
    z-index: 99999 !important;
  }
}

/* ═══ Beat .has-mega.mega-open specificity on mobile ═══ */
@media (max-width: 768px) {
  /* Higher specificity than .has-mega.mega-open .mega-menu */
  body .has-mega .mega-menu,
  body .has-mega.mega-open .mega-menu,
  body.mobile-nav-open .has-mega .mega-menu,
  body.mobile-nav-open .has-mega.mega-open .mega-menu {
    display: none !important;
    visibility: hidden !important;
    z-index: -1 !important;
  }
}

/* ═══ NUCLEAR OPTION: ID specificity beats everything ═══ */
@media (max-width: 768px) {
  #main-nav .mega-menu,
  #main-nav .has-mega .mega-menu,
  #main-nav .has-mega.mega-open .mega-menu,
  #site-header .mega-menu {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
  }
}

/* ═══ Contact page mobile ═══ */
@media (max-width: 768px) {

  /* Stats bar: 1 column */
  .contact-stats,
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact grid: stack */
  .contact-grid,
  [style*="grid-template-columns:1fr 1.65fr"],
  [style*="grid-template-columns:1fr 300px"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Dark left panel: full width */
  [style*="background:#0F172A"][style*="border-radius:16px"] {
    border-radius: 12px !important;
    padding: 24px 20px !important;
  }

  /* Map: smaller */
  iframe[src*="maps"] {
    height: 140px !important;
  }

  /* Form grid: 1 column */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Chips: wrap */
  #chips-wrap {
    gap: 6px !important;
  }
  .cf-chip {
    font-size: .75rem !important;
    padding: 6px 10px !important;
  }

  /* Response bar: smaller */
  [style*="background:#F0FDF4"] {
    font-size: .75rem !important;
    padding: 8px 12px !important;
  }

  /* Page hero: shorter */
  .page-hero {
    padding: 40px 0 32px !important;
    min-height: auto !important;
  }
  .page-hero h1 { font-size: 1.6rem !important; }
  .page-hero p  { font-size: .88rem !important; }

  /* Submit button */
  #cf-btn { font-size: .9rem !important; }
}