/* __WHITEPAGE_V9__ site=sconnectonline.gr.com generated=2026-05-08 palette=ruby-slate-vanilla */
:root {
  --color-primary: #7a1a2e;
  --color-primary-dark: #4d0f1b;
  --color-primary-light: #a83248;
  --color-accent: #3a4556;
  --color-accent-light: #5a6a80;
  --color-surface: #f5f0e8;
  --color-surface-alt: #ede6da;
  --color-text: #1a1a22;
  --color-text-muted: #5c6068;
  --color-white: #ffffff;
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }

/* ========== HEADER ========== */
.c-header {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.5rem;
}
.c-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.c-header__logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.015em;
}
.c-header__logo span { color: var(--color-accent); }
.c-header__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.c-header__tag {
  display: inline-block;
  background: var(--color-surface);
  color: var(--color-primary);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.c-header__tag:hover { background: var(--color-primary); color: var(--color-white); }
.c-header__cta {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}
.c-header__cta:hover { background: var(--color-accent-light); color: var(--color-white); }

@media (max-width: 768px) {
  .c-header__inner { flex-direction: column; text-align: center; }
  .c-header__tags { justify-content: center; }
}

/* ========== HERO ========== */
.c-hero {
  position: relative;
  min-height: 50vh;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 60%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3rem 1.5rem;
}
.c-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.c-hero--large {
  min-height: 60vh;
  padding: 4rem 1.5rem;
}
.c-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
}
.c-hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.c-hero__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 1.75rem;
}
.c-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.c-hero__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: var(--transition);
}
.c-hero__btn--primary {
  background: var(--color-white);
  color: var(--color-primary);
}
.c-hero__btn--primary:hover { background: var(--color-surface); }
.c-hero__btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.c-hero__btn--ghost:hover { background: rgba(255,255,255,0.1); }

.c-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 1;
}
.c-hero__feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  color: var(--color-white);
}
.c-hero__featureTitle {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}
.c-hero__featureBody { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

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

/* ========== TRUST ========== */
.c-trust {
  background: var(--color-surface);
  padding: 2rem 1.5rem;
  text-align: center;
}
.c-trust__strip {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.c-trust__item {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

/* ========== ZIGZAG ========== */
.c-zigzag {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.c-zigzag__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.c-zigzag__item:last-child { border-bottom: none; }
.c-zigzag__item--reverse .c-zigzag__image { order: 1; }
.c-zigzag__image {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-zigzag__image svg { width: 60%; max-width: 200px; }
.c-zigzag__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.c-zigzag__body {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.c-zigzag__link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .c-zigzag__item,
  .c-zigzag__item--reverse { grid-template-columns: 1fr; }
  .c-zigzag__item--reverse .c-zigzag__image { order: -1; }
}

/* ========== QUOTES SCROLL ========== */
.c-quotes-scroll {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.c-quotes-scroll__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.c-quotes-scroll__strip {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}
.c-quotes-scroll__item {
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.c-quotes-scroll__text {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.c-quotes-scroll__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ========== FAQ SCROLL ========== */
.c-faq-scroll {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.c-faq-scroll__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.c-faq-scroll__item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.c-faq-scroll__item:last-child { border-bottom: none; }
.c-faq-scroll__q {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-text);
  margin-bottom: 0.375rem;
}
.c-faq-scroll__a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ========== CTA ========== */
.c-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.c-cta__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.c-cta__body {
  color: rgba(255,255,255,0.82);
  max-width: 550px;
  margin: 0 auto 1.75rem;
  font-size: 1.0625rem;
}
.c-cta__btn {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 0.875rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.c-cta__btn:hover { background: var(--color-surface); }

/* ========== ANCHOR PROSE ========== */
.c-anchor-prose {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.c-anchor-prose__body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.c-anchor-prose__body p { margin-bottom: 1.25rem; }
.c-anchor-prose__body a {
  font-weight: 600;
  color: var(--color-primary);
}

/* ========== FOOTER ========== */
.c-footer {
  background: var(--color-accent);
  color: rgba(255,255,255,0.78);
  padding: 3.5rem 1.5rem 2rem;
}
.c-footer__inner { max-width: var(--max-width); margin: 0 auto; }
.c-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.c-footer__col { }
.c-footer__colTitle {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.c-footer__col a {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.8125rem;
  padding: 0.25rem 0;
  text-decoration: none;
  transition: var(--transition);
}
.c-footer__col a:hover { color: var(--color-white); }
.c-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
}
.c-footer__bottom a { color: rgba(255,255,255,0.58); }
.c-footer__bottom a:hover { color: var(--color-white); }
.c-footer__disclaimer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .c-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .c-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .c-footer__grid { grid-template-columns: 1fr; }
}

/* ========== BREADCRUMBS ========== */
.o-breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.o-breadcrumbs a { color: var(--color-text-muted); }
.o-breadcrumbs a:hover { color: var(--color-primary); }
.o-breadcrumbs__sep { margin: 0 0.5rem; }

/* ========== SUB-PAGE HERO ========== */
.c-hero--sub {
  min-height: 22vh;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}
.c-hero--sub .c-hero__content { max-width: 700px; }
.c-hero--sub .c-hero__title { font-size: clamp(1.5rem, 3vw, 2.25rem); }

/* ========== CONTENT ========== */
.o-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.o-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 2.25rem 0 0.5rem;
}
.o-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 1.75rem 0 0.375rem;
}
.o-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.o-content ul, .o-content ol {
  color: var(--color-text-muted);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

/* ========== DATA TABLE ========== */
.o-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}
.o-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.o-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.o-table tr:nth-child(even) { background: var(--color-surface); }

/* ========== RELATED ========== */
.o-related {
  background: var(--color-surface);
  padding: 2.5rem 1.5rem;
}
.o-related__inner { max-width: var(--max-width); margin: 0 auto; }
.o-related__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.o-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.o-related__item {
  background: var(--color-white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.o-related__item:hover { box-shadow: var(--shadow-md); }
.o-related__item a { font-weight: 600; font-size: 0.9375rem; }

/* ========== UTILITIES ========== */
.u-textCenter { text-align: center; }
.u-mt-xl { margin-top: 2rem; }
.is-active { color: var(--color-primary) !important; font-weight: 700; }
.is-hidden { display: none; }

/* ========== PRINT ========== */
@media print {
  .c-header, .c-footer, .c-cta, .c-hero { display: none; }
  body { font-size: 12pt; color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
