:root {
  --ink: #14213d;
  --muted: #64748b;
  --line: #d9e2ec;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --blue: #174f8a;
  --blue-deep: #0f3155;
  --orange: #e66a1f;
  --teal: #1b9aaa;
  --green: #2f7d59;
  --shadow: 0 20px 48px rgba(20, 33, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  backdrop-filter: blur(14px);
}

.top-strip {
  color: #ffffff;
  background: var(--blue-deep);
  font-size: 0.9rem;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-height: 32px;
}

.strip-inner a {
  font-weight: 700;
}

.partner-login {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.08);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 28px;
}

.brand img {
  width: 118px;
  height: auto;
}

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

.nav-links a {
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 9px 11px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #ffffff;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(620px, calc(100vh - 190px));
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.92) 0%, rgba(15, 49, 85, 0.62) 47%, rgba(15, 49, 85, 0.18) 100%),
    linear-gradient(0deg, rgba(20, 33, 61, 0.46), rgba(20, 33, 61, 0.1));
}

.hero-content {
  display: grid;
  align-content: center;
  min-height: min(620px, calc(100vh - 190px));
  padding: 50px 0 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb36f;
}

.brand-motto {
  max-width: 640px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 900;
}

.page-hero .brand-motto {
  color: #ffdfc2;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 16px 30px rgba(230, 106, 31, 0.32);
}

.button-primary:hover {
  box-shadow: 0 20px 34px rgba(230, 106, 31, 0.42);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button-dark {
  color: #ffffff;
  background: var(--blue-deep);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(680px, 100%);
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 16px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.team-band,
.contact-band {
  padding: 84px 0;
}

.service-band {
  padding: 60px 0 84px;
  background: var(--soft);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 154, 170, 0.34);
  box-shadow: 0 18px 42px rgba(20, 33, 61, 0.12);
}

.service-card-featured {
  grid-column: span 2;
  grid-template-columns: 0.86fr 1fr;
  gap: 24px;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
}

.service-card-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-featured div {
  display: grid;
  align-content: center;
  padding: 28px 28px 28px 0;
}

.service-card span,
.team-points strong,
.contact-link span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.service-card a {
  color: var(--blue);
  font-weight: 900;
}

.vehicle-panel {
  padding: 84px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.96), rgba(23, 79, 138, 0.86)),
    url("https://www.planetbroker.gr/images/asfaleia-autokinitou-planetbroker2.jpg") center/cover;
}

.vehicle-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.vehicle-layout p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.sales4net-shell {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.sales4net-container {
  width: 100%;
  min-width: 750px;
  min-height: 100em;
  background: url("https://sales4net.interlife.gr/images/ajax-loader.gif") top center no-repeat #ffffff;
}

.sales4net-container iframe {
  display: block;
  width: 100%;
  height: 100em;
  border: 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

.team-band {
  background: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.72)),
    url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg") center/cover;
}

.page-hero-health {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.72)),
    url("https://www.planetbroker.gr/images/asfaleia-igeias-planetbroker2.jpg") center/cover;
}

.page-hero-general {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.72)),
    url("https://www.planetbroker.gr/images/asfaleies-metaforon-planetbroker-greece1.jpg") center/cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.72)),
    url("images/about-hero.jpg") center/cover,
    url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg") center/cover;
}

.tools-hero {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.76)),
    url("https://www.planetbroker.gr/images/asfaleia-autokinitou-planetbroker2.jpg") center/cover;
}

.page-hero-inner {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: 72px 0;
}

.page-hero h1,
.vehicle-panel h1,
.contact-band h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.content-band {
  padding: 84px 0;
  background: #ffffff;
}

.content-band-soft {
  background: var(--soft);
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--blue-deep);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.section-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(27, 154, 170, 0.5);
  background: rgba(27, 154, 170, 0.08);
}

.detail-stack {
  display: grid;
  gap: 24px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
}

.detail-media {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.detail-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.detail-body span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.detail-body p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}

.feature-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.coverage-details {
  border: 1px solid rgba(23, 79, 138, 0.18);
  border-radius: 8px;
  background: rgba(244, 247, 251, 0.86);
}

