/* ═══════════════════════════════════════════════════════════════════
   Constatator ONRC – Main Stylesheet
   Color palette: Royal Blue + Gold (Romanian official style)
   Mobile-first, system fonts, PageSpeed 100%
   ═══════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────────────── */
:root {
  --green:       #1A3C78;
  --green-dk:    #102550;
  --green-md:    #2D5CB8;
  --green-lt:    #E8EEF7;
  --gold:        #C9971C;
  --gold-lt:     #F5E7C0;
  --white:       #FFFFFF;
  --bg:          #F5F7FA;
  --surface:     #FFFFFF;
  --dark:        #0D1420;
  --text:        #1A2035;
  --muted:       #4A5568;
  --border:      #CBD5E1;
  --border-lt:   #E2E8F4;
  --error:       #C0392B;
  --error-lt:    #FDECEA;
  --warn:        #C9971C;
  --warn-lt:     #FEF9EC;

  --r-sm:  6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(13,20,32,.08);
  --shadow-md: 0 4px 16px rgba(13,20,32,.10);
  --shadow-lg: 0 8px 32px rgba(13,20,32,.12);

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui,
          'Helvetica Neue', Arial, sans-serif;

  --max-w: 1180px;
  --gap:    24px;
  --header-h: 68px;
  --trans: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; color: var(--dark); }

/* ── Typography ─────────────────────────────────────────────────── */
h1 { font-size: clamp(1.55rem, 5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem,  3vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--muted); }
.lead { font-size: 1.1rem; color: var(--muted); line-height: 1.75; }
small { font-size: .825rem; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: 64px; }
.section--sm { padding-block: 40px; }
.section--lg { padding-block: 96px; }
.section--bg { background: var(--green-lt); }
.section--dark { background: var(--dark); color: var(--white); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ── Scroll animations ──────────────────────────────────────────── */
.anim-hidden  { opacity: 0; transform: translateY(20px); transition: opacity .4s ease, transform .4s ease; }
.anim-visible { opacity: 1; transform: translateY(0); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: var(--gap); }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: var(--gap); }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: var(--gap); }

/* ── Section header ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header .overline {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

/* ── Intermediary Notice Banner ─────────────────────────────────── */
.intermediary-notice {
  background: #FFF9E6;
  border-bottom: 1px solid #E8D9A0;
}

/* ── Header / Nav ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo svg { width: 36px; height: 36px; }

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: background var(--trans), color var(--trans);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--green-lt);
  color: var(--green);
  text-decoration: none;
}

.nav-cta { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--trans);
}
.hamburger:hover { background: var(--green-lt); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  padding: 24px 20px;
  z-index: 99;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border-lt);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--r-md);
  display: block;
  transition: background var(--trans);
}
.mobile-nav a:hover { background: var(--green-lt); color: var(--green); text-decoration: none; }
.mobile-nav .btn { margin-top: 12px; text-align: center; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; align-items: center; gap: 8px; }
  .hamburger { display: none; }
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-size: .925rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1.3;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: #000;
  color: var(--white);
  border-color: #C9971C;
}
.btn-gold:hover {
  background: #b5861a;
  border-color: #b5861a;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green-lt); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--green-lt); }

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm { padding: 7px 14px; font-size: .825rem; }
.btn-full { width: 100%; }
.btn-icon { padding: 10px; border-radius: var(--r-md); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 60%, #070e1d 100%);
  color: var(--white);
  padding-block: 80px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero-content .lead { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Hero bullet list ───────────────────────────────────────── */
