/* =========================================================
   DUJININKAS.LT – Stiliai
   ========================================================= */

/* --- Kintamieji ----------------------------------------- */
:root {
  --primary:       #0D2137;
  --primary-light: #1A3A5C;
  --accent:        #F4671B;
  --accent-hover:  #D9530F;
  --text:          #1F2937;
  --text-muted:    #6B7280;
  --bg:            #FFFFFF;
  --bg-alt:        #F4F6F9;
  --bg-dark:       #0D2137;
  --surface:       #f8f9fb;
  --border:        #E5E7EB;
  --success:       #22c55e;
  --error:         #EF4444;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow:        0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.14);
  --transition:    0.2s ease;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }

/* --- Layout -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: 72px; }
.section-pad { padding-block: 72px; }
.section-alt { background: var(--bg-alt); }

/* --- Section titles ------------------------------------ */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 48px;
}

/* --- Buttons ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(244,103,27,.35);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  padding: 12px 28px;
  font-size: 1.05rem;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-hero { font-size: 1.2rem; padding: 14px 28px; }
.btn-phone { font-size: 1.1rem; padding: 14px 28px; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo em {
  font-style: normal;
  color: var(--accent);
}

/* Logo flame animation */
.logo-flame {
  transform-origin: 50% 100%;
}
.flame-outer {
  animation: flame-flicker 2s ease-in-out infinite;
  transform-origin: 50% 100%;
}
.flame-inner {
  animation: flame-glow 1.5s ease-in-out infinite;
  transform-origin: 50% 100%;
}
@keyframes flame-flicker {
  0%, 100% { transform: scaleX(1) scaleY(1); opacity: 1; }
  25%      { transform: scaleX(.92) scaleY(1.06); opacity: .9; }
  50%      { transform: scaleX(1.05) scaleY(.95); opacity: 1; }
  75%      { transform: scaleX(.95) scaleY(1.04); opacity: .92; }
}
@keyframes flame-glow {
  0%, 100% { opacity: 1; transform: scaleY(1) translateY(0); }
  50%      { opacity: .7; transform: scaleY(1.12) translateY(-1px); }
}

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: 9px 18px;
  border-radius: 50px;
  transition: background var(--transition);
  white-space: nowrap;
}
.header-phone:hover { background: var(--accent-hover); }
.header-phone svg { flex-shrink: 0; }

/* Header CTA link (partner page) */
.header-cta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,103,27,.15);
  border: 1.5px solid rgba(244,103,27,.4);
  color: #FFB347;
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.header-cta-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.header-cta-link svg { flex-shrink: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1e4a70 100%);
  color: #fff;
  padding-block: 80px 72px;
}

.hero-grid,
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,103,27,.18);
  border: 1px solid rgba(244,103,27,.35);
  color: #FFB347;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* H1 */
.hero-content h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-content h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  max-width: 540px;
}

/* Benefits list */
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .97rem;
  font-weight: 500;
}
.hero-benefits li svg { flex-shrink: 0; }

/* Hero bullets (city_service) */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding-left: 0;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .97rem;
  font-weight: 500;
}
.hero-bullets li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero form */
.hero-form { width: 100%; }

/* =========================================================
   FORM CARD
   ========================================================= */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
@keyframes formHighlight {
  0%   { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(244,103,27,.8); }
  50%  { box-shadow: var(--shadow-lg), 0 0 50px 18px rgba(244,103,27,.55); }
  100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(244,103,27,0); }
}
@keyframes formHighlightOut {
  0%   { box-shadow: var(--shadow-lg), 0 0 50px 18px rgba(244,103,27,.55); }
  100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(244,103,27,0); }
}
.form-card--highlight {
  animation: formHighlight 2s ease-in-out infinite;
}
.form-card--highlight-out {
  animation: formHighlightOut 1.5s ease-out forwards;
}

.form-card-header {
  margin-bottom: 24px;
  text-align: center;
}
.form-card-header h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.form-card-header p {
  font-size: .9rem;
  color: var(--text-muted);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Form groups */
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label span { color: var(--accent); margin-left: 2px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .97rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 96px; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244,103,27,.12);
}
.form-group input.is-error,
.form-group textarea.is-error {
  border-color: var(--error);
}
.form-group input.is-error:focus,
.form-group textarea.is-error:focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}

.field-error {
  display: block;
  color: var(--error);
  font-size: .82rem;
  margin-top: 4px;
  min-height: 1em;
}

.form-error {
  color: var(--error);
  font-size: .88rem;
  text-align: center;
  margin-top: 12px;
}

.form-global-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--error);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  margin-bottom: 12px;
}

/* Submit button */
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .7; cursor: default; transform: none; }

.btn-loading { display: flex; align-items: center; gap: 8px; }

/* Spinner animation */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; }

/* Contact hint (phone or email required) */
.form-contact-hint {
  font-size: .82rem;
  color: var(--text-muted);
  margin: -4px 0 12px;
  font-style: italic;
}

/* Privacy note */
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.form-privacy svg { flex-shrink: 0; margin-top: 1px; }

/* Form submit loading overlay */
.is-submitting {
  position: relative;
}
.is-submitting::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  z-index: 10;
  animation: overlayFadeIn .2s ease-out;
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Form fade-out on success */
.form--fade-out {
  animation: formFadeOut .35s ease-out forwards;
}
@keyframes formFadeOut {
  to { opacity: 0; transform: translateY(-10px); }
}

/* Success fade-in */
.form-success--fade-in {
  animation: successFadeIn .4s ease-out;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Form success */
.form-success {
  text-align: center;
  padding: 24px 16px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 20px;
}
.btn-phone-success {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background var(--transition);
}
.btn-phone-success:hover { background: var(--accent-hover); }

/* =========================================================
   MARQUEE – social proof ticker
   ========================================================= */
.marquee {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  padding-block: 12px;
  user-select: none;
  /* -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); */
          /* mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); */
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 120s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .2px;
}

.marquee-icon {
  display: inline-flex;
  color: var(--accent);
  flex-shrink: 0;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  margin-inline: 20px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-duration: 120s;
  }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--primary);
  padding-block: 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  display: block;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon,
.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(244,103,27,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  transition: transform .3s ease, background .3s ease;
}
.service-card:hover .service-icon,
.service-card:hover .service-card-icon {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(244,103,27,.18);
}

