:root {
  --bg: #f4f7fb;
  --fg: #0c1a33;
  --muted: #5a6578;
  --card: #ffffff;
  --border: rgba(15, 46, 110, 0.1);
  --primary: #0f2e6e;
  --primary-2: #143a8a;
  --accent: #0f96f0;
  --accent-soft: rgba(15, 150, 240, 0.12);
  --warm: #faf6f0;
  --page: min(94vw, 1520px);
  --font: "Noto Sans", "Inter", system-ui, sans-serif;
  --display: "Outfit", "Noto Sans", system-ui, sans-serif;
  --section-py: clamp(3.25rem, 6vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Loader */
#pg-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #eef4fc, #f8fafc);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#pg-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pg-loader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.pg-loader-logo {
  width: 80px; height: 80px; object-fit: contain;
  animation: pg-pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(15, 46, 110, 0.15));
}
.pg-loader-bar { width: 160px; height: 4px; border-radius: 99px; background: rgba(15, 46, 110, 0.1); overflow: hidden; }
.pg-loader-fill {
  height: 100%; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: pg-load 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes pg-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes pg-load { to { width: 100%; } }

.pg-wrap { max-width: var(--page); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2.5rem); }
.pg-page { opacity: 0; transform: translateY(10px); transition: opacity 0.55s ease 0.12s, transform 0.55s ease 0.12s; }
.pg-page.ready { opacity: 1; transform: none; }

/* Topbar — matches novelsoft.gr */
.pg-topbar { background: var(--primary); color: #fff; font-size: 0.78rem; font-weight: 600; }
.pg-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.65rem 0; }
.pg-topbar a { color: #fff; }
.pg-topbar a:hover { opacity: 0.9; text-decoration: underline; }
.pg-topbar-mid { display: none; opacity: 0.9; text-align: center; flex: 1; font-weight: 500; }
.pg-topbar-portal { color: #7ecbff !important; font-weight: 700; }
@media (min-width: 768px) { .pg-topbar-mid { display: block; } }

/* Header */
.pg-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.pg-header.pg-header-scrolled {
  box-shadow: 0 10px 36px -14px rgba(15, 46, 110, 0.14);
}
.pg-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 4.65rem;
}
@media (min-width: 768px) { .pg-header-inner { height: 5rem; } }
.pg-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.pg-logo img {
  height: 2.75rem;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left;
}
@media (min-width: 640px) {
  .pg-logo img { height: 3rem; max-width: 300px; }
}
@media (min-width: 768px) {
  .pg-logo img { height: 3.35rem; max-width: 320px; }
}
.pg-nav { display: none; align-items: center; gap: 0.1rem; }
.pg-nav a {
  padding: 0.5rem 0.8rem; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border-radius: 8px;
}
.pg-nav a:hover { color: var(--primary); background: rgba(15, 46, 110, 0.05); }
.pg-nav a.pg-nav-active { color: var(--primary); background: rgba(15, 46, 110, 0.06); }
.pg-btn-nav { margin-left: 0.5rem; padding: 0.55rem 1.1rem; font-size: 0.75rem; }
@media (min-width: 1024px) { .pg-nav { display: flex; } }

.pg-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .pg-header-actions { display: none; } }

.pg-btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
}

.pg-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 46, 110, 0.2);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
}
.pg-menu-btn svg { width: 1.25rem; height: 1.25rem; }