.hero-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  font-weight: 500;
}
.hero-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #C9971C;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card .card-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Hero package list ──────────────────────────────────────── */
.hero-pkg-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.hero-pkg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--green-lt);
  border-radius: 8px;
  font-size: .85rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background .15s, border-color .15s;
}
.hero-pkg:hover { background: #d4e0f4; border-color: var(--green); }
.hero-pkg--featured {
  background: #EEF4FF;
  border-color: var(--green);
}
.hero-pkg--featured:hover { background: #dbeafe; }
.hero-cui--invalid { border-color: #e05 !important; box-shadow: 0 0 0 2px rgba(238,0,85,.15); }
.hero-pkg-info { display: flex; flex-direction: column; gap: 2px; }
.hero-pkg-info strong { color: var(--dark); font-weight: 600; }
.hero-pkg-info small { color: var(--muted); font-size: .72rem; }
.hero-pkg--featured .hero-pkg-info small { color: var(--green); font-weight: 600; }
.hero-pkg-price { color: var(--green); font-size: .95rem; font-weight: 700; white-space: nowrap; }

@media (min-width: 900px) {
  .hero { padding-block: 100px 88px; }
  .hero-inner { grid-template-columns: 1fr 420px; gap: 60px; }
}

/* ── Stats bar ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  padding-block: 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-lt);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 16px 24px;
  text-align: center;
}
.stat-item .stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-item .stat-lbl {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── How it works ───────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  gap: 40px 24px;
  counter-reset: steps;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,60,120,.3);
}
.step h3 { color: var(--dark); margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Benefits ───────────────────────────────────────────────────── */
.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border-lt);
  transition: box-shadow var(--trans), transform var(--trans);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.benefit-card p { font-size: .9rem; margin: 0; }

/* ── Pricing ────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  gap: var(--gap);
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 2px solid var(--border);
  position: relative;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card .plan-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.pricing-card .plan-delivery {
  font-size: .825rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.pricing-card .plan-delivery svg { width: 14px; height: 14px; color: var(--green); }
.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-vat { font-size: .8rem; color: var(--muted); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  color: var(--muted);
}
.plan-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A3C78' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card.featured { transform: scale(1.02); }
  .pricing-card.featured:hover { transform: scale(1.02) translateY(-3px); }
}

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: var(--gap);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border-lt);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: var(--green-lt);
  font-family: Georgia, serif;
}
.testimonial-card .stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; display: block; }
.testimonial-card .text { font-size: .95rem; color: var(--muted); margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 10px; }
.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-card .author-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.testimonial-card .author-role { font-size: .8rem; color: var(--muted); }

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  transition: background var(--trans);
}
.faq-question:hover { background: var(--green-lt); }
.faq-question[aria-expanded="true"] { color: var(--green); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green);
  transition: transform var(--trans);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 32px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.82); margin-bottom: 28px; max-width: 520px; margin-inline: auto; }
.cta-banner p:last-of-type { margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Blog preview ───────────────────────────────────────────────── */
.blog-grid { display: grid; gap: var(--gap); }
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-lt);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--green-lt);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 2.5rem;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .78rem;
  color: var(--muted);
}
.blog-tag {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: .75rem;
  font-weight: 600;
}
.blog-card h3 { font-size: 1rem; color: var(--dark); line-height: 1.4; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--green); text-decoration: none; }
.blog-card p { font-size: .875rem; margin: 0; flex: 1; }
.blog-card .read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card .read-more:hover { text-decoration: underline; }

@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Trust badges ───────────────────────────────────────────────── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item svg { color: var(--green); width: 20px; height: 20px; flex-shrink: 0; }

/* ── Forms ──────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--dark); }
.form-label .req { color: var(--error); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,60,120,.12);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: var(--error); }
.form-hint { font-size: .8rem; color: var(--muted); }
.form-error { font-size: .8rem; color: var(--error); display: none; }
.form-error.show { display: block; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--green); margin-top: 2px; flex-shrink: 0; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

/* Input with button (CUI lookup) */
.input-group { display: flex; gap: 0; }
.input-group .form-input { border-radius: var(--r-md) 0 0 var(--r-md); border-right: none; flex: 1; }
.input-group .btn { border-radius: 0 var(--r-md) var(--r-md) 0; white-space: nowrap; padding-inline: 16px; }