.service-title,
.service-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-desc,
.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 12px;
}
.service-badge--urgent {
  background: rgba(239,68,68,.1);
  color: var(--error);
}

.service-link {
  display: block;
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.process-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  max-width: 320px;
  box-shadow: var(--shadow);
}

.process-number {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
  box-shadow: 0 4px 16px rgba(244,103,27,.3);
}

.process-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-card p {
  font-size: .92rem;
  color: var(--text-muted);
}

.process-arrow {
  color: var(--accent);
  transform: rotate(90deg);
  margin: 4px 0;
}

/* =========================================================
   WHY US
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(13,33,55,.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.why-item:hover .why-icon {
  transform: translateY(-3px);
  background: rgba(13,33,55,.10);
  box-shadow: 0 6px 20px rgba(13,33,55,.10);
}

/* icon draw-in animations */
.why-icon svg {
  overflow: visible;
}
.why-icon .icon-draw {
  stroke-dasharray: var(--dash-len, 100);
  stroke-dashoffset: var(--dash-len, 100);
  animation: iconDraw .8s ease-out forwards;
}
.why-item:nth-child(1) .icon-draw { animation-delay: .1s; }
.why-item:nth-child(2) .icon-draw { animation-delay: .25s; }
.why-item:nth-child(3) .icon-draw { animation-delay: .4s; }
.why-item:nth-child(4) .icon-draw { animation-delay: .55s; }

@keyframes iconDraw {
  to { stroke-dashoffset: 0; }
}

/* pulse ring on clock icon */
.why-icon-clock .pulse-ring {
  transform-origin: center;
  animation: pulseRing 2.4s ease-out infinite;
  animation-delay: 1s;
  opacity: 0;
}
@keyframes pulseRing {
  0%   { transform: scale(.8); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* check mark — tick visible, re-draws on hover */
.why-icon-check .icon-tick {
  stroke-dasharray: 22;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .35s ease-out;
}
.why-item:hover .why-icon-check .icon-tick {
  animation: tickRedraw .6s ease-out;
}
@keyframes tickRedraw {
  0%   { stroke-dashoffset: 22; }
  100% { stroke-dashoffset: 0; }
}

/* shield pulse */
.why-item:hover .why-icon-shield svg {
  animation: shieldPulse .6s ease;
}
@keyframes shieldPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* coin flip */
.why-item:hover .why-icon-price svg {
  animation: coinFlip .6s ease;
}
@keyframes coinFlip {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.why-item h3 {
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.why-item p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   REVIEWS CAROUSEL (city + LP pages)
   ========================================================= */
.reviews-section {
  padding-top: 32px;
  padding-bottom: 48px;
  background: var(--bg-alt, #f8f9fb);
}
.reviews-section .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Stats: count + average rating */
.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.reviews-stats-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.reviews-stats-rating strong {
  margin-left: 8px;
  font-size: 1.25rem;
  color: var(--primary);
}
.reviews-stats-count {
  font-size: .95rem;
  color: var(--text-muted);
}

/* Carousel wrapper */
.reviews-carousel {
  position: relative;
  padding-inline: 40px;
}
.reviews-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px;
  scrollbar-width: none;
  cursor: grab;
}
.reviews-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Nav buttons */
.reviews-carousel-prev,
.reviews-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.25s ease, color 0.25s ease, opacity 0.3s ease, transform 0.25s ease;
  color: var(--primary);
  cursor: pointer;
  opacity: 1;
}
.reviews-carousel-prev:hover,
.reviews-carousel-next:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.reviews-carousel-prev:active,
.reviews-carousel-next:active {
  transform: translateY(-50%) scale(0.95);
}
.reviews-carousel-prev.is-hidden,
.reviews-carousel-next.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.reviews-carousel-prev { left: 0; }
.reviews-carousel-next { right: 0; }

/* Review cards */
.review-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  opacity: 0.4;
  will-change: transform, opacity;
}
.review-card.is-visible {
  opacity: 1;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-card--pending {
  border: 2px dashed var(--accent);
}
.review-card-badge {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.review-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .75rem;
}
.review-card-text {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: .75rem;
  font-style: italic;
  flex: 1;
}
.review-card-author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Star rating input */
.star-rating {
  display: flex;
  gap: 4px;
}
.star-btn {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  transition: transform 0.15s;
  line-height: 1;
}
.star-btn:hover {
  transform: scale(1.2);
}

/* Review form section */
.review-form-section {
  max-width: 560px;
  margin: 1.5rem auto 0;
  padding: 0;
}

/* Toggle button */
.review-form-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: .6rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: auto;
}
.review-form-section { text-align: center; }
.review-form-toggle:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.review-form-toggle-icon {
  display: flex;
  transition: transform 0.3s ease;
}
.review-form-toggle.is-open .review-form-toggle-icon {
  transform: rotate(180deg);
}

/* Collapsible body */
.review-form-body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  text-align: left;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 1rem;
  padding-inline: 1.5rem;
}
.review-form-body.is-open {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}

/* =========================================================
   LP – PRICING
   ========================================================= */
.lp-pricing {
  padding-block: 48px;
  background: #fff;
}
.lp-pricing h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.lp-pricing-list {
  max-width: 560px;
  margin: 0 auto;
}
.lp-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border, #e5e7eb);
}
.lp-pricing-item:last-child {
  border-bottom: none;
}
.lp-pricing-label {
  font-size: .95rem;
  color: var(--text);
}
.lp-pricing-value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.lp-pricing-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* =========================================================
   LP – STICKY PHONE (mobile only)
   ========================================================= */
.sticky-phone {
  display: none;
}
@media (max-width: 959px) {
  .sticky-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 20px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    text-decoration: none;
    box-shadow: 0 -2px 12px rgba(0,0,0,.15);
  }
  .sticky-phone:hover {
    background: var(--accent-hover);
  }
  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body:has(.sticky-phone) {
    padding-bottom: 56px;
  }
}

/* =========================================================
   LP – FORM EXPAND LINK
   ========================================================= */
.form-expand-link {
  display: inline-block;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
  text-decoration: none;
}
.form-expand-link:hover {
  text-decoration: underline;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding-block: 56px;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
}
.cta-inner p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0A1929;
  color: rgba(255,255,255,.75);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: #fff; }