.coverage-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  color: var(--blue-deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.coverage-details summary::-webkit-details-marker {
  display: none;
}

.coverage-details summary::after {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  content: "+";
  flex: 0 0 auto;
}

.coverage-details[open] summary::after {
  content: "-";
}

.coverage-details div {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}

.coverage-details p {
  color: var(--muted);
}

.coverage-details ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.coverage-details li {
  color: var(--ink);
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.quote-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 240px;
  padding: 28px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 49, 85, 0.96), rgba(27, 154, 170, 0.72)),
    url("images/about-quote.jpg") center/cover,
    url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg") center/cover;
  box-shadow: var(--shadow);
}

.quote-panel strong {
  color: #ffb36f;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.05;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.founder-photo-frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 49, 85, 0.92), rgba(27, 154, 170, 0.58)),
    var(--soft);
  box-shadow: var(--shadow);
}

.founder-photo-frame::after {
  position: absolute;
  inset: 24px;
  display: none;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  padding: 20px;
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  content: attr(data-label);
}

.founder-photo-frame.is-missing::after {
  display: grid;
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.founder-photo {
  object-position: center 22%;
}

.founder-layout p {
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.testimonial-card strong {
  color: var(--blue-deep);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.compact-cta {
  padding-top: 72px;
  padding-bottom: 72px;
}

.partners-band {
  padding: 84px 0;
  background: var(--soft);
  overflow: hidden;
}

.partners-grid {
  display: flex;
  gap: 12px;
  width: max-content;
  max-width: none;
  animation: partners-scroll 46s linear infinite;
  will-change: transform;
}

.partners-band:hover .partners-grid {
  animation-play-state: paused;
}

.partners-grid img {
  width: 132px;
  height: 74px;
  flex: 0 0 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.06);
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-grid {
    width: auto;
    max-width: 1140px;
    flex-wrap: wrap;
    animation: none;
  }
}

.tools-visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
}

.tools-visual img {
  width: min(190px, 70%);
  height: auto;
}

.tutorial-list {
  display: grid;
  gap: 14px;
}

.tutorial-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.tutorial-list strong {
  color: var(--blue-deep);
}

.tutorial-list span {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 44px;
  align-items: start;
}

.split-layout p {
  color: var(--muted);
}

.about-vision-layout {
  align-items: center;
}

.about-vision-layout h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 1.38rem;
  line-height: 1.2;
}

.about-vision-layout p {
  max-width: 690px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #ffffff;
}

.about-stats div {
  display: grid;
  place-items: center;
  min-height: 156px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.about-stats strong {
  color: #171b22;
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1;
}

.about-stats span {
  max-width: 150px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.72)),
    url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg") center/cover;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.blog-toolbar h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.blog-toolbar p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  align-content: start;
  min-height: 260px;
  background: #ffffff;
}

.blog-card time,
.blog-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card details {
  display: grid;
  gap: 10px;
}

.blog-card summary {
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.blog-card details p {
  margin: 10px 0 0;
}

.info-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 79, 138, 0.22);
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.09);
}

.info-card h3 {
  color: var(--blue-deep);
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.info-card a {
  color: var(--blue);
  font-weight: 900;
}

.info-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-page-panel {
  padding-top: 70px;
}

.boat-page-panel {
  padding-top: 70px;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.96), rgba(23, 79, 138, 0.84)),
    url("https://www.planetbroker.gr/images/general-insurances/asfaleia-skafon.jpg") center/cover;
}

.contact-page {
  padding-top: 78px;
  padding-bottom: 96px;
}

.team-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.contact-page .contact-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.52fr);
  align-items: start;
}

.team-copy p,
.contact-layout p {
  max-width: 680px;
  color: var(--muted);
}

.team-points {
  display: grid;
  gap: 14px;
}

.team-points div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--soft);
}

.team-points span {
  color: var(--muted);
}

.contact-band {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.98), rgba(23, 79, 138, 0.86)),
    url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg") center/cover;
}

.contact-band .eyebrow {
  color: #ffb36f;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form-card {
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(11, 29, 50, 0.26);
}

.contact-form-card h2 {
  margin: 0 0 2px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.contact-form-card label {
  display: grid;
  gap: 6px;
}

.contact-form-card label span {
  color: #49566b;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid #c6ced9;
  border-radius: 0;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-bottom-color: var(--blue);
}

.contact-form-card ::placeholder {
  color: #a5afbd;
}

.form-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.form-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid #aeb8c6;
}

.form-check span {
  color: #5f6d80;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-submit {
  width: min(220px, 100%);
  margin-top: 4px;
  text-transform: uppercase;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 111, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.contact-link span {
  color: #ffb36f;
}

.contact-link strong {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.contact-link-light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--soft);
}