/* CUI result */
.cui-result {
  background: var(--green-lt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: none;
  gap: 8px;
  align-items: flex-start;
}
.cui-result.show { display: flex; }
.cui-result svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.cui-result-text small { display: block; font-size: .78rem; color: var(--muted); }
.cui-result-text strong { font-size: .9rem; }

/* ── Order form steps ───────────────────────────────────────────── */
.order-page { background: var(--bg); min-height: calc(100vh - var(--header-h)); padding-block: 40px; }
.order-wrap { display: grid; gap: 24px; }
@media (min-width: 1024px) { .order-wrap { grid-template-columns: 1fr 340px; align-items: start; } }

.order-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-lt);
  overflow: hidden;
}
.order-card-header {
  background: var(--green-lt);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.order-card-header h2 { font-size: 1.2rem; color: var(--dark); }
.order-card-body { padding: 24px; }

.step-indicators {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.step-ind {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border-right: 1.5px solid var(--border);
  transition: background var(--trans), color var(--trans);
}
.step-ind:last-child { border-right: none; }
.step-ind.active { background: var(--green); color: var(--white); }
.step-ind.done { background: var(--green-lt); color: var(--green); }

.form-step { display: none; }
.form-step.active { display: block; }

/* Order summary card */
.order-summary-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-lt);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.order-summary-card .summary-header {
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  font-weight: 700;
  font-size: .95rem;
}
.order-summary-card .summary-body { padding: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  border-bottom: 1px solid var(--border-lt);
  font-size: .875rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .lbl { color: var(--muted); }
.summary-row .val { font-weight: 600; color: var(--dark); }
.summary-total { background: var(--green-lt); border-radius: var(--r-md); padding: 14px 16px; margin-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.summary-total .t-label { font-weight: 700; color: var(--dark); }
.summary-total .t-value { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.summary-guarantees { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.summary-guarantee { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); }
.summary-guarantee svg { color: var(--green); flex-shrink: 0; }


/* ── Status page ────────────────────────────────────────────────── */
.status-card { max-width: 540px; margin-inline: auto; }
.status-result {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-lt);
  padding: 28px;
  margin-top: 24px;
  display: none;
}
.status-result.show { display: block; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
}
.status--success { background: #d4edda; color: #155724; }
.status--info    { background: #d1ecf1; color: #0c5460; }
.status--warning { background: #fff3cd; color: #856404; }
.status--danger  { background: #f8d7da; color: #721c24; }
.status--neutral { background: #e2e3e5; color: #383d41; }

/* ── Blog page ──────────────────────────────────────────────────── */
.blog-page { background: var(--bg); padding-block: 48px; }
.blog-layout { display: grid; gap: 32px; }
.blog-main { display: flex; flex-direction: column; gap: var(--gap); }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr 300px; }
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-lt);
  overflow: hidden;
}
.sidebar-card-header {
  background: var(--green-lt);
  padding: 12px 16px;
  font-weight: 700;
  font-size: .875rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.sidebar-card-body { padding: 16px; }

.cat-list { display: flex; flex-direction: column; gap: 4px; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: var(--muted);
  transition: background var(--trans);
}
.cat-list a:hover { background: var(--green-lt); color: var(--green); text-decoration: none; }
.cat-list a span { background: var(--green-lt); color: var(--green); border-radius: 100px; font-size: .75rem; padding: 1px 7px; font-weight: 600; }

/* Blog post */
.post-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a1535 60%, #0d1b3e 100%);
  padding-block: 40px 48px;
  color: var(--white);
}
.post-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.5rem, 4vw, 2.2rem); line-height: 1.2; }
.post-meta-row { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .85rem; color: rgba(255,255,255,.7); }
.post-meta-row a { color: inherit; }
.mobile-nav .btn {color: #fff !important;}
.mobile-nav .btn:hover {color: var(--green) !important;}
/* Breadcrumb inside post-hero / dark sections */
.post-breadcrumb { margin-bottom: 20px; }
.post-breadcrumb a,
.post-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.post-hero .breadcrumb a:hover,
.post-breadcrumb a:hover { color: var(--white); text-decoration: none; }
.post-hero .breadcrumb .sep,
.post-breadcrumb .sep { color: rgba(255,255,255,.25); }
.post-hero .breadcrumb .current,
.post-breadcrumb .current { color: rgba(255,255,255,.88); font-weight: 500; }
.post-breadcrumb { color: rgba(255,255,255,.6); }

/* Post category badge */
.post-cat-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(201,151,28,.2);
  color: var(--gold);
  border: 1px solid rgba(201,151,28,.35);
  text-decoration: none;
  transition: background var(--trans);
}
.post-cat-badge:hover { background: rgba(201,151,28,.35); text-decoration: none; }

.post-body {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.post-body h2, .post-body h3 { color: var(--dark); margin-top: 2em; margin-bottom: .5em; }
.post-body p { margin-bottom: 1em; color: var(--muted); }
.post-body ul, .post-body ol { margin-bottom: 1em; padding-left: 1.5em; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: .4em; color: var(--muted); }
.post-body a { color: var(--green); }
.post-body strong { color: var(--dark); }
.post-body blockquote {
  border-left: 4px solid var(--green);
  padding: 12px 20px;
  margin-block: 24px;
  background: var(--green-lt);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--dark);
  font-style: italic;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green); text-decoration: none; }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ── Page hero (inner pages) ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  padding-block: 48px 40px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero .lead { color: rgba(255,255,255,.8); margin: 0; }
.page-hero .breadcrumb { color: rgba(255,255,255,.65); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-hero .breadcrumb .current { color: rgba(255,255,255,.9); }

/* ── Alerts ─────────────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: .9rem;
}
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: var(--error-lt); color: var(--error); border: 1px solid #f5c6cb; }
.alert-warning { background: var(--warn-lt); color: #856404; border: 1px solid #ffeeba; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75) !important;
  padding-block: 56px 24px;
  font-size: .875rem;
}
.site-footer h2 { padding-bottom: 20px; }
.footer-col h2 { color: #ECF0F1;}
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand .logo:hover { text-decoration: none; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .875rem; margin-bottom: 14px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.65); transition: color var(--trans); }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.65); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--green-md); flex-shrink: 0; margin-top: 2px; }
.footer-certifications {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.footer-certifications__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-certification {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 6px 10px;
  height: 50px;
  box-sizing: border-box;
}
.footer-certification--wide {
  min-width: 210px;
  padding: 3px 7px;
}
.footer-certification img {
  display: block;
  max-height: 42px;
  width: auto;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); text-decoration: none; }

@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (max-width: 600px) { .footer-certifications__row { justify-content: center; } }

/* ── Cards / utility ────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-lt);
  padding: 24px;
}

/* ── Pagination ─────────────────────────────────────────────────── */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  text-decoration: none !important;
}
.page-link:hover { background: var(--green-lt); border-color: var(--green); color: var(--green); }
.page-link.current { background: var(--green); border-color: var(--green); color: var(--white); }
.page-link.disabled { opacity: .4; pointer-events: none; }

/* ── Spinner ────────────────────────────────────────────────────── */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Back to top ────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-2px); background: var(--green-dk); }
.back-to-top svg { width: 20px; height: 20px; display: block; margin: 0 auto; }