.footer-desc {
  margin-top: 14px;
  font-size: .9rem;
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h3 {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
}
.footer-contacts,
.footer-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contacts li,
.footer-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
}
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 20px;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-bottom-inner p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: .82rem;
}
.footer-links a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

/* =========================================================
   PRICING TABLE
   ========================================================= */
.pricing-section {
  padding-block: 72px;
  background: var(--bg-light, #fafafa);
}
.pricing-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 6px;
}
.pricing-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 36px;
  text-transform: capitalize;
}
.pricing-table {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  transition: background var(--transition);
}
.pricing-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.pricing-row:hover {
  background: rgba(244, 103, 27, .04);
}
.pricing-label {
  font-size: .95rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}
.pricing-dots {
  flex: 1;
  border-bottom: 2px dotted var(--border);
  min-width: 20px;
  margin-bottom: -4px;
}
.pricing-value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.pricing-note {
  max-width: 680px;
  margin-inline: auto;
  margin-top: 16px;
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .pricing-row {
    flex-wrap: wrap;
    gap: 4px;
    padding: 14px 18px;
  }
  .pricing-dots {
    display: none;
  }
  .pricing-value {
    margin-left: auto;
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  padding-block: 72px;
}
.faq-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 36px;
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  interpolate-size: allow-keywords;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] summary {
  color: var(--accent);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item::details-content {
  display: block;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .25s ease, opacity .25s ease, content-visibility .25s ease allow-discrete;
  content-visibility: hidden;
}
.faq-item[open]::details-content {
  height: auto;
  opacity: 1;
  content-visibility: visible;
}
@starting-style {
  .faq-item[open]::details-content {
    height: 0;
    opacity: 0;
  }
}

.faq-answer,
.faq-a {
  padding: 0 22px 18px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer a,
.faq-a a { color: var(--accent); font-weight: 600; }
.faq-answer a:hover,
.faq-a a:hover { text-decoration: underline; }

.faq-more {
  text-align: center;
  margin-top: 32px;
}

/* =========================================================
   DUK PUSLAPIS (full FAQ page)
   ========================================================= */
.page-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.duk-wrap { max-width: 800px; margin: 0 auto; }

.duk-group { margin-bottom: 2.5rem; }
.duk-group h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
  font-size: .8rem;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.breadcrumb-list li { color: var(--text-muted); }
.breadcrumb-list li + li::before {
  content: '›';
  margin-right: .4rem;
  color: var(--text-muted);
}
.breadcrumb-list a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb-list a:hover { text-decoration: underline; }

/* =========================================================
   OTHER SERVICES
   ========================================================= */
.other-services {
  padding-block: 72px;
  background: var(--bg-alt);
}
.other-services h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 36px;
}

/* =========================================================
   PRIVACY PAGE
   ========================================================= */
.policy-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding-block: 48px;
}
.policy-wrap h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.policy-wrap p,
.policy-wrap li {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.policy-wrap ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  padding: 1rem 0;
}
.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin: 0;
}
.cookie-text a { color: #fff; text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  padding: .55rem 1.15rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), opacity var(--transition);
}
.cookie-btn--primary {
  background: var(--accent);
  color: #fff;
}
.cookie-btn--primary:hover { background: var(--accent-hover); }
.cookie-btn--secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.cookie-btn--secondary:hover { background: rgba(255,255,255,.2); }

/* =========================================================
   PARTNER PAGE (join)
   ========================================================= */
.join-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1e4a70 100%);
  color: #fff;
  padding-block: 72px 64px;
}
.join-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.join-hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-block: 16px 18px;
}
.join-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.join-hero-sub strong { color: #fff; }

.btn-join-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(244,103,27,.35);
}
.btn-join-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Visual card */
.join-hero-visual { display: flex; justify-content: center; }
.jv-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 240px;
}
.jv-badge {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.jv-url { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.jv-city { color: var(--accent); }
.jv-phone { font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: 16px; font-family: monospace; }
.jv-arrow { font-size: .82rem; color: var(--success); font-weight: 600; }

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.benefit-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(28px);
  animation: benefitReveal .6s ease-out forwards;
  animation-play-state: paused;
}
.benefit-card:nth-child(1) { animation-delay: 0s; }
.benefit-card:nth-child(2) { animation-delay: .1s; }
.benefit-card:nth-child(3) { animation-delay: .2s; }
.benefit-card:nth-child(4) { animation-delay: .3s; }
.benefit-card:nth-child(5) { animation-delay: .4s; }
.benefit-card:nth-child(6) { animation-delay: .5s; }
.benefit-card:nth-child(7) { animation-delay: .6s; }
.benefit-card:nth-child(8) { animation-delay: .7s; }
.partner-benefits.is-visible .benefit-card { animation-play-state: running; }
@keyframes benefitReveal {
  to { opacity: 1; transform: translateY(0); }
}
.benefit-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(244,103,27,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(244,103,27,.18);
}
.benefit-card h3 { font-size: 1.02rem; color: var(--primary); margin-bottom: 6px; }
.benefit-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }
.benefit-card--highlight { border-color: var(--accent); background: rgba(244,103,27,.04); }

/* Join steps */
.join-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.join-step {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  max-width: 300px;
  box-shadow: var(--shadow);
}
.join-step h3 { font-size: 1.02rem; color: var(--primary); margin-bottom: 8px; }
.join-step p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }

/* Cities grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.city-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
}
.city-tile:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  color: var(--accent);
}
.city-tile svg { color: var(--accent); flex-shrink: 0; }
.city-tile span:first-of-type { flex: 1; }
.city-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  background: rgba(34,197,94,.12);
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 50px;
  flex-shrink: 0;
}
.city-tile--taken {
  border-style: dashed;
  color: var(--text-muted);
  cursor: default;
}
.city-tile--taken:hover {
  border-color: var(--border);
  box-shadow: none;
  color: var(--text-muted);
}
.city-badge--taken {
  background: rgba(107,114,128,.1);
  color: var(--text-muted);
}

.taken-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Join form */
.join-form-wrap {
  max-width: 600px;
  margin-inline: auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.join-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* =========================================================
   PARTNER PAGE (template classes)
   ========================================================= */
.partner-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1e4a70 100%);
  color: #fff;
  padding-block: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partner-hero-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,103,27,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlowFloat 8s ease-in-out infinite;
}
.partner-hero-glow--2 {
  top: auto;
  bottom: -30%;
  right: auto;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,103,27,.10) 0%, transparent 70%);
  animation: heroGlowFloat2 10s ease-in-out infinite;
}
@keyframes heroGlowFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-20px, 15px); }
}
@keyframes heroGlowFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(15px, -10px); }
}

