/* Road Safety Insights — landing page */
:root {
  --primary: #007bc2;
  --primary-bright: #0084ff;
  --accent-cyan: #00c2ff;
  --navy-deep: #000b2e;
  --navy-mid: #001f3f;
  --navy-heading: #050a30;
  --text-muted: #6c757d;
  --bg-page: #f0f4f8;
  --bg-section: #f4f7f6;
  --bg-tint: #e6f0f7;
  --card-border: #d1e3f0;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(5, 10, 48, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1000px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy-heading);
  background: var(--bg-page);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1rem 0;
}

body.nav-open .site-header {
  z-index: 120;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-bright), var(--accent-cyan));
  box-shadow: 0 2px 8px rgba(0, 132, 255, 0.4);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--white);
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.btn--login {
  background: var(--primary-bright);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}

.btn--login:hover {
  filter: brightness(1.08);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

@media (min-width: 900px) {
  .nav,
  .btn--login {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  background: linear-gradient(125deg, var(--navy-deep) 0%, #0a1a4a 45%, #0d3a6b 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 20%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 194, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__top {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.hero__badge-icon {
  font-size: 0.9rem;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.text-accent {
  color: var(--accent-cyan);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--primary-bright);
  color: var(--white);
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn__arrow {
  font-size: 1.1em;
  line-height: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  padding: 0.5rem 0.75rem;
}

.btn--link:hover {
  color: var(--accent-cyan);
}

.btn--xs {
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
}

.btn--block {
  width: 100%;
}

.fab-support {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-bright);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 132, 255, 0.45);
  z-index: 30;
  text-decoration: none;
}

/* Light sections */
.section {
  padding: 4rem 0;
}

.section--light {
  background: var(--bg-section);
}

.section--tint {
  background: var(--bg-page);
}

.section--interest {
  background: #f4f7fb;
  padding: 4rem 0;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy-heading);
}

.section__title--center {
  text-align: center;
}

.section__intro {
  margin: 0 0 2rem;
  max-width: 46rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.section__intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
  color: var(--primary);
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  color: var(--navy-heading);
}

.feature-card__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

/* App κάρτα + στατιστικά: δίπλα-δίπλα, 4 tiles πάντα στη σειρά */
.section--dark {
  background: #050a18;
  color: var(--white);
  padding: 4rem 0 5rem;
}

.app-stats-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .app-stats-split {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
  }
}