/* ── GDPR Cookie Banner (GCM v2) ─────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #0d1b2a;
  color: #fff;
  padding: 16px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  font-size: .88rem;
  font-family: var(--font);
}
#cookie-banner.cb-visible { transform: translateY(0); }
.cb-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cb-text { flex: 1; min-width: 220px; }
.cb-text strong { display: block; margin-bottom: 4px; font-size: .95rem; }
.cb-text p { color: rgba(255,255,255,.7); margin: 0; font-size: .82rem; line-height: 1.5; }
.cb-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.cb-btn {
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity .2s;
}
.cb-btn-primary { background: var(--gold); color: var(--dark); }
.cb-btn-primary:hover { opacity: .9; }
.cb-btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.cb-btn-ghost:hover { background: rgba(255,255,255,.18); }
.cb-btn-sm { padding: 7px 14px; font-size: .8rem; }
.cb-panel {
  max-width: var(--max-w);
  margin: 14px auto 0;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cb-panel[hidden] { display: none; }
.cb-toggle-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cb-toggle-row div { flex: 1; }
.cb-toggle-row div strong { display: block; font-size: .84rem; }
.cb-toggle-row div span { color: rgba(255,255,255,.6); font-size: .78rem; }
.cb-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cb-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,.2);
  border-radius: 34px;
  transition: .3s;
}
.cb-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
}
.cb-switch input:checked + .cb-slider { background: var(--gold); }
.cb-switch input:checked + .cb-slider::before { transform: translateX(20px); }
.cb-switch-disabled { opacity: .5; pointer-events: none; }
@media (max-width: 600px) {
  .cb-inner { flex-direction: column; align-items: flex-start; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
}

/* ── Utility ────────────────────────────────────────────────────── */
.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; }
.hidden { display: none !important; }
.visible { display: block !important; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.w-full { width: 100%; }
.rounded { border-radius: var(--r-md); }
.divider { border: none; border-top: 1px solid var(--border-lt); margin-block: 20px; }
.green { color: var(--green); }
.gold  { color: var(--gold); }
.muted { color: var(--muted); }

/* ── Service pages ───────────────────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a1535 60%, #0d1b3e 100%);
  padding-block: 32px 40px;
  color: var(--white);
}
@media (min-width: 900px) {
  .service-hero { padding-block: 56px 64px; }
}
.service-hero-inner {
  display: grid;
  gap: 28px;
  align-items: start;
}
/* Order card first on mobile */
.service-order-card { order: -1; }
@media (min-width: 900px) {
  .service-hero-inner { grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
  .service-order-card { order: 0; }
}
.service-hero-info h1 { color: var(--white); }
.service-hero-info .lead { color: rgba(255,255,255,.75); }
.text-gold { color: var(--gold); }

.service-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.service-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}
.service-badge--gold { background: rgba(201,151,28,.2); color: var(--gold); border-color: rgba(201,151,28,.35); }

.service-features-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.82);
}
.service-features-list li svg { color: #4ade80; flex-shrink: 0; width: 18px; height: 18px; }

.alt-services { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.alt-services-title { font-size: .78rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; font-weight: 600; }
.alt-services-links { display: flex; flex-wrap: wrap; gap: 8px; }
.alt-service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .825rem;
  color: rgba(255,255,255,.6);
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  transition: all var(--trans);
}
.alt-service-link:hover { color: var(--white); border-color: rgba(255,255,255,.4); text-decoration: none; }

/* ── Service order card ──────────────────────────────────────────── */
.service-order-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.service-order-card-header {
  background: var(--green);
  padding: 20px 24px 18px;
  color: var(--white);
}
.soc-price-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .75; margin-bottom: 4px; font-weight: 600; }
.soc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.soc-price-net { font-size: 2rem; font-weight: 800; color: var(--white); }
.soc-price-vat { font-size: .95rem; color: rgba(255,255,255,.7); }
.soc-delivery { font-size: .78rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
.service-order-card-body { padding: 24px; }

/* ── Simple Order Form ───────────────────────────────────────────── */
.simple-order-wrap { display: flex; flex-direction: column; gap: 16px; }

.cui-lookup-area { display: flex; flex-direction: column; gap: 6px; }
.sof-label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.sof-hint { font-size: .75rem; color: var(--muted); }

.cui-input-row { display: flex; gap: 8px; }
.cui-input-row .sof-input { flex: 1; min-width: 0; }

.sof-input {
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
.sof-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,60,120,.1); }

.sof-status { font-size: .8rem; margin-top: 4px; }
.sof-status--error { color: var(--error); }
.sof-status--success { color: #15803d; }

/* Company found card */
.company-found-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--r-md);
}
.company-found-icon { flex-shrink: 0; color: #16a34a; width: 22px; height: 22px; margin-top: 1px; }
.company-found-info { flex: 1; min-width: 0; }
.company-found-name { font-weight: 700; color: var(--dark); font-size: .9rem; }
.company-found-addr { font-size: .78rem; color: var(--muted); margin-top: 2px; }

.form-check-group { display: flex; flex-direction: column; gap: 6px; }
.sof-check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  cursor: pointer;
}
.sof-check-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }
.sof-check-label a { color: var(--green); }

