/* =====================================================
   BESTWILL.PL — Main Stylesheet
   Design: Minimal luxury (inspired by pleada.pro)
   Colors: Navy #1B2B4B + Gold #C9A84C
   Font: Plus Jakarta Sans
   ===================================================== */

/* ---------- 0. GOOGLE FONTS — loaded via <link> in HTML, not @import ---------- */

/* ---------- 1. CSS VARIABLES ---------- */
:root {
  --navy:       #1B2B4B;
  --navy-light: #2A3F6B;
  --gold:       #C9A84C;
  --gold-dark:  #A88835;
  --gold-light: #E8D5A0;
  --white:      #FFFFFF;
  --bg-warm:    #F9F7F4;
  --bg-light:   #F4F1EC;
  --text-dark:  #1B2B4B;
  --text-body:  #4A5568;
  --text-muted: #8795A8;
  --border:     #E4DDD4;
  --shadow-sm:  0 2px 8px rgba(27,43,75,0.08);
  --shadow-md:  0 4px 24px rgba(27,43,75,0.10);
  --shadow-lg:  0 8px 48px rgba(27,43,75,0.14);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 0.22s ease-in-out;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
/* Leaflet tiles must NOT be constrained by global img reset */
.leaflet-container img,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow { max-width: none !important; max-height: none !important; display: inline !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { font-size: 1rem; line-height: 1.7; color: var(--text-body); }

.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm     { font-size: 0.875rem; }
.font-600    { font-weight: 600; }

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.section-sm { padding: 48px 0; }
.section-navy { background: var(--navy); }
.section-warm { background: var(--bg-warm); }
.section-light { background: var(--bg-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap-sm { gap: 8px; }
.flex-gap-md { gap: 16px; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }

/* ---------- 5. SECTION HEADERS ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.divider.center { margin: 16px auto 24px; }

/* ---------- 6. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,43,75,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--gold-dark); gap: 12px; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- 7. NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.navbar.transparent { background: transparent; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-logo .best { color: var(--navy); }
.navbar-logo .will { color: var(--gold); }
.navbar.transparent .navbar-logo .best { color: var(--white); }
.navbar.transparent .navbar-logo .will { color: var(--gold); }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav a:hover { background: var(--bg-warm); color: var(--gold); }
.navbar.transparent .navbar-nav a { color: rgba(255,255,255,0.9); }
.navbar.transparent .navbar-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar.transparent .navbar-phone { color: var(--white); }
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  color: var(--navy);
}
.navbar.transparent .navbar-toggle { color: var(--white); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 100px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-phone {
  margin-top: 24px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
}
.mobile-nav-close {
  position: fixed;
  top: 22px; right: 24px;
  background: none; border: none;
  font-size: 1.5rem;
  color: var(--navy);
  z-index: 1000;
}

/* ---------- 8. HERO SECTION (light / pleada.pro style) ---------- */
.hero-light {
  background: #F2E8DC;
  padding: 130px 0 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-light-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 0;
}
.hero-light-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero-light-brand {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero-light-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero-light-subtitle {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-light-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 44px;
  border-radius: 100px;
  transition: var(--transition);
  margin-bottom: 64px;
}
.hero-light-cta:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,43,75,0.22);
}

/* Hero Mosaic */
.hero-mosaic {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
}
.hero-mosaic-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.hero-mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-mosaic-card:hover img { transform: scale(1.03); }
.hero-mosaic-card.card-1 { height: 300px; margin-bottom: 48px; }
.hero-mosaic-card.card-2 { height: 380px; margin-bottom: 0; }
.hero-mosaic-card.card-3 { height: 260px; margin-bottom: 72px; }
.hero-mosaic-card.card-4 { height: 350px; margin-bottom: 24px; }
.hero-stat-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 106px;
  height: 106px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
}
.hero-stat-badge .hsb-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-badge .hsb-num sup { font-size: 0.85rem; font-weight: 700; }
.hero-stat-badge .hsb-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 4px;
}

/* Navbar light variant (for cream hero pages) */
.navbar-light {
  background: rgba(242,232,220,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar-light.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.navbar-light .navbar-logo .best { color: var(--navy); }
.navbar-light .navbar-logo .will { color: var(--gold); }
.navbar-light .navbar-nav a { color: var(--navy); }
.navbar-light .navbar-nav a:hover { background: rgba(27,43,75,0.06); color: var(--gold); }
.navbar-light .navbar-phone { color: var(--navy); }
.navbar-light .navbar-toggle { color: var(--navy); }

/* Responsive hero mosaic */
@media (max-width: 900px) {
  .hero-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-mosaic-card.card-1,
  .hero-mosaic-card.card-3 { margin-bottom: 0; }
  .hero-mosaic-card.card-2,
  .hero-mosaic-card.card-4 { margin-bottom: 0; }
  .hero-mosaic-card { height: 220px !important; }
}
@media (max-width: 600px) {
  .hero-light { padding-top: 100px; }
  .hero-light-brand { font-size: clamp(3rem, 14vw, 5rem); letter-spacing: -2px; }
  .hero-mosaic { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px; }
  .hero-mosaic-card { height: 160px !important; border-radius: 14px; }
  .hero-light-cta { margin-bottom: 36px; }
}

/* ---------- 8b. ADVANTAGES SECTION (screen 2) ---------- */
.adv-section {
  padding: 100px 0 80px;
  background: var(--white);
}
.adv-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.adv-tagline {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-top: 16px;
  font-weight: 400;
}
.adv-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.adv-heading em {
  font-style: normal;
  color: var(--gold);
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.adv-card { display: flex; flex-direction: column; gap: 20px; }
.adv-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 300px;
}
.adv-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.adv-card:hover .adv-card-img img { transform: scale(1.04); }
.adv-card-badges {
  position: absolute;
  bottom: 16px; left: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.adv-badge {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(27,43,75,0.1);
}
.adv-card-price-badge {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.adv-price-old {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}
.adv-price-new {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.adv-price-new small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}
.adv-notification {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(27,43,75,0.18);
}
.adv-notif-logo {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.adv-notif-brand {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
}
.adv-notif-text {
  font-size: 0.8125rem;
  color: var(--text-body);
}
.adv-notif-time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.adv-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.adv-card-desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}
/* Duo photo card */
.adv-card-duo {
  display: flex;
  overflow: hidden;
  position: relative;
}
.duo-img {
  width: 50%; height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.adv-card:hover .duo-img { transform: scale(1.04); }
.duo-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  color: var(--navy);
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

/* CTA card (dark navy) */
.adv-card-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  justify-content: center;
  gap: 20px;
}
.adv-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.adv-cta-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.adv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 20px 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  justify-content: space-between;
}
.adv-cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.adv-cta-arrow {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.adv-cta-btn:hover .adv-cta-arrow {
  background: var(--navy);
  color: var(--gold);
}

@media (max-width: 900px) {
  .adv-header { grid-template-columns: 1fr; gap: 24px; }
  .adv-grid { grid-template-columns: 1fr; gap: 32px; }
  .adv-card-img { height: 240px; }
  .adv-card-cta { padding: 32px 24px; }
}

/* ---------- 8c. WARUNKI WSPOLPRACY (screen 4a) ---------- */
.terms-section {
  padding: 100px 0;
  background: #F2E8DC;
}
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.terms-quote {
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.7;
  font-style: italic;
  margin: 20px 0 28px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.terms-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.terms-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.terms-author-name { font-weight: 700; color: var(--navy); font-size: 0.9375rem; }
.terms-author-role { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }
.terms-heading {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 24px;
}
.terms-heading em { font-style: normal; color: var(--gold); }
.terms-desc {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 560px;
}

/* ---------- 8d. TELEGRAM SECTION (screen 4b) ---------- */
.tg-section {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.tg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tg-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}
.tg-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 16px 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  min-width: 240px;
}
.tg-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.tg-btn-arrow {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.tg-btn:hover .tg-btn-arrow { background: var(--navy); color: var(--gold); }

/* Phone mockup */
.tg-right {
  position: relative;
  padding: 20px 0 20px 220px; /* room for left-side badges */
}
.tg-phone {
  background: var(--white);
  border-radius: 28px;
  padding: 20px;
  max-width: 340px;
  margin: 0 auto 0 0;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}
.tg-phone-inner { display: flex; flex-direction: column; gap: 14px; }
.tg-channel-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.tg-ch-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.tg-ch-avatar svg { width: 44px; height: 44px; }
.tg-ch-name { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.tg-ch-subs { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.tg-message {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.tg-message-alt { background: #EBF5FF; }
.tg-msg-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tg-msg-text { font-size: 0.8125rem; color: var(--text-body); line-height: 1.55; }

/* Floating badges */
.tg-badge {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.tg-badge-1 { top: 20px;  left: 10px; }
.tg-badge-2 { top: 50%;  left: 10px; transform: translateY(-50%); }
.tg-badge-3 { bottom: 20px; left: 10px; }

@media (max-width: 900px) {
  .terms-grid { grid-template-columns: 1fr; gap: 40px; }
  .tg-grid { grid-template-columns: 1fr; gap: 48px; }
  .tg-phone { max-width: 100%; }
  .tg-badge { display: none; }
}

/* ---------- 8e. MANIFEST SECTION (screen 5) ---------- */
.manifest-section {
  background: #1C1C1E;
  padding: 100px 0;
}
.manifest-header {
  text-align: center;
  margin-bottom: 56px;
}
.manifest-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.manifest-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.manifest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 340px);
  gap: 16px;
}
.manifest-card {
  border-radius: 20px;
  overflow: hidden;
}
.manifest-card-text {
  background: #2A2A2D;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.manifest-card-text h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0;
}
.manifest-card-text p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.manifest-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.manifest-card-img:hover img { transform: scale(1.05); }

@media (max-width: 1024px) {
  .manifest-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 280px);
  }
}
@media (max-width: 600px) {
  .manifest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .manifest-card { height: 260px; }
  .manifest-card-text { height: auto; }
}

/* ---------- 8f. 4 FEATURES (screen 6 top) ---------- */
.features4-section {
  padding: 80px 0;
  background: #F2E8DC;
}
.features4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.features4-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.features4-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.features4-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .features4-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 480px) {
  .features4-grid { grid-template-columns: 1fr; }
}

/* ---------- 8g. CREDIT FORM + BANKS (screen 6 bottom) ---------- */
.creditform-section {
  background: var(--navy);
  padding: 80px 0;
}
.creditform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.creditform-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.creditform-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.creditform-form { display: flex; flex-direction: column; gap: 12px; }
.creditform-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.creditform-input::placeholder { color: rgba(255,255,255,0.45); }
.creditform-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
/* Phone prefix in creditform */
.creditform-phone-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.creditform-phone-wrap:focus-within { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.creditform-phone-wrap .phone-prefix {
  padding: 0 8px 0 16px;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}
.creditform-input-phone {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  padding: 16px 16px 16px 4px !important;
  border-radius: 0 !important;
}
.creditform-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 16px 14px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.creditform-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.creditform-btn-arrow {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.creditform-btn:hover .creditform-btn-arrow { background: var(--navy); color: var(--gold); }

/* Banks grid */
.banks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.bank-tile {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  user-select: none;
  -webkit-user-select: none;
}
.bank-tile:hover { background: var(--white); transform: translateY(-2px); }
.bank-tile-highlight {
  background: var(--gold) !important;
  flex-direction: column;
  gap: 4px;
}
.bank-rate {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.bank-rate-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
  opacity: 0.75;
}
@media (max-width: 900px) {
  .creditform-grid { grid-template-columns: 1fr; gap: 48px; }
  .banks-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 8h. HOW WE WORK (screen 7) ---------- */
.howwork-section {
  padding: 100px 0;
  background: #F2E8DC;
}
.howwork-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.howwork-heading {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 16px;
}
.howwork-heading em { font-style: normal; color: var(--gold); }
.howwork-subhead {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 380px;
}
.howwork-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
}
.howwork-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Steps list */
.howwork-steps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.howwork-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: var(--transition);
}
.howwork-step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.howwork-step-icon {
  width: 44px; height: 44px;
  background: #F2E8DC;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.howwork-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.howwork-step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* CTA button */
.howwork-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 18px 18px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  width: 100%;
}
.howwork-cta:hover { background: var(--navy-light); }
.howwork-cta-arrow {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.25rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .howwork-grid { grid-template-columns: 1fr; gap: 48px; }
  .howwork-photo-wrap { height: 320px; }
}

/* ---------- 8i. TEAM / KARIERA (screen 8) ---------- */
.team-section {
  padding: 40px 0 80px;
  background: var(--white);
}
.team-card {
  background: #F2E8DC;
  border-radius: 28px;
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.team-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.team-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 400px;
}
.team-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 16px 16px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-width: 260px;
}
.team-cta:hover { background: var(--navy-light); }
.team-cta-arrow {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.125rem;
  flex-shrink: 0;
}
/* Avatars grid */
.team-avatars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.team-avatar {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}
.team-avatar:hover img { transform: scale(1.07); }
.team-avatar-plus {
  background: var(--white) !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  border: 2px solid var(--border);
}
@media (max-width: 1024px) {
  .team-card { padding: 48px 40px; }
  .team-avatars { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .team-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .team-avatars { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 8j. REVIEWS (screen 9) ---------- */
.reviews-section {
  padding: 100px 0 80px;
  background: #F2E8DC;
  overflow: hidden;
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.reviews-tag {
  display: inline-block;
  border: 1px solid rgba(27,43,75,0.2);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.reviews-heading {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -1px;
}
.reviews-nav { display: flex; gap: 12px; padding-bottom: 8px; }
.reviews-nav-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 1.25rem;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.reviews-nav-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
/* Static 3-col grid (replaces slider) */
.reviews-static {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
/* Before/After hover card */
.adv-before-after {
  position: relative;
  overflow: hidden;
}
.ba-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.ba-before { opacity: 1; position: relative; }
.ba-after  { opacity: 0; }
.adv-card:hover .ba-before { opacity: 0; }
.adv-card:hover .ba-after  { opacity: 1; }
.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ba-label-before { left: 12px; background: rgba(255,255,255,0.85); color: #1B2B4B; }
.ba-label-after  { right: 12px; background: #C9A84C; color: #1B2B4B; opacity: 0; }
.adv-card:hover .ba-label-before { opacity: 0; }
.adv-card:hover .ba-label-after  { opacity: 1; }
.review-top { display: flex; flex-direction: column; gap: 20px; }
.review-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}
.review-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-date { font-size: 0.8125rem; color: var(--text-muted); white-space: nowrap; }
.review-name { font-weight: 700; font-size: 0.9375rem; color: var(--navy); }
.review-role { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }

/* ---------- 8k. REVIEW CTA (screen 10) ---------- */
.review-cta-section {
  padding: 0 0 80px;
  background: #F2E8DC;
}
.review-cta-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.review-cta-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.review-cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.review-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.review-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 12px 12px 24px;
  border-radius: 100px;
  transition: var(--transition);
  min-width: 200px;
}
.review-cta-btn-outline {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.review-cta-btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.review-cta-btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.review-cta-btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.review-cta-btn-arrow {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
/* Floating review cards right side */
.review-cta-right {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.review-float-1 { top: 0; left: 0; transform: rotate(-3deg); }
.review-float-2 { bottom: 0; right: 0; transform: rotate(2deg); }
.review-float-brand { font-size: 0.75rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.review-float-stars { color: var(--gold); font-size: 0.875rem; margin-bottom: 8px; }
.review-float-text { font-size: 0.8125rem; color: var(--text-body); line-height: 1.5; }
.review-cta-badge {
  width: 120px; height: 120px;
  background: rgba(201,168,76,0.25);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 2;
  position: relative;
}
.review-badge-num {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.review-badge-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .reviews-static { grid-template-columns: 1fr; }
  .review-cta-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .review-cta-right { display: none; }
}

/* ---------- 9. STATS BAR ---------- */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- 10. PROPERTY CARDS ---------- */
.property-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.property-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-light);
}
.property-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .property-card-image img {
  transform: scale(1.04);
}
.property-card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.badge-navy  { background: var(--navy); color: var(--white); }
.badge-gold  { background: var(--gold); color: var(--navy); }
.badge-green { background: #16a34a; color: var(--white); }
.badge-gray  { background: rgba(0,0,0,0.5); color: var(--white); }
.property-card-body { padding: 20px; flex: 1; }
.property-card-developer {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.property-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.property-card-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.property-card-details {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--text-body);
}
.property-card-detail {
  display: flex;
  align-items: center;
  gap: 4px;
}
.property-card-detail svg { color: var(--text-muted); width:14px; height:14px; }
.property-card-price {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.property-card-price small {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
}
.property-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}
.property-card-footer .btn { flex: 1; }

/* ---------- 11. CONFIGURATOR (SEARCH FORM) ---------- */
.configurator {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}
.configurator-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.configurator-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr auto;
  gap: 20px;
  align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,75,0.08);
}

/* Type selector (radio buttons styled as pills) */
.type-selector { display: flex; gap: 8px; flex-wrap: wrap; }
.type-option input { display: none; }
.type-option label {
  display: inline-block;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}
.type-option input:checked + label {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.type-option label:hover { border-color: var(--navy); color: var(--navy); }

/* Range slider */
.range-wrapper { position: relative; }
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.range-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-top: 8px;
}
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(27,43,75,0.2);
  cursor: pointer;
}

/* Rooms checkboxes */
.rooms-selector { display: flex; gap: 6px; }
.room-option input { display: none; }
.room-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}
.room-option input:checked + label {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.room-option label:hover { border-color: var(--navy); color: var(--navy); }

/* ---------- 12. CREDIT RANKING TABLE ---------- */
.ranking-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  white-space: nowrap;
}
.ranking-table thead th {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
}
.ranking-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.ranking-table thead th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.ranking-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.ranking-table tbody tr:last-child { border-bottom: none; }
.ranking-table tbody tr:hover { background: var(--bg-warm); }
.ranking-table tbody tr.top-1 { background: rgba(201,168,76,0.06); }
.ranking-table td {
  padding: 14px 16px;
  color: var(--text-dark);
}
.rank-number {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  width: 40px;
}
.rank-1 { color: var(--gold); }
.rank-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}
.bank-cell { display: flex; align-items: center; gap: 12px; }
.bank-logo {
  width: 44px; height: 28px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px;
}
.bank-name { font-weight: 600; color: var(--navy); }
.bank-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-light);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}
.rate-value { font-weight: 700; color: var(--navy); }
.rate-value.best { color: #16a34a; }
.monthly-rate { font-weight: 700; }
.commission-zero { color: #16a34a; font-weight: 600; }
.score-cell { font-weight: 700; color: var(--navy); }

/* Tabs */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 32px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 24px;
  border: none;
  border-radius: calc(var(--radius-sm) - 2px);
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.tab-btn:hover:not(.active) { color: var(--navy); }

/* ---------- 13. STEPS (HOW WE WORK) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0.3;
}
.step-item { text-align: center; padding: 0 16px; }
.step-number {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(27,43,75,0.2);
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---------- 14. TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.9375rem; }
.testimonial-location { font-size: 0.8125rem; color: var(--text-muted); }

/* ---------- 15. FAQ ACCORDION ---------- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--navy); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  cursor: pointer;
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--bg-warm); }
.faq-item.open .faq-question { background: var(--navy); color: var(--white); }
.faq-arrow {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-arrow path { stroke: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-warm);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- 16. CONTACT FORM ---------- */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-control { padding: 13px 16px; font-size: 1rem; }
.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-form select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(22,163,74,0.08);
  border: 1.5px solid rgba(22,163,74,0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  color: #15803d;
  font-weight: 600;
  font-size: 1rem;
}
.form-error-msg {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 4px;
}

/* ---------- 17. ABOUT SECTION ---------- */
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-cert-badges {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
}
.about-cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.about-cert-badge:last-child { border-bottom: none; }
.about-cert-badge svg { color: var(--gold); flex-shrink: 0; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-stat-item {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-number span { color: var(--gold); }
.about-stat-label { font-size: 0.875rem; color: var(--text-muted); }

/* ---------- 18. PDF GUIDE BANNER ---------- */
.guide-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.guide-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: 280px;
  width: 200px; height: 200px;
  background: var(--gold);
  opacity: 0.04;
  border-radius: 50%;
}
.guide-banner-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.guide-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}
.guide-feature-icon {
  color: var(--gold);
  margin-top: 1px;
  flex-shrink: 0;
}
.guide-price-wrap {
  margin-bottom: 24px;
}
.guide-price-old {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.guide-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.guide-price small {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-left: 4px;
}
.guide-mockup-side { text-align: center; }
.guide-mockup {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ---------- 19. BLOG CARDS (PLEADA-style) ---------- */
.blog-container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media(max-width:768px){ .blog-container-wide { padding: 0 16px; } }

.blog-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media(max-width:1200px){ .blog-grid-new { grid-template-columns: repeat(3,1fr); gap:20px; } }
@media(max-width:900px)  { .blog-grid-new { grid-template-columns: repeat(2,1fr); gap:16px; } }
@media(max-width:560px)  { .blog-grid-new { grid-template-columns: 1fr; } }

.blog-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.blog-card:hover { box-shadow: none; transform: none; }

/* Image — square with big radius */
.blog-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e0d8d0;
  border-radius: 20px;
  margin-bottom: 16px;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

/* Bestwill watermark — bottom center of image */
.blog-card-image .blog-bw-mark {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .01em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.blog-card-image .blog-bw-best { color: #1B2B4B; }
.blog-card-image .blog-bw-will { color: #C9A84C; }

/* Category badge over image */
.blog-card-image .blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #222;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  pointer-events: none;
  white-space: nowrap;
}

.blog-card-body { padding: 0; }

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.4;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--navy); }

.blog-card-excerpt { display: none; }

.blog-card-meta {
  font-size: .8125rem;
  color: #999;
}

/* ---------- 19b. BLOG FILTER PILLS ---------- */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.blog-filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid #ccc;
  background: transparent;
  font-size: .875rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.blog-filter-btn:hover { border-color: #888; color: #111; }
.blog-filter-btn.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
  font-weight: 600;
}

/* ---------- 20. PRE-FOOTER CTA ---------- */
.pre-footer {
  background: var(--navy);
  padding: 64px 0;
}
.pre-footer-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.pre-footer h2 { color: var(--white); }
.pre-footer p { color: rgba(255,255,255,0.7); margin-top: 12px; }
.pre-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pre-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}
.pre-footer-contact-item:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
}
.pre-footer-contact-item svg { color: var(--gold); }

/* ---------- 21. FOOTER ---------- */
.footer {
  background: #111927;
  padding: 56px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-brand .logo .best { color: var(--white); }
.footer-brand .logo .will { color: var(--gold); }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--navy); }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-license {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  margin-top: 0;
}
.footer-license-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ---------- 22. FLOATING ELEMENTS ---------- */
.floating-contact {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  font-size: 1.25rem;
}
.floating-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.3); }
.floating-btn-main {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.5rem;
}
.floating-btn-tg { background: #229ED9; color: white; }
.floating-btn-wa { background: #25D366; color: white; }
.floating-btn-phone { background: var(--navy); color: white; }
.floating-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.floating-btn:hover .floating-tooltip { opacity: 1; }

/* ---------- 23. COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,22,40,0.97);
  color: rgba(255,255,255,0.75);
  padding: 10px 20px;
  z-index: 9999;
  display: none;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.cookie-text { font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions .btn { padding: 6px 14px; font-size: 0.78rem; }
@media (max-width: 600px) {
  .cookie-inner { flex-wrap: wrap; gap: 8px; }
  .cookie-text { white-space: normal; }
}

/* ---------- 24. PAGE HEADERS ---------- */
.page-header {
  background: var(--navy);
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-header { padding: 80px 0 40px; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.5rem); }
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.3;
}
.page-header-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.0625rem; max-width: 560px; }

/* Cream variant — Rankingi, Blog, Kontakt */
.page-header-cream {
  background: #F2E8DC;
}
.page-header-cream::after { opacity: 0.15; }
.page-header-cream .page-header-badge { color: var(--navy); opacity: 0.55; }
.page-header-cream h1 { color: var(--navy); }
.page-header-cream p { color: rgba(27,43,75,0.65); }
.page-header-cream .breadcrumb a { color: var(--navy); opacity: 0.55; }
.page-header-cream .breadcrumb span { color: var(--navy); }
.page-header-cream .page-header-title { color: var(--navy); }
.page-header-cream .page-header-sub  { color: rgba(27,43,75,0.65); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ---------- 25. PROPERTY FILTERS SIDEBAR ---------- */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.filters-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 96px;
}
.filters-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filters-clear {
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 500;
}
.filters-clear:hover { color: var(--gold); }
.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type=checkbox] { display: none; }
.checkbox-box {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-item input:checked ~ .checkbox-box {
  background: var(--navy);
  border-color: var(--navy);
}
.checkbox-item input:checked ~ .checkbox-box::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.checkbox-label { font-size: 0.9rem; color: var(--text-body); }

/* Catalog header */
.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.catalog-count {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.catalog-count strong { color: var(--navy); }
.sort-select {
  padding: 8px 32px 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--navy);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* ---------- 26. ALERT / NOTICE BOXES ---------- */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.6;
}
.notice-info { background: rgba(27,43,75,0.06); border-left: 3px solid var(--navy); color: var(--navy); }
.notice-warn { background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold); color: #7A5A00; }
.notice-success { background: rgba(22,163,74,0.08); border-left: 3px solid #16a34a; color: #15803d; }

/* ---------- 27. ADMIN PANEL ---------- */
.admin-body { background: #F1F5F9; min-height: 100vh; }
.admin-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 260px;
  background: var(--navy);
  padding: 24px 0;
  z-index: 100;
  overflow-y: auto;
}
.admin-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
}
.admin-logo .will { color: var(--gold); }
.admin-logo small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.admin-nav a.active { border-left-color: var(--gold); }
.admin-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-main { margin-left: 260px; padding: 32px; }
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.admin-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--bg-warm);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-dark);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-warm); }
.admin-actions { display: flex; gap: 6px; }
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.875rem;
}
.action-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.action-btn.delete:hover { background: #dc2626; border-color: #dc2626; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.admin-stat-card .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.admin-stat-card .label { font-size: 0.875rem; color: var(--text-muted); }
.admin-stat-card .icon { font-size: 1.5rem; margin-bottom: 12px; }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-new { background: rgba(37,99,235,0.1); color: #1d4ed8; }
.status-contacted { background: rgba(201,168,76,0.15); color: #92650A; }
.status-converted { background: rgba(22,163,74,0.1); color: #15803d; }

/* ---------- 28. LOADING STATES ---------- */
.loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 48px auto;
}
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, var(--bg-warm) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ---------- 29. ANIMATIONS ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-in  { animation: fadeIn 0.5s ease forwards; }
.animate-fade-up  { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1  { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2  { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3  { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4  { animation-delay: 0.4s; opacity: 0; }

/* ---------- 30. UTILITIES ---------- */
.hidden  { display: none !important; }
.visible { display: block !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---------- 31. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .guide-banner { grid-template-columns: 1fr; padding: 40px; }
  .guide-mockup-side { display: none; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pre-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}
@media (max-width: 768px) {
  .section, .section-lg { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .configurator { padding: 20px; }
  .configurator-grid { grid-template-columns: 1fr; }
  .navbar-nav, .navbar-phone { display: none; }
  .navbar-toggle { display: flex; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .about-cert-badges { position: static; margin-top: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .guide-banner { padding: 32px 24px; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .admin-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .floating-contact { bottom: 16px; right: 16px; }
  .container { padding: 0 16px; }
  .tabs { width: 100%; }
  .tab-btn { flex: 1; text-align: center; padding: 10px 8px; font-size: 0.875rem; }
}

/* ---------- DEWELOPERZY (screen 11) ---------- */
.devs-section { padding: 100px 0; background: var(--white); }
.devs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.devs-heading {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  margin: 16px 0;
}
.devs-desc { font-size: 1rem; color: var(--text-body); line-height: 1.7; max-width: 480px; }
.devs-header-right { display: flex; gap: 48px; justify-content: flex-end; }
.devs-stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.devs-stat-num span { font-size: 2rem; }
.devs-stat-label { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }
.devs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dev-tile {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 20px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.3px;
  aspect-ratio: 1.6;
  transition: var(--transition);
}
.dev-tile:hover { background: var(--bg-warm); }
.dev-tile:nth-child(6n) { border-right: none; }
.dev-tile:nth-last-child(-n+6) { border-bottom: none; }
.dev-tile-more {
  background: #1C1C1E;
  color: var(--white) !important;
  font-size: 1.375rem;
}
.dev-tile-more:hover { background: var(--navy); }
@media (max-width: 900px) {
  .devs-header { grid-template-columns: 1fr; }
  .devs-grid { grid-template-columns: repeat(3, 1fr); }
  .dev-tile:nth-child(6n) { border-right: 1px solid var(--border); }
  .dev-tile:nth-child(3n) { border-right: none; }
}

/* ---------- FINAL CTA (screen 12) ---------- */
.finalcta-section { padding: 0 0 0; background: var(--white); }
.finalcta-card {
  background: var(--navy);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
}
.finalcta-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  padding: 72px 80px 48px;
  align-items: start;
}
.finalcta-heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
}
.finalcta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.finalcta-inputs { display: flex; gap: 12px; margin-bottom: 12px; }
.finalcta-input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 1rem;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
}
.finalcta-input::placeholder { color: rgba(255,255,255,0.45); }
.finalcta-input:focus { border-color: var(--gold); }
/* Phone prefix wrapper */
.finalcta-phone-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.finalcta-phone-wrap:focus-within { border-color: var(--gold); }
.finalcta-phone-wrap .phone-prefix {
  padding: 0 10px 0 18px;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}
.finalcta-input-phone {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  padding: 15px 18px 15px 4px !important;
  border-radius: 0 !important;
}
.finalcta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 14px 14px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.finalcta-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.finalcta-btn-arrow {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.finalcta-btn:hover .finalcta-btn-arrow { background: var(--navy); color: var(--gold); }
/* Mosaic */
.finalcta-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0 8px 8px;
  height: 280px;
}
.finalcta-photo { border-radius: 12px; overflow: hidden; position: relative; }
.finalcta-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.finalcta-photo:hover img { transform: scale(1.05); }
.finalcta-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.finalcta-badge-num { font-size: 1.375rem; font-weight: 800; color: var(--navy); line-height: 1; }
.finalcta-badge-num span { font-size: 1rem; }
.finalcta-badge-label { font-size: 0.58rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-top: 3px; }
@media (max-width: 900px) {
  .finalcta-top { grid-template-columns: 1fr; padding: 48px 32px 32px; gap: 32px; }
  .finalcta-inputs { flex-direction: column; }
  .finalcta-mosaic { grid-template-columns: repeat(3, 1fr); height: 200px; }
  .finalcta-photo:nth-child(4), .finalcta-photo:nth-child(5) { display: none; }
}

/* ---------- FOOTER NEW ---------- */
.footer-new {
  background: #1C1C1E;
  padding: 72px 0 0;
}
.footer-new-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-new-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.footer-new-logo .best { color: var(--white); }
.footer-new-logo .will { color: var(--gold); }
.footer-new-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-new-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-bottom: 24px;
}
.footer-new-socials { display: flex; gap: 12px; }
.footer-new-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-new-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-new-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-new-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-new-col a:hover { color: var(--white); }
.footer-new-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0;
}
.footer-new-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white) !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 100px;
  margin-top: 8px;
  transition: var(--transition);
}
.footer-new-cta:hover { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; }
.footer-new-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer-new-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-new-grid { grid-template-columns: 1fr; }
  .footer-new-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===== NAVBAR V2 ===== */
.navbar-nav .nav-sep {
  width: 1px; height: 18px;
  background: var(--border);
  margin: 0 8px;
  align-self: center;
  list-style: none;
}
.navbar-nav .nav-ext a { color: var(--text-muted) !important; }
.navbar-nav .nav-ext a:hover { color: var(--gold) !important; }

/* Rankingi — pipes + gold glow pulse */
.nav-rankingi {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px !important;
  border-left:  1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  margin: 0 4px;
  animation: rankingGlow 8s ease-in-out infinite;
}
@keyframes rankingGlow {
  0%,  60%, 100% { text-shadow: none; }
  30%             { text-shadow: 0 0 12px rgba(201,168,76,0.7), 0 0 24px rgba(201,168,76,0.3); }
}
.navbar-nav .nav-ext sup { font-size: 0.6rem; }
.btn-connect {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-connect:hover { background: var(--gold); color: var(--navy); }

/* Hamburger button */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: 12px;
}
.navbar-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 1100px) {
  .navbar-nav { display: none; }
  .navbar-toggle { display: flex; }
}

/* ===== FULLSCREEN MENU ===== */
.fsmenu {
  position: fixed;
  inset: 0;
  background: #F2E8DC;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fsmenu.open {
  opacity: 1;
  pointer-events: all;
}
.fsmenu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 80px 48px;
}
.fsmenu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.fsmenu-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.fsmenu-logo .best { color: var(--navy); }
.fsmenu-logo .will { color: var(--gold); }
.fsmenu-close {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(27,43,75,0.08);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
}
.fsmenu-close:hover { background: var(--navy); color: var(--white); }
.fsmenu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.fsmenu-link {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.3;
  padding: 8px 0;
  transition: var(--transition);
  display: inline-block;
}
.fsmenu-link:hover { color: var(--gold); transform: translateX(8px); }
.fsmenu-link-ext { font-size: clamp(1.25rem, 2.5vw, 2rem); color: var(--text-muted) !important; font-weight: 500; }
.fsmenu-link-ext:hover { color: var(--navy) !important; }
.fsmenu-divider { height: 1px; background: rgba(27,43,75,0.12); margin: 16px 0; width: 60px; }
.fsmenu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.fsmenu-phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.fsmenu-cta {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.fsmenu-cta:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 600px) {
  .fsmenu-inner { padding: 24px 28px 36px; }
  .fsmenu-link { font-size: 1.75rem; }
  .fsmenu-link-ext { font-size: 1.25rem; }
}

/* === Hide ↗ arrows in fullscreen mobile menu === */
.fsmenu-link sup,
.fsmenu-link-ext sup { display: none !important; }

/* === Image protection (no long-press save on mobile) === */
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
img::selection { background: transparent; }

/* ===== CONTACT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,43,75,0.6);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #F2E8DC;
  border-radius: 24px;
  padding: 48px 44px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(27,43,75,0.08);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-input {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 1rem;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  width: 100%;
}
.modal-input:focus { border-color: var(--gold); }
.modal-select { cursor: pointer; color: var(--text-muted); }
.modal-select:valid { color: var(--navy); }
.modal-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 17px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  margin-top: 4px;
}
.modal-btn:hover { background: var(--gold); color: var(--navy); }
.modal-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.modal-privacy a { color: var(--gold); text-decoration: underline; }
@media (max-width: 500px) {
  .modal-box { padding: 36px 20px; }
}
@media (max-width: 380px) {
  .modal-box { padding: 28px 16px; border-radius: 16px; }
  .modal-title { font-size: 1.5rem; }
}

/* ====== BACK BAR ====== */
.back-bar {
  background: rgba(27,43,75,0.04);
  border-bottom: 1px solid rgba(27,43,75,0.08);
  padding: 8px 0;
  font-size: 0.82rem;
}
.back-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.back-bar-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s;
}
.back-bar-link:hover { color: var(--gold); }
.back-bar-sep {
  color: rgba(27,43,75,0.3);
  font-size: 0.75rem;
}
.back-bar-current {
  color: rgba(27,43,75,0.5);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

/* ===================================================
   MOBILE RESPONSIVE FIXES
   =================================================== */

/* ---- Navbar: hamburger visible + btn-connect compact on phones ---- */
@media (max-width: 1100px) {
  /* subtle bottom border so navbar stands out from cream hero */
  .navbar-light { border-bottom: 1px solid rgba(27,43,75,0.08); }
}
@media (max-width: 480px) {
  .btn-connect { font-size: 0.875rem; padding: 9px 16px; }
  /* Slightly larger tap target for hamburger spans */
  .navbar-toggle { padding: 10px; }
}

/* ---- Deweloperzy header-right: flex-wrap on mobile ---- */
@media (max-width: 900px) {
  .devs-header-right {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .devs-header-right .btn {
    white-space: normal !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ---- Telegram section: tg-right had 220px left padding → overflow on mobile ---- */
@media (max-width: 900px) {
  .tg-right { padding: 20px 0; }
}

/* ---- Deweloperzy grid: 3-col is too narrow on phones, use 2 ---- */
@media (max-width: 480px) {
  .devs-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-tile:nth-child(6n)  { border-right: 1px solid var(--border); }
  .dev-tile:nth-child(2n)  { border-right: none; }
  .dev-tile:nth-child(3n)  { border-right: 1px solid var(--border); }
  .dev-tile:nth-last-child(-n+2) { border-bottom: none; }
  .dev-tile:nth-last-child(3)    { border-bottom: 1px solid var(--border); }
}

/* ---- Review CTA buttons: stacked on phones ---- */
@media (max-width: 480px) {
  .review-cta-btns    { flex-direction: column; }
  .review-cta-btn     { min-width: unset; width: 100%; justify-content: center; }
}

/* ---- Final CTA: smaller padding on small phones ---- */
@media (max-width: 480px) {
  .finalcta-top    { padding: 36px 20px 28px; }
  .finalcta-inputs { flex-direction: column; }
  .finalcta-mosaic { grid-template-columns: repeat(2, 1fr); height: 160px; }
  .finalcta-photo:nth-child(n+3) { display: none; }
}

/* ---- Various CTA cards: reduce padding on small phones ---- */
@media (max-width: 480px) {
  .team-card          { padding: 32px 20px; gap: 32px; }
  .review-cta-card    { padding: 40px 20px; }
  .rk-cta-main        { padding: 36px 20px !important; }
  .adv-card-cta       { padding: 28px 20px; }
}

/* ---- Buttons: allow wrap on very narrow screens ---- */
@media (max-width: 360px) {
  .btn           { white-space: normal; }
  .container     { padding: 0 12px; }
  .hero-light-cta { padding: 14px 28px; }
}

/* ---- Section padding on small phones ---- */
@media (max-width: 480px) {
  .section      { padding: 48px 0; }
  .section-lg   { padding: 56px 0; }
  .section-sm   { padding: 32px 0; }
}

/* ---- Configurator grid on phones ---- */
@media (max-width: 480px) {
  .configurator        { padding: 16px; }
  .configurator-title  { font-size: 1rem; margin-bottom: 16px; }
}

/* ---- Fullscreen menu: fix very small screens ---- */
@media (max-width: 360px) {
  .fsmenu-inner { padding: 20px 18px 28px; }
  .fsmenu-link  { font-size: 1.5rem; }
}

/* ---- Footer bottom: wrap on phones ---- */
@media (max-width: 480px) {
  .footer-bottom      { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-links{ justify-content: center; gap: 12px; }
}
