/* __WHITEPAGE_V8__ site=veridiancu.gr.com generated=2026-04-28 palette=steel-amber */

/* ===== V8 Panel-Based — Manrope 400-800, [role] attribute selectors ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2c4c6b;
  --primary-light: #3d6a94;
  --primary-dark: #1b334a;
  --accent: #c75b2a;
  --accent-light: #e07a4a;
  --bg: #faf8f5;
  --bg-alt: #f0ede6;
  --bg-dark: #1e1e24;
  --text: #2d2d33;
  --text-muted: #6b6b73;
  --text-light: #9a9aa3;
  --white: #ffffff;
  --border: #e0dcd4;
  --border-light: #eeeae4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --radius: 6px;
  --radius-lg: 12px;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --rail-width: 260px;
  --max-width: 1100px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* ===== Header [role="banner"] ===== */
[role="banner"] {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}
[role="banner"] .header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
[role="banner"] .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  text-decoration: none;
}
[role="banner"] .brand:hover { text-decoration: none; color: var(--primary); }
[role="banner"] .brand svg { width: 36px; height: 36px; flex-shrink: 0; }
[role="banner"] [aria-label="primary"] {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
}
[role="banner"] [aria-label="primary"] a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
[role="banner"] [aria-label="primary"] a:hover,
[role="banner"] [aria-label="primary"] a[aria-current="page"] {
  background: var(--bg-alt);
  color: var(--primary);
  text-decoration: none;
}
[role="banner"] .sign-in-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}
[role="banner"] .sign-in-btn:hover { background: var(--primary-light); text-decoration: none; }

/* Mobile header toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 0.25rem;
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  [role="banner"] [aria-label="primary"] {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  [role="banner"] [aria-label="primary"].is-open { display: flex; }
}

/* ===== Layout: left-rail + main ===== */
.layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--rail-width) 1fr;
  min-height: calc(100vh - 200px);
}
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }
  [role="navigation"].left-rail {
    display: none;
  }
}

/* ===== Left Rail [role="navigation"] ===== */
.left-rail {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 70px;
  align-self: start;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.left-rail .rail-brand {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
  font-size: 1.1rem;
}
.left-rail .rail-section {
  margin-bottom: 1.5rem;
}
.left-rail .rail-section-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  font-weight: 600;
}
.rail-link {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.12s, color 0.12s;
  border-left: 3px solid transparent;
  margin-bottom: 1px;
}
.rail-link:hover {
  background: var(--bg-alt);
  color: var(--primary);
  text-decoration: none;
}
.rail-link[aria-current="page"] {
  background: var(--bg-alt);
  color: var(--primary);
  font-weight: 600;
  border-left-color: var(--accent);
}
.rail-cta {
  display: block;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
}
.rail-cta:hover { background: var(--accent-light); text-decoration: none; }

/* ===== Main Content [role="main"] ===== */
[role="main"] {
  padding: 0;
}

/* ===== Panel Components ===== */
.panel {
  padding: 2.5rem 2rem;
}
.panel--dark {
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.panel--dark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 10px
  );
  border-radius: 50%;
}
.panel--dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.panel--dark > * { position: relative; z-index: 1; }
.panel--dark .panel-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  max-width: 650px;
}
.panel--dark .panel-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.panel--dark .panel-cta {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.panel--dark .btn-primary {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.panel--dark .btn-primary:hover { background: var(--accent-light); text-decoration: none; }
.panel--dark .btn-ghost {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.panel--dark .btn-ghost:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.panel--dark .accent-bars {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 3px,
    transparent 3px,
    transparent 6px
  );
}
/* Sub-page hero */
.panel--dark.panel-hero-sub .panel-title {
  font-size: 1.8rem;
}
.panel--dark.panel-hero-sub {
  padding: 2rem 2rem;
}

.panel--pattern {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
}
.panel--pattern .panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.panel--pattern .panel-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 650px;
}
.panel--pattern .panel-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.panel--pattern .panel-content p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.panel--pattern .sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.sub-grid-item {
  background: var(--bg);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s;
}
.sub-grid-item:hover { box-shadow: var(--shadow-sm); }
.sub-grid-item svg { width: 32px; height: 32px; margin: 0 auto 0.5rem; color: var(--primary); }
.sub-grid-item .sub-grid-label { font-weight: 600; font-size: 0.88rem; color: var(--primary-dark); }
.sub-grid-item .sub-grid-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ===== Regulated By Panel ===== */
.panel.regulated-by {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.regulated-by .reg-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 600px) {
  .regulated-by .reg-content { grid-template-columns: 1fr; }
}
.regulated-by .reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.reg-badge svg { width: 16px; height: 16px; color: var(--primary); }
.regulated-by .reg-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Quotes Strip ===== */
.panel.quotes-strip {
  background: var(--white);
  padding: 2rem;
  border-bottom: 1px solid var(--border-light);
}
.quotes-strip .quotes-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.quote-box {
  background: var(--bg);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.quote-box blockquote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.6rem;
}
.quote-box .quote-attrib {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== Collapsible FAQ ===== */
.panel.collapsible-faq {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.collapsible-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.collapsible-card summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-dark);
  user-select: none;
}
.collapsible-card summary::-webkit-details-marker { display: none; }
.collapsible-card summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}
.collapsible-card[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.collapsible-card .card-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  padding: 0.75rem 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 0.4rem; color: var(--text-light); }

/* ===== Data Table ===== */
.data-table-wrap {
  margin: 1.5rem 0;
  overflow-x: auto;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table thead th {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}
.data-table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-light);
}
.data-table tbody tr:nth-child(even) { background: var(--bg); }
.data-table tbody tr:hover { background: var(--bg-alt); }

/* ===== Related Services ===== */
.related-services {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.related-services h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}
.related-services .related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.4rem 1rem;
}
.related-services .related-links a {
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: var(--primary);
}

/* ===== Content prose ===== */
.content-prose {
  padding: 1.5rem 2rem 2.5rem;
  max-width: 750px;
}
.content-prose h1 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.content-prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 2rem 0 0.5rem;
}
.content-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.4rem;
}
.content-prose p {
  margin-bottom: 0.9rem;
  line-height: 1.7;
  color: var(--text);
}
.content-prose ul, .content-prose ol {
  margin: 0.75rem 0 1rem 1.5rem;
}
.content-prose li { margin-bottom: 0.35rem; line-height: 1.6; }
.content-prose .zero-click {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ===== Footer [role="contentinfo"] ===== */
[role="contentinfo"] {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  margin-top: 0;
}
[role="contentinfo"] .footer-row {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
[role="contentinfo"] .footer-row:last-child { border-bottom: none; }
.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 400px;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.footer-nav-grid .footer-col-title {
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.footer-nav-grid a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  padding: 0.2rem 0;
  transition: color 0.15s;
}
.footer-nav-grid a:hover { color: var(--accent-light); text-decoration: none; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }
.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.footer-badges .badge-item {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== Content visibility & performance ===== */
.panel--pattern, .panel.collapsible-faq, [role="contentinfo"] { content-visibility: auto; contain-intrinsic-size: 400px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media print {
  .left-rail, [role="banner"], .panel--dark::before, .panel--dark::after { display: none !important; }
  .layout { display: block; }
  [role="main"] { max-width: 100%; }
}