.sof-total-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 8px; }

/* ── Service selection cards (for homepage & comanda) ─────────────── */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ── Pricing table (index.php) ────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transform: translateY(0);
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); transform: translateY(-3px); }
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  background: var(--dark);
  color: var(--white);
}
.pricing-card--featured:hover { transform: translateY(-8px); }
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card-hd { display: flex; flex-direction: column; gap: 4px; }
.pricing-card-name { font-size: 1.05rem; font-weight: 700; }
.pricing-card--featured .pricing-card-name { color: var(--white); }
.pricing-card-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.pricing-card--featured .pricing-card-desc { color: rgba(255,255,255,.6); }
.pricing-card-price { display: flex; align-items: baseline; gap: 4px; margin-top: 12px; }
.pricing-amount { font-size: 2rem; font-weight: 800; color: var(--dark); }
.pricing-card--featured .pricing-amount { color: var(--gold); }
.pricing-currency { font-size: .95rem; color: var(--muted); }
.pricing-card--featured .pricing-currency { color: rgba(255,255,255,.6); }
.pricing-delivery {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600; color: #15803d; margin-top: 4px;
}
.pricing-card--featured .pricing-delivery { color: #4ade80; }
.pricing-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: var(--dark);
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-features li::before {
  content: ''; display: inline-block;
  width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
}
.pricing-features li.ok::before {
  background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 12px;
}
.pricing-card--featured .pricing-features li.ok::before {
  background: rgba(74,222,128,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 12px;
}
.pricing-features li.no::before {
  background: #f3f4f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center / 10px;
}
.pricing-features li.no { color: var(--muted); }
.pricing-card--featured .pricing-features li.no { color: rgba(255,255,255,.3); }
.pricing-card--featured .pricing-features li.no::before {
  background: rgba(255,255,255,.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.25)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center / 10px;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card--featured { transform: none; }
}
@media (min-width: 769px) and (max-width: 960px) {
  .pricing-grid { gap: 16px; }
  .pricing-card { padding: 24px 20px; }
}

/* ── Single-service showcase (index.php) ──────────────────────── */
.svc-showcase {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: start;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--r-xl);
  padding: 40px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.svc-showcase-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--r-lg);
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-showcase-icon svg { width: 40px; height: 40px; color: var(--green); }
.svc-showcase-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.svc-showcase-body h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.svc-showcase-body p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.svc-showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-showcase-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--dark);
}
.svc-showcase-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A3C78' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.svc-showcase-cta {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.svc-showcase-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.svc-showcase-price .price-net { font-size: 2.2rem; font-weight: 800; color: var(--dark); }
.svc-showcase-price .price-vat { font-size: .95rem; color: var(--muted); }
.svc-showcase-delivery {
  font-size: .8rem;
  color: #15803d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .svc-showcase {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 20px;
  }
  .svc-showcase-icon { width: 60px; height: 60px; }
  .svc-showcase-icon svg { width: 30px; height: 30px; }
  .svc-showcase-cta { min-width: unset; }
}
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  position: relative;
}
.service-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card.featured { border-color: var(--green); box-shadow: var(--shadow-md); }
.service-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--green); }
.service-card h2, .service-card h3 { font-size: 1.1rem; color: var(--dark); }
.service-card .service-card-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; flex: 1; }
.service-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}
.service-card-price .price-net { font-size: 1.75rem; font-weight: 800; color: var(--dark); }
.service-card-price .price-vat { font-size: .85rem; color: var(--muted); }
.service-card-delivery {
  font-size: .78rem;
  color: #15803d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.service-card-delivery svg { width: 13px; height: 13px; }

/* ── Service page header (new layout) ───────────────────────────── */
.svc-header {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3c78 100%);
  padding-block: 20px 32px;
  color: var(--white);
}
@media (min-width: 900px) {
  .svc-header { padding-block: 36px 48px; }
}

.svc-breadcrumb { margin-bottom: 20px; }
.svc-breadcrumb a, .svc-breadcrumb span { color: rgba(255,255,255,.55); font-size: .8rem; }
.svc-breadcrumb a:hover { color: var(--white); }
.svc-breadcrumb .sep { margin: 0 6px; }
.svc-breadcrumb .current { color: rgba(255,255,255,.8); }