/* Hero entrance animations */
.partner-hero .hero-badge--animated {
  animation: heroBadgeIn .6s ease-out both;
}
.partner-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-block: 20px 18px;
  position: relative;
  animation: heroTitleIn .7s ease-out .15s both;
}
.partner-hero-sub {
  animation: heroFadeUp .6s ease-out .3s both;
}
.partner-hero .hero-sub {
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 32px;
  position: relative;
}
.partner-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  animation: heroFadeUp .6s ease-out .45s both;
}
.partner-hero-cta {
  animation: heroCTAPulse 3s ease-in-out 1.5s infinite;
}

@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(-12px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCTAPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(244,103,27,.35); }
  50%      { box-shadow: 0 4px 28px rgba(244,103,27,.55); }
}

/* Hero trust indicators */
.partner-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 32px;
  position: relative;
  animation: heroFadeUp .6s ease-out .6s both;
}
.partner-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.partner-hero-trust-item svg {
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}

.partner-hero-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: #FFB347;
  background: rgba(244,103,27,.15);
  border: 1px solid rgba(244,103,27,.3);
  padding: 6px 16px;
  border-radius: 50px;
}
.partner-hero-free svg { color: #FFB347; flex-shrink: 0; }

/* Mock browser card */
.partner-mock {
  padding-block: 48px;
  background: var(--bg-alt);
}
.mock-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.mock-card {
  flex: 1;
  max-width: 380px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mock-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.mock-card--extra { display: none; }
@media (min-width: 900px) {
  .mock-card--extra { display: block; }
}
.mock-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-url {
  margin-left: 12px;
  font-size: .78rem;
  color: var(--text-muted);
  font-family: monospace;
}
.mock-content { padding: 20px; }
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mock-logo {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
}
.mock-logo em { font-style: normal; color: var(--accent); }
.mock-phone {
  font-size: .78rem;
  color: var(--text-muted);
  font-family: monospace;
}
.mock-body {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  padding: 20px;
  color: #fff;
}
.mock-badge {
  display: inline-block;
  background: rgba(244,103,27,.2);
  border: 1px solid rgba(244,103,27,.35);
  color: #FFB347;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.mock-title {
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  animation: mock-wiggle 3s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes mock-wiggle {
  0%, 100% { transform: rotate(0deg); }
  20%      { transform: rotate(-.4deg); }
  40%      { transform: rotate(.4deg); }
  60%      { transform: rotate(-.25deg); }
  80%      { transform: rotate(.25deg); }
}
.mock-title strong { color: var(--accent); }
.mock-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.mock-bullets span {
  height: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,.10) 25%, rgba(255,255,255,.25) 50%, rgba(255,255,255,.10) 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: mock-shimmer 2s ease-in-out infinite;
}
.mock-bullets span:nth-child(1) { width: 80%; }
.mock-bullets span:nth-child(2) { width: 65%; animation-delay: .15s; }
.mock-bullets span:nth-child(3) { width: 70%; animation-delay: .3s; }

@keyframes mock-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.mock-url::after {
  content: '▌';
  display: inline-block;
  animation: mock-blink 1s step-end infinite;
  color: var(--accent);
  margin-left: 2px;
  font-size: .7rem;
}
@keyframes mock-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

.mock-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  animation: mock-pulse 2.5s ease-in-out infinite;
}
@keyframes mock-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,103,27,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(244,103,27,0); }
}

/* Partner process (reuses process-grid layout but adds process-step alias) */
.partner-process { background: var(--bg-alt); }

.process-step {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  max-width: 320px;
  box-shadow: var(--shadow);
}
.process-step h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-step p {
  font-size: .92rem;
  color: var(--text-muted);
}

/* Partner-page specific: scroll-reveal animations */
.partner-process .process-step {
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  opacity: 0;
  transform: translateY(28px);
  animation: processReveal .6s ease-out forwards;
  animation-play-state: paused;
}
.partner-process .process-step[data-step="1"] { animation-delay: 0s; }
.partner-process .process-step[data-step="2"] { animation-delay: .15s; }
.partner-process .process-step[data-step="3"] { animation-delay: .3s; }
.partner-process.is-visible .process-step { animation-play-state: running; }

.partner-process .process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
}

@keyframes processReveal {
  to { opacity: 1; transform: translateY(0); }
}

.partner-process .process-step:hover .process-number {
  transform: scale(1.15);
  box-shadow: 0 6px 24px rgba(244,103,27,.4);
}

/* connector arrows between steps */
.process-connector {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  opacity: 0;
  animation: connectorFade .4s ease-out forwards;
  animation-play-state: paused;
  animation-delay: .25s;
}
.partner-process.is-visible .process-connector { animation-play-state: running; }

/* vertical on mobile – give connector enough height so rotated SVG doesn't overlap cards */
.process-connector {
  min-height: 40px;
}
.process-connector svg {
  transform: rotate(90deg);
}

@keyframes connectorFade {
  to { opacity: .7; }
}