.contact-link-light:hover {
  border-color: rgba(23, 79, 138, 0.28);
  background: #ffffff;
}

.contact-link-light span {
  color: var(--teal);
}

.needs-prompt[hidden] {
  display: none;
}

.needs-prompt {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(11, 29, 50, 0.54);
  backdrop-filter: blur(8px);
}

.needs-prompt-card {
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 28px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.needs-prompt-card h2 {
  font-size: 1.58rem;
  line-height: 1.12;
}

.needs-prompt-card p {
  margin: 0;
  color: var(--muted);
}

.needs-prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.client-login {
  border-color: rgba(255, 179, 111, 0.5);
  background: rgba(230, 106, 31, 0.22);
}

.client-hero {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.74)),
    url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg") center/cover;
}

.client-page {
  background: #ffffff;
}

.client-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: 38px;
  align-items: start;
}

.client-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.client-copy p {
  max-width: 720px;
  color: var(--muted);
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.benefit-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 900;
}

.benefit-list strong {
  color: var(--blue-deep);
  font-size: 1.08rem;
}

.benefit-list p {
  grid-column: 2;
  margin: 0;
}

.client-register-form {
  position: sticky;
  top: 120px;
}

.client-login-preview,
.client-mini-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.client-login-preview h2,
.client-mini-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.client-login-preview p,
.client-mini-cta p {
  max-width: 760px;
  color: var(--muted);
}

.login-preview-card {
  display: grid;
  gap: 8px;
  min-width: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
}

.login-preview-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.login-preview-card strong {
  color: var(--blue-deep);
  font-size: 1.2rem;
}

.client-mini-band {
  padding-top: 50px;
  padding-bottom: 50px;
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.74)),
    url("https://www.planetbroker.gr/images/asfaleia-zois-planetbroker2.jpg") center/cover;
}

.legal-page {
  display: grid;
  gap: 34px;
}

.notice-panel {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(230, 106, 31, 0.24);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  padding: 22px;
  background: #fff7ed;
}

.notice-panel strong {
  color: var(--blue-deep);
}

.notice-panel p {
  margin: 0;
  color: #6b5b4a;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.legal-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.legal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 79, 138, 0.32);
  box-shadow: 0 18px 40px rgba(20, 33, 61, 0.1);
}

.legal-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card strong {
  color: var(--blue-deep);
  font-size: 1.1rem;
  line-height: 1.25;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
}

.legal-compact-section {
  padding: 42px 0;
}

.legal-compact-heading {
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  align-items: end;
  gap: 18px 34px;
  margin-bottom: 18px;
}

.legal-compact-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.legal-compact-heading h2 {
  max-width: 520px;
  font-size: 1.72rem;
  line-height: 1.12;
}

.legal-compact-heading p {
  font-size: 0.98rem;
}

.legal-grid-compact {
  gap: 10px;
}

.legal-grid-compact .legal-card {
  min-height: 122px;
  padding: 16px;
  box-shadow: none;
}

.legal-grid-compact .legal-card strong {
  font-size: 0.98rem;
}

.legal-grid-compact .legal-card p {
  font-size: 0.9rem;
  line-height: 1.42;
}

.document-stack {
  display: grid;
  gap: 20px;
}

.document-section {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.05);
  scroll-margin-top: 126px;
}

.document-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.document-section p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-list li {
  color: var(--ink);
}

.legal-list a {
  color: var(--blue);
  font-weight: 900;
}

.needs-hero {
  background:
    linear-gradient(90deg, rgba(15, 49, 85, 0.94), rgba(23, 79, 138, 0.76)),
    url("https://www.planetbroker.gr/images/asfaleia-igeias-planetbroker2.jpg") center/cover;
}

.needs-page {
  display: grid;
  gap: 30px;
  background: var(--soft);
}

.needs-form {
  display: grid;
  gap: 18px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.needs-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.05);
}

.needs-form legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  color: var(--blue-deep);
  font-size: 1.15rem;
  font-weight: 900;
}

.needs-form legend span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--orange);
  font-size: 0.85rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label,
.needs-form .form-wide {
  display: grid;
  gap: 7px;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid span {
  color: #4a5870;
  font-size: 0.82rem;
  font-weight: 900;
}

.needs-form input,
.needs-form select,
.needs-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.needs-form textarea {
  resize: vertical;
}

.needs-form input:focus,
.needs-form select:focus,
.needs-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 79, 138, 0.1);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label,
.needs-checks label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}