.svc-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 900px) {
  .svc-layout {
    grid-template-columns: 460px 1fr;
    gap: 48px;
    align-items: center;
  }
}
.no-gold{
 background: #1a3c78 !important;
 border-color: #e8eef7 !important
}
/* Wizard card */
.svc-wizard-col { width: 100%; }
.svc-order-card {
  background: var(--white);
  border-radius: var(--r-xl);

  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.svc-order-card-hd {
  background: var(--green);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.svc-order-hd-left { flex: 1; min-width: 0; }
.svc-order-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.svc-order-sub {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  color: rgba(255,255,255,.65);
}
.svc-order-price {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.svc-price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.svc-price-currency {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.svc-order-card-body { padding: 18px 20px 22px; }

/* Info panel */
.svc-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.svc-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}
.svc-badge--gold { background: rgba(201,151,28,.2); color: var(--gold); border-color: rgba(201,151,28,.35); }
.svc-info-col h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.svc-info-col .lead { color: rgba(255,255,255,.78); margin-bottom: 20px; }

.svc-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.svc-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
}
.svc-features li svg { color: #4ade80; flex-shrink: 0; width: 16px; height: 16px; }

.svc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.svc-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.svc-trust-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Order Wizard ────────────────────────────────────────────────── */
.order-wizard {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Progress bar */
.wz-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  padding: 0 4px;
}
.wz-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.wz-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), color var(--trans);
}
.wz-step-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--trans);
}
.wz-step-item--active .wz-step-circle { background: var(--green); color: var(--white); }
.wz-step-item--active .wz-step-label { color: var(--green); }
.wz-step-item--done .wz-step-circle {
  background: var(--green-lt);
  color: var(--green);
}
.wz-step-item--done .wz-step-circle::before { content: '✓'; }
.wz-step-item--done .wz-step-label { color: var(--green); }
.wz-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 20px;
}

/* Pages */
.wz-page { display: flex; flex-direction: column; gap: 16px; }
.wz-page--hidden { display: none; }

/* Sections within a page */
.wz-section { display: flex; flex-direction: column; gap: 8px; padding-top: 1.1rem;}

/* Labels */
.wz-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
}
.wz-label svg { color: var(--green); flex-shrink: 0; }
.wz-optional { font-weight: 400; color: var(--muted); font-size: .78rem; }

/* Inputs */
.wz-input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.wz-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,60,120,.1); }

.wz-select {
  padding: 11px 36px 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font: inherit;
  font-size: .875rem;
  color: var(--text);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.wz-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,60,120,.1); }

.wz-hint { font-size: .74rem; color: var(--muted); }

/* CUI row */
.wz-cui-row { display: flex; gap: 8px; }
.wz-cui-row .wz-input { flex: 1; min-width: 0; }

.wz-cui-status { font-size: .8rem; margin-top: 3px; }
.wz-cui-status--error { color: var(--error); }
.wz-cui-status--success { color: #15803d; }

/* Company card */
.wz-company-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--r-md);
}
.wz-company-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 1px;
}
.wz-company-check svg { width: 13px; height: 13px; }
.wz-company-info { flex: 1; min-width: 0; }
.wz-company-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.wz-company-addr { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.wz-change-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
  background: none;
  border: 1px solid rgba(26,60,120,.2);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans);
}
.wz-change-btn:hover { background: var(--green-lt); border-color: var(--green); }

/* Service radio cards */
.wz-service-cards { display: flex; flex-direction: column; gap: 8px; }
.wz-service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  user-select: none;
}
.wz-service-card:hover { border-color: rgba(26,60,120,.35); background: var(--green-lt); }
.wz-service-card--active { border-color: var(--green); background: var(--green-lt); }
.wz-service-card input[type="radio"] { display: none; }
.wz-svc-dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: border-color var(--trans), background var(--trans);
  position: relative;
}
.wz-service-card--active .wz-svc-dot {
  border-color: var(--green);
  background: var(--green);
}
.wz-service-card--active .wz-svc-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
}
.wz-svc-body { flex: 1; min-width: 0; }
.wz-svc-name { font-weight: 700; font-size: .875rem; color: var(--dark); }
.wz-svc-delivery { font-size: .74rem; color: #15803d; margin-top: 1px; }
.wz-svc-price { flex-shrink: 0; text-align: right; }
.wz-svc-price strong { font-size: .95rem; color: var(--dark); display: block; }
.wz-svc-price span { font-size: .74rem; color: var(--muted); }

/* Step 1 errors */
.wz-error {
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--r-sm);
  color: var(--error);
  font-size: .82rem;
}

/* Step 2: summary card */
.wz-summary-card {
  background: var(--green-lt);
  border: 1.5px solid rgba(26,60,120,.15);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
.wz-summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wz-summary-label { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; margin-bottom: 2px; }
.wz-summary-val { font-size: .84rem; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Fields group */
.wz-field-group { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 480px) {
  .wz-field-group { flex-direction: row; }
  .wz-field-group .wz-field { flex: 1; min-width: 0; }
}
.wz-field { display: flex; flex-direction: column; gap: 4px; }
.wz-field-label { font-size: .8rem; font-weight: 600; color: var(--dark); }

/* Billing options */
.wz-billing-opts { display: flex; gap: 8px; }
.wz-billing-opt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--trans);
}
.wz-billing-opt input[type="radio"] { display: none; }
.wz-billing-opt--active {
  border-color: var(--green);
  background: var(--green-lt);
  color: var(--green);
}