/* Partner cities */
.partner-cities .cities-grid {
  gap: 16px;
  margin-bottom: 24px;
}
.partner-cities .city-tile {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
  gap: 8px;
  text-decoration: none;
}
.city-tile-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  background: rgba(34,197,94,.12);
  color: #16a34a;
  padding: 3px 10px;
  border-radius: 50px;
}
.city-tile-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.city-tile:hover .city-tile-name { color: var(--accent); }
.city-tile-sub {
  font-size: .82rem;
  color: var(--text-muted);
}
.city-tile--other {
  border-style: dashed;
  border-color: var(--border);
  background: var(--bg-alt);
}
.city-tile--other .city-tile-name {
  color: var(--text-muted);
  font-size: 1rem;
}
.city-tile--other:hover {
  border-color: var(--accent);
}
.city-tile--other:hover .city-tile-name { color: var(--accent); }
.cities-empty {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.cities-empty a { color: var(--accent); font-weight: 600; }
.cities-taken-note {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 20px;
  text-align: center;
}
.cities-taken-note a { color: var(--accent); font-weight: 500; }
.cities-taken-note a:hover { text-decoration: underline; }

/* Partner Lithuania map */
.partner-map-wrap {
  max-width: 700px;
  margin: 2rem auto 0;
}
.partner-map-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.map-region {
  fill: #e8edf3;
  stroke: #c5d0dc;
  stroke-width: .8;
  stroke-linejoin: round;
}

/* City markers – shared */
.map-city { cursor: default; }
.map-city circle {
  transition: transform .22s ease, filter .22s ease;
  transform-origin: center;
  transform-box: fill-box;
}
.map-city-label {
  font-size: 9px;
  fill: var(--text-muted, #888);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  font-weight: 600;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map-city:hover .map-city-label,
.map-city:focus .map-city-label {
  opacity: 1;
}
.map-city-label--visible {
  opacity: .85;
}
.map-city:hover .map-city-label--visible,
.map-city:focus .map-city-label--visible {
  opacity: 1;
}

/* Taken cities */
.map-city--taken circle {
  fill: var(--primary-light, #1A3A5C);
  stroke: #fff;
  stroke-width: 1.2;
  opacity: .45;
}
.map-city--taken .map-city-label { fill: var(--text-muted, #6B7280); }

/* Available cities */
.map-city--available {
  cursor: pointer;
  outline: none;
}
.map-city--available > circle:first-of-type {
  fill: var(--accent, #22c55e);
  stroke: #fff;
  stroke-width: 2;
}
.map-city--available:hover > circle:first-of-type,
.map-city--available:focus > circle:first-of-type {
  transform: scale(1.3);
}
.map-city--available .map-city-label {
  fill: var(--primary, #1a1a2e);
  font-weight: 700;
  font-size: 10px;
}

/* Pulse ring on available cities */
.map-city-pulse {
  fill: none;
  stroke: var(--accent, #22c55e);
  stroke-width: 1.5;
  opacity: 0;
  animation: mapPulse 3s ease-out infinite;
  pointer-events: none;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes mapPulse {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-city--available:hover .map-city-pulse { animation: none; opacity: 0; }

/* Legend */
.map-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.map-legend-item {
  display: flex;
  align-items: center;
}
.map-legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}
.map-legend--available .map-legend-dot { background: var(--accent, #F4671B); }
.map-legend--taken .map-legend-dot { background: var(--primary-light, #1A3A5C); opacity: .45; }
.map-legend--size {
  font-style: italic;
  opacity: .7;
}

/* "Other city" link below map */
.map-other-city {
  text-align: center;
  margin-top: 1.25rem;
  font-size: .92rem;
}
.map-other-city a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.map-other-city a:hover { color: var(--accent); }
.map-other-city strong { color: var(--accent); }

/* Partner form */
.partner-form-section {
  background: var(--bg-alt);
  opacity: 0;
  transform: translateY(24px);
  animation: benefitReveal .6s ease-out forwards;
  animation-play-state: paused;
}
.partner-form-section.is-visible { animation-play-state: running; }
.partner-form-wrap {
  max-width: 560px;
  margin-inline: auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.partner-form-wrap:focus-within {
  box-shadow: 0 8px 40px rgba(244,103,27,.12);
}
.partner-form-wrap h2 {
  font-size: 1.35rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4px;
}
.partner-form-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 28px;
}

/* Partner stats bar */
.partner-stats {
  background: var(--primary);
}

/* Partner "what we do" section */
.partner-wedo { background: var(--bg-alt); }
.wedo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .wedo-grid { grid-template-columns: 1fr 1fr; }
}
.wedo-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: benefitReveal .5s ease-out forwards;
  animation-play-state: paused;
}
.wedo-item:nth-child(1) { animation-delay: 0s; }
.wedo-item:nth-child(2) { animation-delay: .1s; }
.wedo-item:nth-child(3) { animation-delay: .2s; }
.wedo-item:nth-child(4) { animation-delay: .3s; }
.partner-wedo.is-visible .wedo-item { animation-play-state: running; }
.wedo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.wedo-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244,103,27,.1), rgba(244,103,27,.05));
  border-radius: var(--radius);
  color: var(--accent);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease, box-shadow .3s ease;
}
.wedo-item:hover .wedo-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, rgba(244,103,27,.2), rgba(244,103,27,.1));
  box-shadow: 0 4px 14px rgba(244,103,27,.18);
}
.wedo-item h3 {
  font-size: .95rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.wedo-item p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Partner platform / dashboard section */
.partner-platform { background: var(--bg); }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
/* Platform section reveal animations */
.partner-platform .platform-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: benefitReveal .5s ease-out forwards;
  animation-play-state: paused;
}
.partner-platform .platform-feature:nth-child(1) { animation-delay: 0s; }
.partner-platform .platform-feature:nth-child(2) { animation-delay: .1s; }
.partner-platform .platform-feature:nth-child(3) { animation-delay: .2s; }
.partner-platform .platform-feature:nth-child(4) { animation-delay: .3s; }
.partner-platform .platform-feature:nth-child(5) { animation-delay: .4s; }
.partner-platform.is-visible .platform-feature { animation-play-state: running; }
.partner-platform .platform-mock {
  opacity: 0;
  transform: translateX(30px);
  animation: platformMockReveal .6s ease-out forwards;
  animation-play-state: paused;
  animation-delay: .2s;
}
.partner-platform.is-visible .platform-mock { animation-play-state: running; }
@keyframes platformMockReveal {
  to { opacity: 1; transform: translateX(0); }
}
@media (min-width: 768px) {
  .platform-grid { grid-template-columns: 1fr 1fr; }
}
.platform-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.platform-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-lg);
  transition: background .3s ease, box-shadow .3s ease;
  cursor: default;
}
.platform-feature:hover {
  background: rgba(244,103,27,.03);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.platform-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,103,27,.08);
  border-radius: var(--radius);
  color: var(--accent);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease, box-shadow .3s ease;
}
.platform-feature:hover .platform-feature-icon {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(244,103,27,.16);
  box-shadow: 0 4px 14px rgba(244,103,27,.18);
}
.platform-feature h3 {
  font-size: .95rem;
  color: var(--primary);
  margin-bottom: 4px;
  transition: color .3s ease;
}
.platform-feature:hover h3 {
  color: var(--accent);
}
.platform-feature p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.platform-mock {
  display: flex;
  justify-content: center;
}
.platform-mock .mock-card {
  max-width: 400px;
  width: 100%;
}
.platform-mock-content { padding: 20px; }
.platform-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.platform-mock-user {
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 3px 10px;
  border-radius: 50px;
}
.platform-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.platform-mock-stat {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
}
.platform-mock-stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
.platform-mock-stat-label {
  display: block;
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.platform-mock-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.platform-mock-name {
  width: 40%;
  height: 10px;
  background: var(--border);
  border-radius: 4px;
}
.platform-mock-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.platform-mock-badge--new {
  background: rgba(59,130,246,.12);
  color: #3B82F6;
}
.platform-mock-badge--progress {
  background: rgba(245,158,11,.12);
  color: #F59E0B;
}
.platform-mock-badge--done {
  background: rgba(34,197,94,.12);
  color: #16a34a;
}

/* Partner guarantee / risk reversal */
.partner-guarantee {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding-block: 32px;
}
.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(10px);
  animation: benefitReveal .5s ease-out forwards;
  animation-play-state: paused;
}
.guarantee-item:nth-child(1) { animation-delay: 0s; }
.guarantee-item:nth-child(2) { animation-delay: .1s; }
.guarantee-item:nth-child(3) { animation-delay: .2s; }
.partner-guarantee.is-visible .guarantee-item { animation-play-state: running; }
.guarantee-item svg {
  color: #FFB347;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.guarantee-item:hover svg {
  transform: scale(1.2);
}

/* Cities scarcity indicator */
.cities-scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .92rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgba(244,103,27,.06);
  border: 1px solid rgba(244,103,27,.15);
  border-radius: var(--radius);
}
.cities-scarcity svg { flex-shrink: 0; }

/* Partner FAQ (reuses global faq styles) */
.partner-faq { background: var(--bg-alt); }

/* Partner footer */
.partner-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 48px 32px;
}
@media (min-width: 768px) {
  .partner-footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
.partner-footer-brand .logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}
.partner-footer-brand .logo em { font-style: normal; color: var(--accent); }
.partner-footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 320px;
}
.partner-footer-contact h3,
.partner-footer-links h3 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.partner-footer-contact ul,
.partner-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.partner-footer-contact li svg { color: var(--accent); flex-shrink: 0; }
.partner-footer-contact a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.partner-footer-contact a:hover { color: var(--accent); }
.partner-footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--transition);
}
.partner-footer-links a:hover { color: var(--accent); }