.pg-mobile-nav {
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}
.pg-mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.25rem;
}
.pg-mobile-nav-inner a {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.pg-mobile-nav-inner a:hover { background: rgba(15, 46, 110, 0.05); }
.pg-mobile-nav-inner .pg-btn { margin-top: 0.5rem; width: 100%; }
@media (min-width: 1024px) { .pg-mobile-nav { display: none !important; } }

#solutions, #services, #sectors, #contact { scroll-margin-top: 6rem; }

/* Buttons */
.pg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; font-family: inherit; font-size: 0.9rem; font-weight: 700;
  border-radius: 8px; border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.pg-btn:active { transform: scale(0.98); }
.pg-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; box-shadow: 0 4px 18px rgba(15, 46, 110, 0.28);
}
.pg-btn-primary:hover { box-shadow: 0 8px 28px rgba(15, 46, 110, 0.35); color: #fff; }
.pg-btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 18px rgba(15, 150, 240, 0.35); }
.pg-btn-accent:hover { filter: brightness(1.05); color: #fff; }
.pg-btn-ghost { background: #fff; border: 1px solid var(--border); color: var(--primary); }
.pg-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.pg-btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.pg-btn-light { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.pg-btn-light:hover { background: rgba(255,255,255,0.2); color: #fff; }
.pg-btn svg { width: 1.05rem; height: 1.05rem; }

/* Section utils — novelsoft pattern */
.pg-section { padding: var(--section-py) 0; }
.pg-section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pg-section-warm { background: var(--warm); }
.pg-section-dark {
  background: linear-gradient(135deg, var(--primary) 0%, #0a224f 100%);
  color: #fff;
}
.pg-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.65rem;
}
.pg-section-dark .pg-label { color: #7ecbff; }
.pg-rule {
  width: 3rem; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin-bottom: 1.1rem;
}
.pg-h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
}
.pg-h2 em, .pg-h2 span { font-style: normal; color: var(--accent); }
.pg-section-dark .pg-h2 span { color: #7ecbff; }
.pg-intro {
  margin: 0 0 2.25rem; max-width: 42rem;
  font-size: 1.08rem; color: var(--muted); line-height: 1.7;
}
.pg-section-dark .pg-intro { color: rgba(255,255,255,0.82); }

/* —— HERO BANNER (pegasus-style big impact) —— */
.pg-hero-banner {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  background: linear-gradient(135deg, #0a224f 0%, var(--primary) 45%, #143a8a 100%);
  color: #fff;
  overflow: hidden;
}
.pg-hero-banner::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(15, 150, 240, 0.2), transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,255,255,0.06), transparent 50%);
}
.pg-hero-banner-grid {
  position: relative;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) { .pg-hero-banner-grid { grid-template-columns: 1.1fr 0.9fr; } }

.pg-hero-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: #7ecbff; margin-bottom: 1rem;
}
.pg-hero-banner h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  margin: 0;
}
.pg-hero-banner h1 strong { color: #7ecbff; font-weight: 800; }
.pg-hero-sub {
  margin: 1.25rem 0 0; max-width: 34rem;
  font-size: 1.12rem; line-height: 1.7; color: rgba(255,255,255,0.88);
}
.pg-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.pg-hero-panel {
  padding: 1.75rem; border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.pg-hero-panel h2 {
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  margin: 0 0 1rem; color: #fff;
}
.pg-value-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.pg-value-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.92rem; color: rgba(255,255,255,0.9); line-height: 1.45;
}
.pg-value-list li::before {
  content: ""; flex-shrink: 0; width: 8px; height: 8px;
  margin-top: 0.45rem; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px rgba(15, 150, 240, 0.6);
}

/* —— SPOTLIGHT (featured solutions like pegasus product cards) —— */
.pg-spotlight-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pg-spotlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pg-spotlight-grid { grid-template-columns: repeat(4, 1fr); } }

.pg-spotlight {
  display: flex; flex-direction: column;
  padding: 1.65rem; border-radius: 14px;
  border: 1px solid var(--border); background: var(--card);
  min-height: 220px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pg-spotlight:hover {
  border-color: rgba(15, 150, 240, 0.4);
  box-shadow: 0 16px 44px -14px rgba(15, 46, 110, 0.2);
  transform: translateY(-3px);
}
.pg-spotlight-icon {
  width: 3rem; height: 3rem; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.1rem;
}
.pg-spotlight h3 {
  font-family: var(--display); font-size: 1.12rem; font-weight: 700;
  margin: 0 0 0.55rem; line-height: 1.25;
}
.pg-spotlight p {
  margin: 0; flex: 1; font-size: 0.92rem; color: var(--muted); line-height: 1.55;
}
.pg-spotlight-cta {
  margin-top: 1.15rem; font-size: 0.85rem; font-weight: 700;
  color: var(--accent);
}
.pg-spotlight:hover .pg-spotlight-cta { text-decoration: underline; }

/* —— SERVICES grid —— */
.pg-grid-3 { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .pg-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pg-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.pg-card {
  padding: 1.5rem; border-radius: 14px;
  border: 1px solid var(--border); background: var(--card);
  border-top: 3px solid var(--accent);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pg-card:nth-child(even) { border-top-color: var(--primary); }
.pg-card:hover {
  box-shadow: 0 14px 40px -14px rgba(15, 46, 110, 0.18);
  transform: translateY(-2px);
}
.pg-card-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.pg-card-icon svg { width: 1.35rem; height: 1.35rem; }
.pg-card h3 { font-family: var(--display); font-size: 1.08rem; font-weight: 700; margin: 0 0 0.5rem; }
.pg-card p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.pg-card ul { margin: 0.7rem 0 0; padding-left: 1.1rem; font-size: 0.85rem; color: var(--muted); }

/* —— INDUSTRY solutions (pegasus-style tiles) —— */
.pg-industry-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .pg-industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pg-industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .pg-industry-grid { grid-template-columns: repeat(4, 1fr); } }

.pg-industry {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.25rem 1.15rem; border-radius: 12px;
  border: 1px solid var(--border); background: #fff;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.pg-industry:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 8px 24px -10px rgba(15, 46, 110, 0.12);
}
.pg-industry-icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.pg-industry-icon svg { width: 1.25rem; height: 1.25rem; }
.pg-industry-body { min-width: 0; }
.pg-industry h4 {
  margin: 0 0 0.35rem; font-size: 0.95rem; font-weight: 700; color: var(--primary);
}
.pg-industry p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

/* —— Philosophy — compact strip —— */
.pg-philosophy-compact {
  padding: 1.25rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pg-pillars-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .pg-pillars-compact { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.pg-pillars-compact li {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(15, 150, 240, 0.15);
}
.pg-pillars-compact strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.pg-pillars-compact span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Legacy philosophy (unused) */
.pg-philosophy-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .pg-philosophy-grid { grid-template-columns: 1fr 1.4fr; align-items: start; } }

.pg-pillars {
  display: grid; gap: 0.85rem;
}
@media (min-width: 520px) { .pg-pillars { grid-template-columns: 1fr 1fr; } }

.pg-pillar {
  padding: 1.15rem; border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.pg-pillar strong {
  display: block; font-size: 0.95rem; font-weight: 800;
  color: #7ecbff; margin-bottom: 0.35rem;
}
.pg-pillar span { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.5; }

.pg-about-text {
  font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.85);
}
.pg-about-text p { margin: 0 0 1rem; }

/* —— Stats —— */
.pg-stats-band {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pg-stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .pg-stats-row { grid-template-columns: repeat(4, 1fr); } }
.pg-stat-big strong {
  display: block; font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800;
  color: var(--primary); line-height: 1;
}
.pg-stat-big span {
  display: block; margin-top: 0.4rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}

/* —— Portfolio —— */
.pg-grid-4 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .pg-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pg-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.pg-ref {
  display: block; padding: 1.35rem; border-radius: 14px;
  border: 1px solid var(--border); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pg-ref:hover {
  border-color: rgba(15, 150, 240, 0.4);
  box-shadow: 0 12px 36px -12px rgba(15, 46, 110, 0.15);
}
.pg-ref-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.pg-ref h4 { margin: 0.45rem 0 0.35rem; font-size: 1.02rem; font-weight: 700; }
.pg-ref p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.pg-ref-link { display: inline-block; margin-top: 0.55rem; font-size: 0.85rem; font-weight: 700; color: var(--accent); }

/* —— Process —— */
.pg-steps { counter-reset: pgstep; }
.pg-step {
  padding: 1.35rem; border-radius: 14px;
  border: 1px solid var(--border); background: #fff;
  counter-increment: pgstep;
}
.pg-step::before {
  content: counter(pgstep, decimal-leading-zero);
  display: block; font-family: var(--display);
  font-size: 1.55rem; font-weight: 800; color: var(--accent);
  margin-bottom: 0.5rem;
}
.pg-step h3 { margin: 0 0 0.4rem; font-size: 1rem; font-weight: 700; }
.pg-step p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* —— Contact — matches main site sizing —— */
.pg-contact {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  background: linear-gradient(180deg, var(--warm) 0%, #fff 55%, rgba(244, 247, 251, 0.6) 100%);
  border-top: 1px solid var(--border);
}
.pg-contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .pg-contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.pg-contact-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.pg-contact-title {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}
.pg-contact-intro {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 32rem;
}
@media (min-width: 768px) {
  .pg-contact-intro { font-size: 1rem; }
}
.pg-contact-links { margin-top: 1.75rem; }
.pg-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.2s;
}
a.pg-contact-item:hover { color: var(--primary); }
.pg-contact-item-static { color: var(--muted); }
.pg-contact-item-icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 2px 8px -4px rgba(15, 46, 110, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.pg-contact-item-icon svg { width: 1.25rem; height: 1.25rem; }
.pg-contact-note {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

/* Legacy interest form */
.pg-interest {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, var(--warm) 0%, #fff 100%);
}
.pg-interest-grid {
  display: grid; gap: 2.5rem; align-items: start;
}
@media (min-width: 900px) { .pg-interest-grid { grid-template-columns: 0.95fr 1.05fr; } }

.pg-contact-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1.1rem; margin-bottom: 0.65rem;
  border-radius: 10px; background: #fff; border: 1px solid var(--border);
  font-weight: 700; font-size: 0.95rem; color: var(--primary);
  transition: border-color 0.2s, transform 0.15s;
}
.pg-contact-link:hover { border-color: var(--accent); transform: translateX(3px); color: var(--accent); }
.pg-contact-link svg { width: 1.15rem; height: 1.15rem; color: var(--accent); }

.pg-form-card {
  padding: 1.5rem; border-radius: 8px;
  border: 1px solid rgba(15, 46, 110, 0.12); background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 52px -28px rgba(15, 46, 110, 0.22);
}
@media (min-width: 640px) { .pg-form-card { padding: 2rem; } }
.pg-form { display: grid; gap: 1.1rem; }
.pg-form-row { display: grid; gap: 0.85rem; }
@media (min-width: 520px) { .pg-form-row { grid-template-columns: 1fr 1fr; } }
.pg-field label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--fg); margin-bottom: 0.4rem;
}
.pg-field input, .pg-field select, .pg-field textarea {
  width: 100%; padding: 0.72rem 0.9rem;
  font-family: inherit; font-size: 0.95rem;
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
}
.pg-field input:focus, .pg-field select:focus, .pg-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 150, 240, 0.14);
}
.pg-field textarea { min-height: 120px; resize: vertical; }
.pg-form .pg-btn { width: 100%; height: 2.75rem; font-size: 15px; }
@media (min-width: 640px) { .pg-form .pg-btn { width: auto; min-width: 11rem; } }
.pg-form-status { font-size: 0.88rem; font-weight: 600; text-align: center; min-height: 1.3rem; }
.pg-form-status.ok { color: #15803d; }
.pg-form-status.err { color: #b91c1c; }

.pg-seo { padding: 1.25rem 0 1.75rem; background: #fff; border-top: 1px solid var(--border); }
.pg-seo p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.6; max-width: 54rem; }
.pg-seo a { color: var(--accent); font-weight: 600; }

/* Footer — matches novelsoft.gr main site */
.pg-footer {
  border-top: 1px solid rgba(15, 46, 110, 0.12);
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 0;
}
.pg-footer-top {
  display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 768px) {
  .pg-footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pg-footer-brand {
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 640px) {
  .pg-footer-brand { flex-direction: row; align-items: center; gap: 1.25rem; }
}
.pg-footer-brand img {
  height: 2.25rem; width: auto; max-width: 220px;
  object-fit: contain; object-position: left;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
@media (min-width: 640px) {
  .pg-footer-brand img { height: 2.5rem; max-width: 260px; }
}
@media (min-width: 768px) {
  .pg-footer-brand img { height: 2.75rem; max-width: 280px; }
}
.pg-footer-tagline {
  margin: 0; max-width: 22rem;
  font-size: 0.875rem; line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.pg-footer-nav {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.pg-footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.pg-footer-nav a:hover { color: #fff; }
.pg-footer-sep {
  display: none; width: 1px; height: 0.75rem;
  background: rgba(255, 255, 255, 0.3);
}
@media (min-width: 640px) { .pg-footer-sep { display: inline-block; } }
.pg-footer-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: background 0.2s;
}
.pg-footer-social:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.pg-footer-social svg { width: 0.9rem; height: 0.9rem; }
.pg-footer-legal {
  margin: 2rem 0 0; max-width: 52rem;
  font-size: 11px; line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}
.pg-footer-divider {
  margin-top: 1rem; max-width: 52rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.pg-footer-copy {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.pg-fab { display: none !important; }

.pg-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 70;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 46, 110, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
}
.pg-scroll-top:hover { transform: translateY(-2px) scale(1.04); }
.pg-scroll-top svg { width: 1.25rem; height: 1.25rem; }
.pg-scroll-top[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pg-page { transition: none; opacity: 1; transform: none; }
  .pg-loader-logo { animation: none; }
  .pg-loader-fill { width: 100%; animation: none; }
  .pg-card:hover, .pg-spotlight:hover, .pg-ref:hover { transform: none; }
}