/* Price box */
.wz-price-box {
  background: var(--green-lt);
  border: 1.5px solid rgba(26,60,120,.15);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
.wz-price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

/* Checkboxes */
.wz-checks { display: flex; flex-direction: column; gap: 8px; }
.wz-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}
.wz-check-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  cursor: pointer;
}
.wz-check-label a { color: var(--green); text-decoration: underline; }

/* Submit button + note */
.wz-next-btn, .wz-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.wz-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}
.wz-secure-note svg { color: var(--green); flex-shrink: 0; }

/* Back button */
.wz-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
  transition: color var(--trans);
}
.wz-back-btn:hover { color: var(--dark); }

/* ── Service page: new stacked layout ───────────────────────────── */

/* Full-width hero text above the form */
.svc-hero-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}
.svc-hero-text .svc-badge-row { justify-content: center; }
.svc-hero-text h1 { color: var(--white); font-size: clamp(1.55rem, 4.5vw, 2.6rem); margin-bottom: 12px; }
.svc-hero-text .lead { color: rgba(255,255,255,.82); margin: 0; }

/* Form card wrapper – full container width */
.svc-form-wrap {
  width: 100%;
}

/* Info section below the hero/form */
.svc-info-below {
  background: var(--bg);
  padding-block: 28px 32px;
}
.svc-info-below .svc-features--light {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.svc-info-below .svc-features--light li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: var(--text);
}
.svc-info-below .svc-features--light li svg { color: var(--green); flex-shrink: 0; width: 16px; height: 16px; }

.svc-trust-row--light {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-lt);
}
.svc-trust-row--light .svc-trust-item { color: var(--muted); }
.svc-trust-row--light .svc-trust-item svg { color: var(--green); }

@media (min-width: 900px) {
  .svc-hero-text { margin-bottom: 40px; }
  .svc-info-below { padding-block: 36px 44px; }
  .svc-info-below .svc-features--light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
  }
}

/* ── Billing cards (3-option vertical) ──────────────────────────── */
.wz-billing-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wz-billing-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  user-select: none;
  transition: border-color var(--trans), background var(--trans);
}
.wz-billing-card:hover { border-color: rgba(26,60,120,.35); background: var(--green-lt); }
.wz-billing-card--active { border-color: var(--green); background: var(--green-lt); }
.wz-billing-card input[type="radio"] { display: none; }
.wz-bc-dot {
  flex-shrink: 0;
  margin-top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  position: relative;
  transition: border-color var(--trans);
}
.wz-billing-card--active .wz-bc-dot { border-color: var(--green); background: var(--green); }
.wz-billing-card--active .wz-bc-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
}
.wz-bc-body { flex: 1; min-width: 0; }
.wz-bc-name { font-weight: 700; font-size: .875rem; color: var(--dark); }
.wz-bc-desc { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* Extra fields below a billing card */
.wz-bc-extra {
  padding: 10px 14px 14px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1.5px solid var(--green);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  background: var(--green-lt);
  margin-top: -8px;
}
.wz-bc-extra .wz-hint { margin-top: 0; }

/* Two-column row inside extra fields */
.wz-field-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 480px) {
  .wz-field-row { flex-direction: row; }
  .wz-field-row .wz-field { flex: 1; min-width: 0; }
}

/* ── Step 1 footer: payment badges left, Continuă button right ───── */
.wz-step1-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.wz-payment-badges {
  display: flex;
  align-items: center;
}
.wz-pay-badge-img {
  height: 42px;
  width: auto;
  display: block;
}
/* Bigger Continuă button in step 1 footer */
.wz-step1-footer .wz-next-btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  min-height: 54px;
}

@media (max-width: 600px) {
  .wz-step1-footer { flex-wrap: wrap; }
  .wz-step1-footer .wz-next-btn { flex: 1; }
  .hero-actions a {width: 100%;}
}

/* ── Step button row (back + next side by side) ─────────────────── */
.wz-btn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.wz-next-btn--flex { flex: 1; }

/* ── Urgent10 toggle ─────────────────────────────────────────────── */
.wz-urgent-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wz-urgent-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--dark);
}
.wz-urgent-toggle-wrap {
  position: relative;
  flex-shrink: 0;
}
.wz-urgent-toggle-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.wz-toggle-track {
  display: block;
  width: 42px;
  height: 24px;
  border-radius: 100px;
  background: var(--border);
  position: relative;
  transition: background var(--trans);
}
.wz-urgent-toggle-wrap input:checked ~ .wz-toggle-track { background: var(--green); }
.wz-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform var(--trans);
}
.wz-urgent-toggle-wrap input:checked ~ .wz-toggle-track .wz-toggle-thumb {
  transform: translateX(18px);
}
.wz-urgent-text { flex: 1; line-height: 1.4; }
.wz-urgent-price { color: var(--green); font-weight: 700; }

/* ── Total price box ─────────────────────────────────────────────── */
.wz-total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--dark);
  border-radius: var(--r-md);
  margin-top: 4px;
}
.wz-total-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.wz-total-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
}