.app-showcase {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.app-showcase__panel {
  width: 100%;
  max-width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.preview-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d172a;
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.preview-card__inner {
  padding: 1.35rem 1.25rem 1.25rem;
}

.preview-card__inner--site {
  background:
    radial-gradient(ellipse 120% 80% at 80% -10%, rgba(0, 194, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 100%, rgba(0, 100, 200, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #030c22 0%, #071433 42%, #0a2047 100%);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.preview-site__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  flex: 1;
  min-height: 0;
}

@media (max-width: 400px) {
  .preview-site__row {
    flex-direction: column;
    align-items: stretch;
  }
  .mini-phone {
    width: 112px;
    align-self: center;
    margin-top: 0.25rem;
  }
}

.preview-site__copy {
  flex: 1;
  min-width: 0;
  padding-bottom: 0.35rem;
}

/* Mini επίδειξη «RoadSafe Ελλάδα» όπως το hero στη 2η εικόνα */
.mini-site__nav {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 520px) {
  .mini-site__nav {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand actions"
      "menu menu";
  }
  .mini-site__brand {
    grid-area: brand;
  }
  .mini-site__actions {
    grid-area: actions;
    justify-self: end;
  }
  .mini-site__menu {
    grid-area: menu;
    max-width: 100%;
  }
}

.mini-site__brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.mini-site__shield {
  flex-shrink: 0;
  color: #00cfff;
}

.mini-site__brand-name {
  font-weight: 700;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.mini-site__menu {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.mini-site__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.mini-site__login {
  font-size: 0.57rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.mini-site__dlwrap {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.26rem 0.42rem;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(180deg, var(--primary-bright) 0%, #0068d4 100%);
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 132, 255, 0.45);
}

.mini-site__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.55rem;
  padding: 0.26rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.93);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  width: fit-content;
}

.mini-site__title {
  margin: 0 0 0.5rem;
  font-size: clamp(0.95rem, 2.35vw + 0.55rem, 1.42rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
  max-width: 22rem;
}

.mini-site__title-accent {
  color: var(--accent-cyan);
  text-shadow: 0 0 24px rgba(0, 194, 255, 0.35);
}

.mini-site__lead {
  margin: 0 0 0.75rem;
  font-size: clamp(0.575rem, 1.1vw + 0.45rem, 0.72rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 24rem;
}

.mini-site__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
  margin-bottom: 0.72rem;
}

.mini-site__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.72rem;
  font-size: 0.595rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.mini-site__btn--primary {
  color: var(--white);
  background: linear-gradient(180deg, #0af 0%, var(--primary-bright) 100%);
  box-shadow: 0 4px 16px rgba(0, 180, 255, 0.35);
}

.mini-site__btn--primary:hover {
  filter: brightness(1.08);
}

.mini-site__btn--ghost {
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.mini-site__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mini-site__play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.28rem 0 0.28rem 0.42rem;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  margin-inline-end: -0.05rem;
}

.mini-site__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  padding-top: 0.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-site__stat {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.mini-site__stat strong {
  font-size: clamp(0.78rem, 1.4vw + 0.42rem, 0.92rem);
  font-weight: 700;
  color: var(--white);
}

.mini-site__stat span {
  font-size: clamp(0.48rem, 0.85vw + 0.38rem, 0.58rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
}

.mini-phone {
  flex-shrink: 0;
  width: clamp(112px, 18vw + 58px, 132px);
  filter: drop-shadow(0 12px 22px rgba(0, 150, 255, 0.18));
}

.mini-phone__body {
  background: linear-gradient(180deg, #1a1f2e 0%, #0d1018 100%);
  border-radius: 14px;
  padding: 5px;
  aspect-ratio: 9/16;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.mini-phone__body--hero {
  border: 1px solid rgba(0, 200, 255, 0.12);
}

.mini-map {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  min-height: 118px;
  overflow: hidden;
  background: #152018;
}

.map-gps {
  display: block;
  width: 100%;
  height: 100%;
}

.map-gps .gps-block {
  fill: rgba(49, 58, 66, 0.95);
}

.map-gps .gps-block--park {
  fill: rgba(34, 80, 54, 0.55);
}

.map-gps .gps-base {
  fill: none;
  stroke: #5c6770;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.map-gps .gps-traffic {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-gps .gps-traffic--green {
  stroke: #22c55e;
  stroke-width: 4.8;
  opacity: 0.97;
}

.map-gps .gps-traffic--yellow {
  stroke: #eab308;
  stroke-width: 4.4;
  opacity: 0.97;
}

.map-gps .gps-traffic--red {
  stroke: #ef4444;
  stroke-width: 4.6;
  opacity: 0.96;
}

.map-gps .map-gps__route {
  fill: none;
  stroke: #38bdf8;
  stroke-width: 2;
  stroke-dasharray: 3.5 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.8;
}

.map-gps .map-gps__dot {
  fill: #38bdf8;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 0.95;
}

/* Επικαλύψεις ειδοποιήσεων πάνω στον χάρτη (όπως η 2η εικόνα) */
.mini-map__toast {
  position: absolute;
  z-index: 2;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.005em;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.mini-map__toast--turn {
  top: 5%;
  left: 5%;
  right: auto;
  max-width: 58%;
  padding: 3px 4px;
  padding-left: 19px;
  font-size: 5.5px;
  color: #fffbeb;
  background: rgba(234, 88, 12, 0.78);
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.32);
}

.mini-map__toast--live {
  top: 40%;
  right: 6%;
  max-width: 52%;
  padding: 3px 5px 3px 16px;
  font-size: 5.5px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 20, 34, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.mini-map__live-dot {
  position: absolute;
  left: 4px;
  top: 50%;
  translate: 0 -50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.mini-map__toast--high {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  max-width: calc(100% - 10px);
  padding: 4px 4px 4px 22px;
  font-size: 5.5px;
  font-weight: 600;
  color: rgba(255, 237, 237, 0.98);
  background: rgba(24, 6, 8, 0.88);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.mini-map__toast-ico {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-map__toast--turn .mini-map__toast-ico--warn {
  top: 50%;
  left: 3px;
  translate: 0 -50%;
  background: rgba(185, 50, 0, 0.95);
}

.mini-map__toast-ico--warn::before {
  content: "!";
  font-weight: 800;
  font-size: 7px;
}

.mini-map__toast-ico--danger {
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 380px) {
  .mini-map__toast {
    font-size: 5px !important;
  }
}

/* —— «Πραγματικές Στατιστικές»: ίδιο ύψος σειράς με την αριστερή κάρτα (stretch) —— */
.stats-showcase {
  text-align: center;
  padding-top: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.stats-showcase__badge {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.38rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.stats-showcase__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.stats-showcase__lead {
  margin: 0 auto 1.25rem;
  max-width: 22rem;
  font-size: clamp(0.8rem, 1.6vw, 0.9rem);
  color: rgba(255, 255, 255, 0.68);
}

.stats-showcase__scroll {
  width: 100%;
  overflow-x: visible;
  padding-bottom: 0;
  -webkit-overflow-scrolling: touch;
  margin-top: auto;
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .stats-showcase {
    justify-content: flex-start;
    height: auto;
  }

  .stats-showcase__scroll {
    margin-top: 0;
  }

  .app-showcase {
    height: auto;
  }

  .app-showcase__panel {
    flex: none;
  }
}

@media (max-width: 520px) {
  .stats-showcase__scroll {
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

.stats-showcase__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: stretch;
  width: 100%;
  min-width: 280px;
}

.stats-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  min-height: 140px;
  padding: 0.85rem 0.35rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .stats-tile {
    min-height: 152px;
    padding: 1rem 0.45rem;
  }
}

.stats-tile__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .stats-tile__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.85rem;
  }
}

.stats-tile--orange .stats-tile__icon {
  background: linear-gradient(145deg, #ffb74d, #ff9800);
  box-shadow: 0 6px 16px rgba(255, 152, 0, 0.25);
}
.stats-tile--yellow .stats-tile__icon {
  background: linear-gradient(145deg, #fff176, #fdd835);
  box-shadow: 0 6px 16px rgba(253, 216, 53, 0.2);
}
.stats-tile--green .stats-tile__icon {
  background: linear-gradient(145deg, #81c784, #4caf50);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.22);
}
.stats-tile--blue .stats-tile__icon {
  background: linear-gradient(145deg, #40c4ff, #0388fc);
  box-shadow: 0 6px 16px rgba(3, 136, 252, 0.25);
}

.stats-tile__num {
  display: block;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stats-tile__label {
  display: block;
  margin-top: auto;
  padding-top: 0.2rem;
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.65);
}

/* Persona + form — ίσο πλάτος & ύψος οι 2 κάρτες (ίδιο grid track) */
.persona-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 2rem;
  align-items: stretch;
}

.persona-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-tint);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.persona-card .btn--recorded,
.persona-card .btn--persona-cta {
  margin-top: auto;
}

@media (max-width: 599px) {
  .persona-row {
    grid-template-columns: 1fr;
  }
}

.persona-card--selected {
  border-color: #9dc5e8;
  box-shadow: none;
}

.persona-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.persona-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.persona-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.btn--recorded {
  width: 100%;
  background: #e2e8f0;
  color: var(--text-muted);
  cursor: not-allowed;
  margin-bottom: 1rem;
}

.btn--recorded .check {
  margin-right: 0.35rem;
}

.persona-card__opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy-heading);
  cursor: pointer;
}

.persona-card__opt input {
  accent-color: var(--primary);
}

.btn--persona-cta {
  width: 100%;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(209, 227, 240, 0.8);
}

.form-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.form-card__intro {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.biz-form__row {
  margin-bottom: 1rem;
}

.biz-form__row--2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .biz-form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field--full {
  width: 100%;
}

.field__label {
  font-weight: 700;
  font-size: 0.875rem;
}

.field__label abbr {
  color: #c62828;
  text-decoration: none;
}

.field input,
.field select {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(0, 132, 255, 0.35);
  outline-offset: 1px;
  border-color: var(--primary-bright);
}

.biz-form__success {
  margin: 0.85rem 0 0;
  color: #166534;
  font-weight: 600;
  font-size: 0.9375rem;
}

.site-footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer p {
  margin: 0;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 11, 46, 0.55);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.nav-backdrop[hidden] {
  display: none;
}

/* Mobile menu open */
body.nav-open {
  overflow: hidden;
}

body.nav-open .nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 85vw);
  background: var(--navy-deep);
  padding: 4rem 1.5rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  z-index: 110;
}

body.nav-open .btn--login {
  display: inline-flex;
  margin-top: 1rem;
}