/* Partner sticky CTA (mobile) */
.partner-sticky-cta {
  display: none;
}
@media (max-width: 959px) {
  .partner-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 20px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 -2px 12px rgba(0,0,0,.15);
    transition: background var(--transition);
  }
  .partner-sticky-cta:hover {
    background: var(--accent-hover);
  }
  body:has(.partner-sticky-cta) {
    padding-bottom: 56px;
  }
}

/* =========================================================
   PRIVACY / POLICY PAGE
   ========================================================= */
.policy-page {
  padding: 40px 0 60px;
}
.policy-wrap {
  max-width: 780px;
  margin-inline: auto;
}
.back-link {
  display: inline-block;
  font-size: .9rem;
  color: var(--accent);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.back-link:hover {
  color: var(--accent-hover);
}
.policy-page h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.policy-updated {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.policy-section {
  margin-bottom: 36px;
}
.policy-section h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.policy-section h3 {
  font-size: 1.05rem;
  color: var(--primary-light);
  margin-top: 20px;
  margin-bottom: 8px;
}
.policy-section p {
  margin-bottom: 12px;
  color: var(--text);
}
.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}
.policy-section ul li {
  margin-bottom: 6px;
}
.policy-section code {
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9rem;
}

/* Policy table */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: .9rem;
}
.policy-table th,
.policy-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.policy-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.policy-table tr:hover td {
  background: var(--bg-alt);
}

/* Consent widget */
.consent-widget {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--border);
}
.consent-widget h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.consent-status {
  margin-bottom: 16px;
  font-size: .95rem;
}
.consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Small button variant */
.btn-sm {
  padding: 8px 20px;
  font-size: .85rem;
}
/* Outline button on light background */
.consent-actions .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}
.consent-actions .btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* =========================================================
   UTILITIES
   ========================================================= */