.choice-grid input,
.needs-checks input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
}

.needs-checks {
  display: grid;
  gap: 10px;
}

.form-note {
  margin: 0;
  color: var(--muted);
}

.form-note a {
  color: var(--blue);
  font-weight: 900;
}

.needs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.result-next-step {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  border: 1px solid rgba(27, 154, 170, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(27, 154, 170, 0.08);
}

.result-next-step p {
  color: var(--muted);
}

.form-result-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background: var(--soft);
}

.form-result-card {
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.form-result-card img {
  width: 128px;
  margin: 0 auto 8px;
}

.form-result-card h1 {
  max-width: none;
  color: var(--blue-deep);
  font-size: 2rem;
  line-height: 1.1;
}

.form-result-card p {
  margin: 0;
  color: var(--muted);
}

.form-result-card .button {
  justify-self: center;
}

.form-result-card.error {
  border-color: rgba(230, 106, 31, 0.42);
}

.admin-page {
  min-height: 100vh;
  background: var(--soft);
}

.admin-shell {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.admin-header {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
}

.admin-header img {
  width: 110px;
}

.admin-header h1 {
  max-width: none;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.admin-header p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.admin-flash,
.admin-empty {
  margin: 0;
  border: 1px solid rgba(27, 154, 170, 0.24);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--blue-deep);
  background: #ffffff;
  font-weight: 800;
}

.admin-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.05);
}

.admin-login-panel {
  width: min(460px, 100%);
  justify-self: center;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-stats article {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.admin-stats strong {
  color: var(--blue-deep);
  font-size: 2.4rem;
  line-height: 1;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 900;
}

.admin-editor,
.admin-draft-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-editor label,
.admin-draft-card label {
  display: grid;
  gap: 7px;
}

.admin-editor label span,
.admin-draft-card label span {
  color: #4a5870;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-editor input,
.admin-editor textarea,
.admin-draft-card input,
.admin-draft-card textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.admin-editor textarea,
.admin-draft-card textarea {
  resize: vertical;
}

.admin-editor input:focus,
.admin-editor textarea:focus,
.admin-draft-card input:focus,
.admin-draft-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 79, 138, 0.1);
}

.admin-draft-list {
  display: grid;
  gap: 18px;
}

.admin-draft-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.admin-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-reject {
  color: var(--blue-deep);
  background: #ffffff;
  border: 1px solid rgba(230, 106, 31, 0.38);
}

.admin-published-list {
  width: 100%;
}

.news-import-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.news-import-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.news-import-copy p:last-child {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.news-import-action {
  display: flex;
  justify-content: flex-end;
}

.news-source-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-source-list a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(23, 79, 138, 0.2);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--blue-deep);
  background: var(--soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-footer {
  padding: 24px 0;
  color: #ffffff;
  background: #0b1d32;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .strip-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 0;
  }

  .main-nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    border-radius: 8px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .service-grid,
  .admin-draft-card,
  .admin-editor,
  .admin-header,
  .admin-stats,
  .blog-list,
  .blog-toolbar,
  .news-import-panel,
  .cards-grid,
  .choice-grid,
  .client-layout,
  .client-login-preview,
  .client-mini-cta,
  .detail-card,
  .form-grid,
  .founder-layout,
  .legal-grid,
  .legal-compact-heading,
  .partners-grid,
  .testimonials-grid,
  .vehicle-layout,
  .team-layout,
  .contact-layout,
  .contact-page .contact-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .service-card-featured img {
    aspect-ratio: 16 / 9;
  }

  .service-card-featured div {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .top-strip span {
    display: none;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    min-height: 610px;
    padding-top: 44px;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 1.02;
  }

  .page-hero h1,
  .vehicle-panel h1,
  .contact-band h1 {
    font-size: 2.12rem;
    line-height: 1.08;
  }

  .page-hero p:last-child {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 1.16rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .service-card {
    padding: 18px;
  }

  .service-band,
  .vehicle-panel,
  .team-band,
  .content-band,
  .contact-band {
    padding: 58px 0;
  }

  .page-hero-inner {
    min-height: 380px;
    padding: 54px 0;
  }

  .info-card {
    padding: 18px;
  }

  .detail-body {
    padding: 22px;
  }

  .detail-media {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tutorial-list article {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