/* Light-context overrides for alt-services (used inside svc-info-below) */
.svc-info-below .alt-services {
  border-top-color: var(--border-lt);
}
.svc-info-below .alt-services-title { color: var(--muted); }
.svc-info-below .alt-service-link {
  color: var(--green);
  border-color: var(--border);
}
.svc-info-below .alt-service-link:hover {
  color: var(--green-dk);
  border-color: var(--green);
  background: var(--green-lt);
  text-decoration: none;
}

/* ── Delivery / billing price tag badge ─────────────────────────── */
.wz-bc-price-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-lt);
  border: 1px solid rgba(26,60,120,.2);
  border-radius: 100px;
  padding: 1px 7px;
  vertical-align: middle;
}
.wz-badge-free {
  display: inline-block;
  margin-left: 6px;
  font-size: .7rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 100px;
  padding: 1px 7px;
  vertical-align: middle;
}

/* Back-btn as a proper button (in btn-row) */
.wz-back-btn--btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 11px 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  min-height: 44px;
}
.wz-back-btn--btn:hover { color: var(--dark); border-color: var(--text); }

/* Standalone back link (below the form) */
.wz-back-btn--standalone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--trans);
}
.wz-back-btn--standalone:hover { color: var(--dark); }

/* ── Mobile optimizations ────────────────────────────────────────── */

/* Minimum touch targets */
.wz-billing-card { min-height: 48px; }
.wz-service-card { min-height: 48px; }
.wz-check-label  { min-height: 30px; align-items: flex-start; }
.wz-check-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.btn-full { min-height: 48px; }

/* Inputs: 16px font prevents iOS zoom */
.wz-input  { font-size: 1rem; }
.wz-select { font-size: 1rem; }

/* Tighter card body on mobile */
@media (max-width: 480px) {
  .svc-order-card-body { padding: 14px 14px 18px; }
  .svc-order-card-hd   { padding: 12px 14px; }
  .wz-progress         { margin-bottom: 20px; padding: 0 2px; }
  .wz-step-circle      { width: 28px; height: 28px; font-size: .75rem; }
  .wz-step-label       { font-size: .62rem; }
  .wz-progress-line    { margin: 0 4px; margin-bottom: 17px; }
  .wz-page             { gap: 14px; }
  .wz-section          { gap: 7px; }
  .wz-btn-row          { gap: 8px; }
  .wz-bc-extra         { padding: 10px 12px 14px 14px; }
  .wz-company-addr     { white-space: pre-line; font-size: .76rem; }
  .wz-urgent-label     { gap: 8px; font-size: .85rem; }
}

/* Progress indicator: keep all 4 labels legible on small screens */
@media (max-width: 380px) {
  .wz-step-label { display: none; }
  .wz-step-circle { width: 26px; height: 26px; font-size: .7rem; }
}

/* ── Compact summary chip (doc/billing summary line) ────────────── */
.wz-summary-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--green-lt);
  border: 1.5px solid rgba(26,60,120,.15);
  border-radius: var(--r-md);
  font-size: .82rem;
  color: var(--dark);
  font-weight: 600;
  white-space: pre-line;
}

/* ── Payment method cards ───────────────────────────────────────── */
.wz-payment-section { margin-top: 4px; }
.wz-pay-methods { display: flex; flex-direction: column; gap: 8px; }
.wz-pay-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  user-select: none;
}
.wz-pay-method:hover { border-color: rgba(26,60,120,.35); background: var(--green-lt); }
.wz-pay-method--active { border-color: var(--green); background: var(--green-lt); }
.wz-pay-method--hidden { display: none; }
.wz-pay-method input[type="radio"] { display: none; }
.wz-pm-dot {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: border-color var(--trans), background var(--trans);
  position: relative;
}
.wz-pay-method--active .wz-pm-dot { border-color: var(--green); background: var(--green); }
.wz-pay-method--active .wz-pm-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
}
.wz-pm-body { flex: 1; min-width: 0; }
.wz-pm-name { font-weight: 700; font-size: .875rem; color: var(--dark); display: block; }
.wz-pm-desc { font-size: .74rem; color: var(--muted); margin-top: 1px; display: block; }
.wz-pm-icons { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }

/* Bank details */
.wz-bank-details {
  background: var(--green-lt);
  border: 1.5px solid rgba(26,60,120,.2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-top: 4px;
}
.wz-bank-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.wz-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
}
.wz-bank-row span { color: var(--muted); }
.wz-bank-row strong { color: var(--dark); text-align: right; }
.wz-bank-iban { font-family: monospace; font-size: .85rem; letter-spacing: .04em; }
.wz-bank-note { font-size: .78rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* Bank transfer confirm (after successful submit) */
.wz-bank-confirm {
  padding: 20px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--r-md);
}
.wz-bank-confirm-title {
  font-size: 1rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 10px;
}

/* ── Print ──────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .back-to-top { display: none; }
  body { background: white; color: black; font-size: 12pt; }
}