[hidden] { display: none !important; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* =========================================================
   RESPONSIVE – tablet (>= 640px)
   ========================================================= */
@media (min-width: 640px) {
  .stats-grid        { grid-template-columns: repeat(4, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid     { grid-template-columns: repeat(2, 1fr); }
  .cities-grid       { grid-template-columns: repeat(3, 1fr); }
  .join-form-row     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* =========================================================
   RESPONSIVE – desktop (>= 960px)
   ========================================================= */
@media (min-width: 960px) {
  .hero-grid,
  .hero-inner {
    grid-template-columns: 1fr 420px;
    align-items: center;
  }

  .services-grid     { grid-template-columns: repeat(3, 1fr); }

  .process-grid {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .process-arrow { transform: rotate(0deg); margin: 0; margin-top: 28px; }
  .process-card { max-width: 260px; }
  .process-step { max-width: 260px; }
  .process-connector { min-height: 0; }
  .process-connector svg { transform: rotate(0deg); }

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

  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-grid       { grid-template-columns: 2fr 1fr 1fr; }

  .join-hero-inner   { grid-template-columns: 1fr 300px; }
  .benefits-grid     { grid-template-columns: repeat(3, 1fr); }
  .join-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
  .join-step { max-width: 240px; }
  .cities-grid       { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   RESPONSIVE – small (< 540px)
   ========================================================= */
@media (max-width: 540px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-btns { justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }

  .policy-table { font-size: .8rem; }
  .policy-table th,
  .policy-table td { padding: 8px 10px; }
  .consent-actions { flex-direction: column; }

  /* Reviews: hide nav arrows on mobile, swipe instead */
  .reviews-carousel-prev,
  .reviews-carousel-next { display: none; }
  .reviews-carousel { padding-inline: 0; }
  .review-card { flex: 0 0 85vw; }
  .review-form-body { padding-inline: 1.25rem; }
}

/* =========================================================
   GALLERY – Completed work photos
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-alt);
  transition: box-shadow var(--transition), transform var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 10px 14px;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
}

/* --- Lightbox --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery-lightbox[hidden] { display: none; }

.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-lightbox-caption {
  color: #fff;
  margin-top: 12px;
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s;
  padding: 8px;
}

.gallery-lightbox-close:hover { opacity: 1; }

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
  transition: opacity .2s, background .2s;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .22);
}

.gallery-lightbox-prev { left: 16px; }
.gallery-lightbox-next { right: 16px; }

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

@media (max-width: 540px) {
  .gallery-grid { gap: 10px; }
  .gallery-lightbox-prev,
  .gallery-lightbox-next { width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARTNER ONBOARDING FORM
   ═══════════════════════════════════════════════════════════════════════════ */

.onboarding-header-badge {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; background: #F4671B; color: #fff;
  padding: 4px 12px; border-radius: 20px;
}

.onboarding-wrap {
  max-width: 780px; margin: 0 auto; padding: 32px 20px 80px;
}

/* Progress bar */
.onboarding-progress {
  margin-bottom: 36px;
}
.onboarding-progress-inner {
  display: flex; align-items: center; gap: 0;
}
.onboarding-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: default; flex-shrink: 0;
}
.onboarding-step-dot.is-done { cursor: pointer; }
.dot-num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #D1D5DB; background: #fff; color: #9CA3AF;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; transition: all .2s;
}
.onboarding-step-dot.is-active .dot-num {
  background: #F4671B; border-color: #F4671B; color: #fff;
}
.onboarding-step-dot.is-done .dot-num {
  background: #10B981; border-color: #10B981; color: #fff;
}
.dot-label {
  font-size: .7rem; font-weight: 500; color: #9CA3AF;
  white-space: nowrap;
}
.onboarding-step-dot.is-active .dot-label { color: #F4671B; font-weight: 700; }
.onboarding-step-dot.is-done .dot-label { color: #10B981; }
.onboarding-step-line {
  flex: 1; height: 2px; background: #D1D5DB; transition: background .3s; margin: 0 6px; margin-bottom: 18px;
}
.onboarding-step-line.is-done { background: #10B981; }

/* Card */
.onboarding-card {
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,.06);
  overflow: hidden;
}

.onboarding-step { display: none; padding: 40px; }
.onboarding-step.is-active { display: block; }

.onboarding-step-header {
  margin-bottom: 32px; border-bottom: 1px solid #F3F4F6; padding-bottom: 20px;
}
.onboarding-step-header h2 {
  font-size: 1.4rem; font-weight: 700; color: #0D2137; margin: 0 0 6px;
}
.onboarding-step-header p {
  color: #6B7280; font-size: .9rem; margin: 0;
}

/* Fields */
.onboarding-fields { display: flex; flex-direction: column; gap: 24px; }
.onboarding-field label {
  display: block; font-weight: 600; font-size: .875rem; color: #374151; margin-bottom: 8px;
}
.onboarding-field input[type="text"],
.onboarding-field input[type="tel"],
.onboarding-field input[type="email"],
.onboarding-field select {
  width: 100%; padding: 11px 14px; border: 1.5px solid #D1D5DB; border-radius: 8px;
  font-size: .95rem; color: #111827; background: #fff; transition: border-color .15s;
  box-sizing: border-box;
}
.onboarding-field input:focus,
.onboarding-field select:focus {
  outline: none; border-color: #F4671B; box-shadow: 0 0 0 3px rgba(244,103,27,.12);
}
.req { color: #EF4444; }
.field-hint { font-size: .78rem; color: #9CA3AF; margin-top: 4px; display: block; }
.field-error { font-size: .8rem; color: #EF4444; margin-top: 4px; display: block; min-height: 1em; }

/* Tag chips */
.tag-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px;
}
.tag-chip {
  padding: 6px 14px; border: 1.5px solid #E5E7EB; border-radius: 20px;
  background: #F9FAFB; color: #374151; font-size: .82rem; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.tag-chip:hover { border-color: #F4671B; color: #F4671B; }
.tag-chip.is-active {
  background: #F4671B; border-color: #F4671B; color: #fff;
}
.tag-chip--custom { border-style: dashed; }
.tag-chip-remove { margin-left: 4px; font-size: .9rem; opacity: .75; }

/* Custom service input */
.custom-service-input {
  display: flex; gap: 8px; align-items: center; margin-top: 4px;
}
.custom-service-input input[type="text"] {
  flex: 1; padding: 7px 12px; border: 1.5px solid #E5E7EB; border-radius: 8px;
  font-size: .85rem; color: #374151; background: #FAFAFA;
}
.custom-service-input input[type="text"]:focus { outline: none; border-color: #F4671B; }
.btn-add-service {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; background: #F9FAFB; border: 1.5px solid #E5E7EB; border-radius: 8px;
  font-size: .82rem; font-weight: 600; color: #374151; cursor: pointer; white-space: nowrap;
  transition: all .15s;
}
.btn-add-service:hover { border-color: #F4671B; color: #F4671B; }

/* Actions */
.onboarding-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; padding-top: 24px; border-top: 1px solid #F3F4F6;
}

/* Plans grid */
.onboarding-plans {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 24px;
}
.onboarding-no-plans {
  color: #6B7280; font-size: .9rem; grid-column: 1 / -1; text-align: center;
  padding: 24px;
}
.plan-card {
  border: 2px solid #E5E7EB; border-radius: 12px; padding: 24px;
  cursor: pointer; transition: all .15s; background: #fff; position: relative;
}
.plan-card:hover { border-color: #F4671B; box-shadow: 0 4px 16px rgba(244,103,27,.1); }
.plan-card.is-selected { border-color: #F4671B; background: #FFF7F3; }

.plan-card-header { margin-bottom: 16px; }
.plan-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
  padding: 3px 9px; border-radius: 4px; margin-right: 4px; margin-bottom: 8px;
}
.plan-badge--free { background: #ECFDF5; color: #059669; }
.plan-badge--exclusive { background: #EEF2FF; color: #4F46E5; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: #0D2137; margin: 0 0 4px; }
.plan-desc { font-size: .85rem; color: #6B7280; margin: 0; }

.plan-pricing { background: #F9FAFB; border-radius: 8px; padding: 14px; margin-bottom: 16px; }
.plan-price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #374151; margin-bottom: 6px;
}
.plan-price-row:last-child { margin-bottom: 0; }
.plan-price-val { font-weight: 700; color: #0D2137; }

.plan-features { list-style: none; padding: 0; margin: 0 0 16px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .85rem; color: #374151; margin-bottom: 6px;
}
.plan-features li svg { flex-shrink: 0; color: #10B981; margin-top: 2px; }

.plan-select-wrap { margin-top: 16px; }
.plan-radio { display: none; }
.plan-select-btn {
  display: block; text-align: center; padding: 10px;
  border: 2px solid #F4671B; border-radius: 8px; color: #F4671B;
  font-weight: 600; font-size: .875rem; cursor: pointer; transition: all .15s;
}
.plan-card.is-selected .plan-select-btn {
  background: #F4671B; color: #fff;
}

/* Plan FAQ */
.plan-faq { margin-bottom: 16px; }
.plan-faq-item {
  border-top: 1px solid #F3F4F6; font-size: .85rem;
}
.plan-faq-item summary {
  padding: 10px 0; cursor: pointer; font-weight: 600; color: #374151;
  list-style: none; display: flex; justify-content: space-between;
}
.plan-faq-item summary::-webkit-details-marker { display: none; }
.plan-faq-item summary::after { content: '+'; color: #9CA3AF; }
.plan-faq-item[open] summary::after { content: '−'; }
.plan-faq-answer { color: #6B7280; padding: 0 0 10px; line-height: 1.6; }

/* Sales pitch common section */
.onboarding-sales-pitch {
  margin-top: 32px; padding: 24px; background: #F9FAFB; border-radius: 12px;
  border: 1px solid #E5E7EB;
}
.onboarding-sales-pitch h3 {
  font-size: 1rem; font-weight: 700; color: #0D2137; margin: 0 0 16px;
}

/* Review */
.onboarding-review { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.review-section {
  padding: 20px; background: #F9FAFB; border-radius: 10px; border: 1px solid #E5E7EB;
}
.review-section h4 {
  font-size: .9rem; font-weight: 700; color: #0D2137; margin: 0 0 12px;
  display: flex; justify-content: space-between; align-items: center;
}
.review-edit {
  background: none; border: 1px solid #D1D5DB; border-radius: 6px;
  padding: 3px 10px; font-size: .75rem; color: #6B7280; cursor: pointer;
  font-weight: 500; transition: all .15s;
}
.review-edit:hover { border-color: #F4671B; color: #F4671B; }
.review-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: .85rem; color: #374151; margin-bottom: 6px; gap: 12px;
}
.review-label { color: #9CA3AF; flex-shrink: 0; }
.review-value { font-weight: 600; text-align: right; }

/* Terms */
.onboarding-terms { margin-bottom: 16px; }
.terms-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: #374151; cursor: pointer;
}
.terms-label input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; }
.terms-label a { color: #F4671B; }

/* Global error */
.onboarding-global-error {
  background: #FEF2F2; border: 1px solid #FCA5A5; border-radius: 8px;
  padding: 12px 16px; color: #B91C1C; font-size: .875rem; margin-bottom: 16px;
}

/* Success */
@keyframes ob-fadein { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes checkmark-circle { from { stroke-dashoffset: 166; } to { stroke-dashoffset: 0; } }
@keyframes checkmark-tick { from { stroke-dashoffset: 48; } to { stroke-dashoffset: 0; } }

.onboarding-success {
  padding: 60px 40px; text-align: center;
  animation: ob-fadein .5s ease both;
}
.success-checkmark {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.checkmark {
  width: 80px; height: 80px;
}
.checkmark-circle {
  stroke: #22c55e;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkmark-circle .6s cubic-bezier(.65,0,.45,1) .1s forwards;
}
.checkmark-tick {
  stroke: #22c55e;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkmark-tick .4s cubic-bezier(.65,0,.45,1) .65s forwards;
}
.onboarding-success h2 {
  font-size: 1.5rem; font-weight: 700; color: #0D2137; margin-bottom: 12px;
}
.onboarding-success p { color: #6B7280; font-size: 1rem; line-height: 1.6; margin-bottom: 4px; }
.success-hint { font-size: .875rem !important; color: #9CA3AF !important; margin-top: 8px; }

/* City locked badge */
.city-locked-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 8px;
  background: #EFF6FF; border: 1.5px solid #BFDBFE;
  color: #1D4ED8; font-weight: 600; font-size: .95rem;
}

/* Plan tiers */
.plan-tiers { margin-bottom: 16px; }
.plan-tiers-label { font-size: .8rem; font-weight: 600; color: #6B7280; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.plan-tier-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 8px; cursor: pointer;
  border: 1.5px solid #E5E7EB; margin-bottom: 6px;
  background: #FAFAFA; transition: all .13s;
}
.plan-tier-option:hover { border-color: #F4671B; background: #FFF7F3; }
.plan-tier-option.is-selected { border-color: #F4671B; background: #FFF7F3; }
.plan-tier-option input[type="radio"] { accent-color: #F4671B; flex-shrink: 0; width: 16px; height: 16px; }
.plan-tier-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.plan-tier-name { font-weight: 700; font-size: .9rem; color: #0D2137; }
.plan-tier-prices { display: flex; align-items: center; gap: 4px; font-size: .82rem; color: #374151; }
.plan-tier-sep { color: #9CA3AF; }
.plan-tier-unit { color: #9CA3AF; font-size: .78rem; }

/* Responsive */
@media (max-width: 640px) {
  .onboarding-wrap { padding: 16px 12px 60px; }
  .onboarding-step { padding: 24px 20px; }
  .onboarding-plans { grid-template-columns: 1fr; }
  .dot-label { display: none; }
  .onboarding-step-line { margin: 0 4px; margin-bottom: 10px; }
  .dot-num { width: 30px; height: 30px; font-size: .8rem; }
  .onboarding-success { padding: 40px 20px; }
}
