:root {
  --header-height: 82px;

  --dark: #0d151f;
  --dark-2: #131f2b;
  --dark-3: #1d2a38;

  --gold: #c8a35f;
  --gold-alt: #c9a45c;
  --gold-light: #e3c982;
  --gold-soft: #f3ead8;

  --cream: #f7f2e9;
  --cream-2: #f8f3ea;
  --white: #ffffff;

  --text: #182230;
  --muted: #667085;
  --muted-dark: #4d5a68;

  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --radius-pill: 999px;

  --shadow-soft: 0 24px 70px rgba(13, 21, 31, 0.12);
  --shadow-card: 0 18px 48px rgba(13, 21, 31, 0.16);
  --shadow-card-hover: 0 28px 66px rgba(13, 21, 31, 0.24);

  --transition: 0.25s ease;
  --transition-fast: 0.2s ease;
}

/* =========================
   RESET / BASE
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================
   SHARED UTILITIES / COMPONENTS
========================= */

.section-label,
.eyebrow,
.subpage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before,
.subpage-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.section-label {
  margin-bottom: 13px;
  color: var(--gold);
}

.section-label::before {
  width: 28px;
}

.section-title {
  margin-bottom: 26px;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.7px;
}

.btn-main,
.btn-gold,
.footer-cta,
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  font-weight: 800;
}

.btn-main,
.btn-gold,
.btn-hero-outline {
  padding: 13px 22px;
  font-size: 15px;
  border: 2px solid transparent;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn-main {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-main:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #111;
  transform: translateY(-1px);
}

.service-icon,
.area-icon,
.benefit-card i,
.contact-direct-icon,
.thanks-icon,
.thanks-contact-icon,
.thanks-steps li > span,
.step-number,
.calculator-icon,
.calculator-tab i,
.calculator-disclaimer i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-list,
.check-list,
.contact-benefits,
.steps-list,
.footer-links,
.thanks-steps {
  list-style: none;
  padding: 0;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 13, 20, 0.88) 0%, rgba(7, 13, 20, 0.66) 43%, rgba(7, 13, 20, 0.26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.38) 100%);
}

/* =========================
   HEADER / NAVIGATION
========================= */

.top-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  background: rgba(7, 13, 20, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.navbar {
  height: var(--header-height);
  padding: 0;
}

.navbar .container {
  position: relative;
  height: 100%;
}

.brand-logo,
.right-menu,
.header-contact,
.lang-switch,
.lang-box,
.icon-btn,
.mobile-toggle,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  line-height: 1;
}

.brand-logo img {
  width: auto;
  height: 34px;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  padding-inline: 18px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 14.5px;
  font-weight: 700;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-light) !important;
}

.right-menu {
  gap: 10px;
}

.lang-switch {
  gap: 4px;
  padding: 5px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.lang-box {
  justify-content: center;
  min-width: 38px;
  height: 32px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-box.active,
.lang-box:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header-contact {
  gap: 9px;
}

.icon-btn {
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 18px;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.icon-btn:hover {
  background: var(--gold-light);
  color: #111;
  transform: translateY(-2px);
}

.mobile-toggle {
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 26px;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding: 76px 0 70px;
}

.hero-inner {
  width: 100%;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 44px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold-light);
}

.hero-title {
  max-width: 860px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: clamp(-2.4px, -0.04em, -1.2px);
}

.hero-title span {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  width: 100%;
  gap: 18px;
}

/* =========================
   SERVICE CARDS
========================= */

.service-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.9;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 23px;
}

.service-card h2 {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

.badge-free {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* =========================
   ABOUT
========================= */

.about-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(200, 163, 95, 0.16), transparent 28%),
    var(--cream);
}

.about-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-photo-wrap {
  height: 100%;
  background: transparent;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center top;
}

.about-content {
  padding: 58px;
}

.about-name {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
}

.about-position {
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.about-text {
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.8;
}

.about-title {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
}

.about-list {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.about-list li,
.check-list li,
.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.check-list li {
  color: #384554;
  font-weight: 700;
}

.about-list i,
.check-list i {
  margin-top: 1px;
  color: var(--gold);
  font-size: 19px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: var(--radius-pill);
  background: #f5efe4;
  color: var(--dark);
  font-weight: 800;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.contact-pill:hover {
  background: #ead9b8;
  color: var(--dark);
  transform: translateY(-1px);
}

/* =========================
   SUBPAGES
========================= */

.subpage {
  background: var(--cream);
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 13, 20, 0.9) 0%, rgba(7, 13, 20, 0.68) 48%, rgba(7, 13, 20, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.42));
}

.subpage-hero .top-header {
  position: relative;
  z-index: 5;
}

.subpage-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: calc(520px - var(--header-height));
  padding: 70px 0;
}

.subpage-kicker {
  margin-bottom: 18px;
  color: var(--gold-light);
}

.subpage-title {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: clamp(-2.2px, -0.035em, -1px);
}

.subpage-title span {
  color: var(--gold-light);
}

.subpage-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.subpage-section {
  padding: 96px 0;
}

.subpage-section.light {
  background: #fff;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: start;
  gap: 34px;
}

.content-panel,
.form-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.content-panel {
  padding: 48px;
}

.form-panel {
  position: sticky;
  top: 24px;
  padding: 34px;
}

.panel-title {
  margin-bottom: 22px;
  color: var(--dark);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.panel-text {
  margin-bottom: 22px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.8;
}

.steps-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: #7d5c1d;
  font-weight: 900;
}

.step-content h3,
.benefit-card h3 {
  color: var(--dark);
  font-size: 19px;
  font-weight: 900;
}

.step-content h3 {
  margin-bottom: 6px;
}

.step-content p,
.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.benefit-card {
  padding: 26px;
  border-radius: 22px;
  background: var(--cream-2);
  border: 1px solid rgba(200, 163, 95, 0.18);
}

.benefit-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--gold);
  font-size: 23px;
}

.benefit-card h3 {
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 15.5px;
}

/* =========================
   FORM TYPOGRAPHY / AUXILIARY STYLES
========================= */

.contact-form {
  display: grid;
  gap: 15px;
}

.form-title {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.form-subtitle {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.form-check,
.contact-form .form-check {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-check-input:checked,
.contact-form .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

/* =========================
   CTA STRIP
========================= */

.cta-strip-section {
  padding: 96px 0;
}

.cta-strip-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(13, 21, 31, 0.96), rgba(29, 42, 56, 0.96)),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.cta-strip-box h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -1.3px;
}

.cta-strip-box p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 163, 95, 0.15), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(13, 21, 31, 0.08), transparent 30%),
    #fff;
}

.contact-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: var(--shadow-card);
}

.contact-info {
  position: relative;
  height: 100%;
  padding: 58px;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(13, 21, 31, 0.96), rgba(29, 42, 56, 0.96)),
    var(--dark);
  color: #fff;
}

.contact-info::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: var(--radius-pill);
  background: rgba(200, 163, 95, 0.16);
}

.contact-info-inner {
  position: relative;
  z-index: 2;
}

.contact-section .section-label {
  color: var(--gold-light);
}

.contact-title {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.7px;
}

.contact-title span {
  color: var(--gold-light);
}

.contact-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.contact-benefits {
  display: grid;
  gap: 14px;
  margin: 0 0 36px;
}

.contact-benefits li {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact-benefits i {
  margin-top: 1px;
  color: var(--gold-light);
  font-size: 19px;
}

.contact-direct {
  display: grid;
  gap: 14px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.contact-direct-item:hover {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  transform: translateY(-1px);
}

.contact-direct-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 20px;
}

.contact-direct-text {
  display: grid;
  gap: 2px;
}

.contact-direct-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-direct-value {
  color: #fff;
  font-weight: 800;
}

.contact-form-area {
  height: 100%;
  padding: 58px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: #fff;
}

.contact-form-title {
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.contact-form-text {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.65;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 80px 0 28px;
  background: #111;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  max-width: 170px;
  height: auto;
}

.footer-text {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.footer-title {
  margin-bottom: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-alt);
}

.footer-small-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-contact a:hover {
  color: var(--gold-alt);
}

.footer-contact i {
  color: var(--gold-alt);
  font-size: 18px;
}

.socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.social-btn:hover {
  background: var(--gold-alt);
  color: #111;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links a:hover {
  color: var(--gold-alt);
}

/* =========================
   THANK YOU PAGE
========================= */

.thanks-page {
  --thanks-overlay-dark: rgba(7, 13, 20, 0.9);
  --thanks-overlay-mid: rgba(7, 13, 20, 0.72);
  --thanks-overlay-light: rgba(7, 13, 20, 0.38);
  --thanks-glass-bg: rgba(255, 255, 255, 0.08);
  --thanks-glass-border: rgba(255, 255, 255, 0.14);
  --thanks-text-soft: rgba(255, 255, 255, 0.68);

  min-height: 100vh;
  background: var(--dark);
}

.thanks-page .top-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(7, 13, 20, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.thanks-main {
  min-height: 100vh;
}

.thanks-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: calc(var(--header-height) + 78px) 0 86px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, var(--thanks-overlay-dark) 0%, var(--thanks-overlay-mid) 46%, var(--thanks-overlay-light) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.46) 100%),
    var(--thanks-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.thanks-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(200, 163, 95, 0.24), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(227, 201, 130, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 48%);
}

.thanks-hero .container {
  position: relative;
  z-index: 3;
}

.thanks-decoration {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.thanks-decoration-one {
  left: -130px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: rgba(200, 163, 95, 0.13);
}

.thanks-decoration-two {
  top: 150px;
  right: -90px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.06);
}

.thanks-panel {
  position: relative;
  padding: 56px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-card);
}

.thanks-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 56px;
  right: 56px;
  height: 4px;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.thanks-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 24px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 42px;
}

.thanks-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.thanks-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.thanks-panel h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--dark);
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.thanks-panel p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.75;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.thanks-side-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--thanks-glass-bg);
  border: 1px solid var(--thanks-glass-border);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.thanks-side-card h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
}

.thanks-steps {
  display: grid;
  gap: 20px;
  margin: 0;
}

.thanks-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: flex-start;
  gap: 16px;
}

.thanks-steps li > span {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: #7d5c1d;
  font-weight: 900;
}

.thanks-steps strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.thanks-steps p {
  margin-bottom: 0;
  color: var(--thanks-text-soft);
  line-height: 1.6;
}

.thanks-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.thanks-contact-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--gold);
  color: #111;
  font-size: 22px;
}

.thanks-contact-box strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 900;
}

.thanks-contact-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.thanks-contact-box a {
  color: var(--gold-light);
  font-weight: 900;
}

.thanks-contact-box a:hover {
  color: #fff;
}

.thanks-footer {
  padding: 24px 0;
  background: #111;
  color: rgba(255, 255, 255, 0.55);
}

.thanks-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.thanks-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.thanks-footer-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.thanks-footer-links a:hover {
  color: var(--gold-alt);
}

/* =========================
   BUYER CALCULATORS
========================= */

.buyer-calculators-section {
  padding: 96px 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(200, 163, 95, 0.15),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 78%,
      rgba(13, 21, 31, 0.08),
      transparent 30%
    ),
    #fff;
}

/* =========================
   NADPIS KALKULAČEK
========================= */

.calculators-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.calculators-heading .section-title {
  margin-bottom: 18px;
}

.calculators-heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

/* =========================
   ZÁLOŽKY KALKULAČEK
========================= */

.calculator-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.calculator-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(13, 21, 31, 0.1);
  border-radius: 20px;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 12px 34px rgba(13, 21, 31, 0.08);
  font-family: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
}

.calculator-tab i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 21px;
}

.calculator-tab:hover {
  border-color: rgba(200, 163, 95, 0.4);
  box-shadow: 0 18px 44px rgba(13, 21, 31, 0.12);
  transform: translateY(-2px);
}

.calculator-tab:focus-visible {
  outline: 3px solid rgba(200, 163, 95, 0.28);
  outline-offset: 3px;
}

.calculator-tab.active {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.calculator-tab.active i {
  background: var(--gold);
  color: #111;
}

/* =========================
   PANELY KALKULAČEK
========================= */

.calculator-panels {
  width: 100%;
}

.calculator-panel {
  display: none;
  width: 100%;
}

.calculator-panel.active {
  display: block;
}

/* =========================
   HLAVNÍ KARTA KALKULAČKY
========================= */

.calculator-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;

  /*
   * Důležité:
   * start zabrání roztažení pravého boxu
   * na celou výšku levého sloupce.
   */
  align-items: start;

  gap: 24px;
  padding: 28px;

  /*
   * Důležité pro position: sticky.
   * Overflow hidden by sticky chování blokoval.
   */
  overflow: visible;

  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.calculator-content {
  min-width: 0;
  padding: 18px;
}

/* =========================
   ÚVOD KALKULAČKY
========================= */

.calculator-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.calculator-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 28px;
}

.calculator-intro h3 {
  margin-bottom: 14px;
  color: var(--dark);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.1px;
}

.calculator-intro p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

/* =========================
   FORMULÁŘ KALKULAČKY
========================= */

.calculator-form {
  min-width: 0;
}

.calculator-form .row,
.calculator-form [class*="col-"] {
  min-width: 0;
}

.calculator-label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 900;
}

.calculator-input-group {
  width: 100%;
  flex-wrap: nowrap;
}

.calculator-input-group .form-control,
.calculator-input-group .input-group-text {
  min-height: 54px;
  border-color: rgba(13, 21, 31, 0.12);
}

.calculator-input-group .form-control {
  min-width: 0;
  border-radius: 16px 0 0 16px;
  color: var(--dark);
  font-weight: 800;
}

.calculator-input-group .form-control:focus {
  z-index: 3;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(200, 163, 95, 0.18);
}

.calculator-input-group .input-group-text {
  flex: 0 0 auto;
  border-radius: 0 16px 16px 0;
  background: var(--cream-2);
  color: var(--muted-dark);
  font-weight: 800;
  white-space: nowrap;
}

.calculator-help {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* =========================
   VÝSLEDKOVÝ BOX
========================= */

.calculator-result-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  /*
   * Zabrání tomu, aby se box roztáhl
   * na výšku levého sloupce.
   */
  align-self: start;
  width: 100%;
  height: auto;
  min-height: 0;

  padding: 30px;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(13, 21, 31, 0.97),
      rgba(29, 42, 56, 0.97)
    ),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.result-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.calculator-result-box > strong {
  display: block;
  margin-bottom: 26px;
  overflow-wrap: anywhere;
  color: var(--gold-light);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.4px;
}

/* =========================
   ŘÁDKY VÝSLEDKŮ
========================= */

.result-lines {
  display: grid;
  gap: 13px;
  margin-bottom: 26px;
}

.result-lines div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-lines div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.result-lines span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.35;
}

.result-lines strong {
  flex: 0 0 auto;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

/* =========================
   TLAČÍTKO VE VÝSLEDKU
========================= */

.calculator-result-box .btn-gold {
  margin-top: auto;
}

/* =========================
   DISCLAIMER
========================= */

.calculator-disclaimer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-dark);
  font-size: 14.5px;
  line-height: 1.6;
}

.calculator-disclaimer i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 19px;
  line-height: 1;
}

/* =========================
   BAREVNÉ VÝSLEDKY
========================= */

.result-positive {
  color: #7ee0a1 !important;
}

.result-negative {
  color: #ff9b9b !important;
}

.result-neutral {
  color: #fff !important;
}

/* =========================
   STICKY VÝSLEDKOVÝ BOX
========================= */

/*
 * Sticky používáme pouze na dostatečně širokých obrazovkách,
 * kde kalkulačka zůstává ve dvou sloupcích.
 */
@media (min-width: 1200px) {
  .calculator-result-box {
    position: sticky;
    top: 24px;
    z-index: 2;
  }
}

/* =========================
   MENŠÍ NOTEBOOKY
========================= */

@media (max-width: 1199px) {
  .calculator-card {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .calculator-result-box {
    position: static;
    padding: 26px;
  }

  .calculator-result-box > strong {
    font-size: clamp(30px, 3.5vw, 40px);
  }

  .result-lines {
    gap: 11px;
  }

  .result-lines div {
    gap: 12px;
  }

  .result-lines span {
    font-size: 13.5px;
  }

  .result-lines strong {
    font-size: 14px;
  }
}

/* =========================
   TABLETY
========================= */

@media (max-width: 991px) {
  .calculator-tabs {
    grid-template-columns: 1fr;
  }

  .calculator-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .calculator-content {
    padding: 8px;
  }

  .calculator-result-box {
    position: static;
    align-self: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }
}

/* =========================
   MOBILY
========================= */

@media (max-width: 575px) {
  .buyer-calculators-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .calculators-heading {
    margin-bottom: 28px;
  }

  .calculators-heading p {
    font-size: 16px;
    line-height: 1.65;
  }

  .calculator-tabs {
    gap: 10px;
    margin-bottom: 18px;
  }

  .calculator-tab {
    padding: 15px;
    border-radius: 18px;
  }

  .calculator-tab i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 19px;
  }

  .calculator-card {
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
  }

  .calculator-content {
    padding: 4px;
  }

  .calculator-intro {
    margin-bottom: 24px;
  }

  .calculator-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 17px;
    border-radius: 18px;
    font-size: 25px;
  }

  .calculator-intro h3 {
    font-size: 26px;
    letter-spacing: -0.8px;
  }

  .calculator-result-box {
    padding: 24px;
    border-radius: 20px;
  }

  .calculator-result-box > strong {
    margin-bottom: 22px;
    font-size: 32px;
    letter-spacing: -1px;
  }

  .result-lines {
    margin-bottom: 22px;
  }

  .result-lines div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .result-lines strong {
    text-align: left;
    white-space: normal;
  }

  .calculator-disclaimer {
    align-items: flex-start;
    padding: 15px;
    border-radius: 18px;
    font-size: 13.5px;
  }
}

/* =========================
   VELMI MALÉ MOBILY
========================= */

@media (max-width: 390px) {
  .calculator-card {
    padding: 16px;
  }

  .calculator-tab {
    padding: 13px;
    font-size: 14px;
  }

  .calculator-input-group .form-control {
    padding-right: 8px;
    padding-left: 11px;
    font-size: 15px;
  }

  .calculator-input-group .input-group-text {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .calculator-result-box {
    padding: 20px;
  }

  .calculator-result-box > strong {
    font-size: 29px;
  }
}

/* =========================
   SUBPAGE HERO CTA BUTTONS
========================= */

.subpage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .nav-link {
    padding-inline: 10px !important;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 72px;
  }

  .top-header {
    background: rgba(7, 13, 20, 0.42);
  }

  .navbar-collapse {
    position: absolute;
    top: calc(100% + 12px);
    left: 12px;
    right: 12px;
    z-index: 50;
    padding: 18px;
    border-radius: 20px;
    background: rgba(13, 21, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  }

  .navbar-nav {
    align-items: stretch;
  }

  .nav-link {
    padding: 12px 4px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }

  .right-menu {
    justify-content: space-between;
    margin-top: 16px;
  }

  .hero-content {
    align-items: flex-start;
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .hero-copy {
    margin-bottom: 34px;
  }

  .hero-actions,
  .subpage-grid,
  .benefit-grid,
  .calculator-tabs,
  .calculator-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 26px;
  }

  .about-content,
  .contact-info,
  .contact-form-area {
    padding: 42px;
  }

  .about-photo-wrap {
    height: auto;
  }

  .about-photo {
    height: auto;
    min-height: 0;
    object-fit: unset;
  }

  .form-panel {
    position: static;
  }

  .cta-strip-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .contact-form-area {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .footer {
    padding-top: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .thanks-page .top-header {
    background: rgba(7, 13, 20, 0.46);
  }

  .thanks-page .navbar-collapse {
    z-index: 60;
  }

  .thanks-hero {
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 70px;
  }

  .thanks-panel {
    padding: 42px;
  }

  .thanks-panel::before {
    left: 42px;
    right: 42px;
  }

  .thanks-side-card {
    padding: 32px;
  }

  .calculator-content {
    padding: 8px;
  }

  .calculator-result-box {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .subpage-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-lead {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  :root {
    --header-height: 68px;
  }

  .brand-logo img {
    height: 32px;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }

  .navbar-collapse {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    border-radius: 18px;
  }

  .hero-content {
    padding: 44px 16px 36px;
  }

  .eyebrow,
  .subpage-kicker {
    font-size: 12px;
    letter-spacing: 1.1px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .eyebrow::before,
  .subpage-kicker::before {
    width: 24px;
  }

  .hero-title,
  .subpage-title {
    letter-spacing: -1.3px;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-lead,
  .subpage-lead {
    font-size: 17px;
  }

  .hero-lead {
    margin-bottom: 24px;
    line-height: 1.58;
  }

  .hero-copy {
    margin-bottom: 28px;
  }

  .service-card {
    padding: 24px;
    border-radius: 20px;
  }

  .service-card h2 {
    font-size: 22px;
  }

  .btn-main,
  .btn-gold,
  .contact-form .btn-gold {
    width: 100%;
  }

  .about-section,
  .contact-section {
    padding: 72px 0;
  }

  .about-content,
  .contact-info,
  .contact-form-area {
    padding: 30px;
  }

  .about-photo {
    min-height: 360px;
  }

  .section-title,
  .contact-title {
    letter-spacing: -1.2px;
  }

  .contact-pill {
    justify-content: center;
    width: 100%;
  }

  .subpage-hero {
    min-height: 500px;
  }

  .subpage-hero-content {
    min-height: calc(500px - var(--header-height));
    padding: 52px 16px;
  }

  .subpage-section {
    padding: 70px 0;
  }

  .content-panel,
  .form-panel,
  .contact-wrap {
    border-radius: 22px;
  }

  .content-panel,
  .form-panel {
    padding: 26px;
  }

  .steps-list li,
  .thanks-steps li {
    grid-template-columns: 42px 1fr;
  }

  .step-number,
  .thanks-steps li > span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .cta-strip-section {
    padding-bottom: 70px;
  }

  .cta-strip-box {
    padding: 30px;
    border-radius: 22px;
  }

  .contact-info {
    border-radius: 22px 22px 0 0;
  }

  .contact-form-area {
    border-radius: 0 0 22px 22px;
  }

  .contact-direct-item {
    align-items: flex-start;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .footer {
    padding-top: 54px;
  }

  .footer-logo img {
    max-width: 160px;
  }

  .thanks-hero {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 56px;
  }

  .thanks-panel,
  .thanks-side-card {
    padding: 28px;
    border-radius: 22px;
  }

  .thanks-panel::before {
    left: 28px;
    right: 28px;
  }

  .thanks-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 20px;
    font-size: 34px;
  }

  .thanks-panel h1 {
    letter-spacing: -1.2px;
  }

  .thanks-panel p {
    font-size: 16.5px;
    line-height: 1.65;
  }

  .thanks-actions .btn-gold,
  .thanks-actions .btn-main {
    width: 100%;
  }

  .thanks-steps li > span {
    font-size: 14px;
  }

  .thanks-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }



  .buyer-calculators-section {
    padding-bottom: 70px;
  }

  .calculator-tab {
    padding: 15px;
    border-radius: 18px;
  }

  .calculator-tab i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 19px;
  }

  .calculator-card {
    padding: 20px;
    border-radius: 22px;
  }

  .calculator-result-box {
    padding: 24px;
    border-radius: 20px;
  }

  .result-lines div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .result-lines strong {
    text-align: left;
  }

  .subpage-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
  }

  .subpage-hero-actions .btn-gold,
  .subpage-hero-actions .btn-hero-outline {
    width: 100%;
  }
}

/* =========================
   INVESTMENT CALCULATOR
========================= */

.investment-calculator-card {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: start;
  overflow: visible;
}

/* Aby se obsah uvnitř gridu mohl správně zmenšovat */
.investment-calculator-card .calculator-content,
.investment-calculator-card .calculator-form,
.investment-calculator-card .row,
.investment-calculator-card [class*="col-"] {
  min-width: 0;
}

.investment-group-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.investment-group-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 16px;
}

.investment-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 24px;
  padding: 15px 17px;
  border-radius: 18px;
  background: var(--cream-2);
  color: var(--muted-dark);
  border: 1px solid rgba(13, 21, 31, 0.08);
  font-size: 13.5px;
  line-height: 1.6;
}

.investment-note i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
  font-size: 18px;
}

.investment-result-box {
  align-self: start;
  justify-content: flex-start;
  height: auto;
}

.investment-result-lines {
  gap: 10px;
}

.investment-result-lines div {
  padding-bottom: 10px;
}

.investment-result-box > strong {
  font-size: clamp(30px, 3.4vw, 42px);
}

.investment-result-lines span {
  max-width: 210px;
}

.investment-result-lines strong {
  font-size: 14.5px;
}

/* Barevné zvýraznění výsledků */
.result-positive {
  color: #7ee0a1 !important;
}

.result-negative {
  color: #ff9b9b !important;
}

.result-neutral {
  color: #fff !important;
}

/* Lepší chování inputů */
.investment-calculator-card .calculator-input-group {
  width: 100%;
  flex-wrap: nowrap;
}

.investment-calculator-card .calculator-input-group .form-control {
  min-width: 0;
}

.investment-calculator-card .calculator-input-group .input-group-text {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Sticky výsledek pouze tam, kde má dvousloupcový layout smysl */
@media (min-width: 1200px) {
  .investment-result-box {
    position: sticky;
    top: 24px;
    z-index: 2;
  }
}

/* Menší notebooky - trochu zúžíme pravý panel */
@media (max-width: 1399px) and (min-width: 1200px) {
  .investment-calculator-card {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  }

  .investment-result-box {
    padding: 26px;
  }

  .investment-result-lines span {
    max-width: 185px;
  }

  .investment-result-lines strong {
    font-size: 14px;
  }
}

/* Tablety a menší notebooky - přepnutí na jeden sloupec */
@media (max-width: 1199px) {
  .investment-calculator-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .investment-result-box {
    position: static;
    width: 100%;
  }

  .investment-result-lines span {
    max-width: none;
  }
}

/* Důležité:
   Bootstrap col-md-4 dělá od 768 px tři sloupce.
   U této kalkulačky je to mezi 768-991 px moc úzké,
   proto růstové položky přepneme na 2 sloupce. */
@media (max-width: 991px) and (min-width: 768px) {
  .investment-calculator-card .col-md-4 {
    flex: 0 0 auto;
    width: 50%;
  }

  .investment-calculator-card .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .investment-calculator-card .calculator-content {
    padding: 8px;
  }
}

/* Menší tablety a mobily - vše pod sebe */
@media (max-width: 767px) {
  .investment-calculator-card .col-md-4,
  .investment-calculator-card .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }

  .investment-calculator-card .calculator-content {
    padding: 4px;
  }

  .investment-group-title {
    margin-top: 22px;
  }

  .investment-group-title:first-child {
    margin-top: 0;
  }
}

/* Mobily */
@media (max-width: 575px) {
  .investment-calculator-card {
    padding: 18px;
    border-radius: 22px;
  }

  .investment-group-title {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.35;
  }

  .investment-group-title i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 15px;
  }

  .investment-note {
    padding: 14px;
    border-radius: 16px;
    font-size: 13px;
  }

  .investment-result-box {
    padding: 22px;
    border-radius: 20px;
  }

  .investment-result-box > strong {
    font-size: 30px;
  }

  .investment-result-lines div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .investment-result-lines strong {
    text-align: left;
    white-space: normal;
  }

  .investment-calculator-card .calculator-input-group .form-control,
  .investment-calculator-card .calculator-input-group .input-group-text {
    min-height: 52px;
  }
}

/* Velmi malé mobily - input suffix může být užší */
@media (max-width: 390px) {
  .investment-calculator-card {
    padding: 16px;
  }

  .investment-calculator-card .calculator-input-group .form-control {
    font-size: 15px;
    padding-left: 12px;
    padding-right: 10px;
  }

  .investment-calculator-card .calculator-input-group .input-group-text {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .investment-result-box {
    padding: 20px;
  }
}

/* =========================
   SELLER PAGE EXTENSIONS
========================= */

.seller-services-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 163, 95, 0.13), transparent 28%),
    #fff;
}

.seller-section-heading {
  max-width: 880px;
  margin-bottom: 38px;
}

.seller-section-heading .section-title {
  margin-bottom: 18px;
}

.seller-section-heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.seller-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.seller-service-item {
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  border: 1px solid rgba(13, 21, 31, 0.08);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.seller-service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(200, 163, 95, 0.28);
}

.seller-service-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  color: var(--gold);
  font-size: 25px;
}

.seller-service-item h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.seller-service-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.seller-trust-section {
  padding: 96px 0;
  background: var(--cream);
}

.seller-trust-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: stretch;
}

.seller-trust-content,
.seller-trust-box {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.seller-check-list {
  margin-top: 30px;
}

.seller-trust-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(13, 21, 31, 0.97), rgba(29, 42, 56, 0.97)),
    var(--dark);
  color: #fff;
}

.seller-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 22px;
  background: var(--gold);
  color: #111;
  font-size: 30px;
}

.seller-trust-box h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.9px;
}

.seller-trust-box p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.seller-trust-box .btn-main {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.seller-trust-box .btn-main:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.seller-faq-section {
  padding: 96px 0;
  background: #fff;
}

.seller-faq-wrap {
  max-width: 920px;
}

.seller-accordion {
  display: grid;
  gap: 14px;
}

.seller-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: 20px;
  background: var(--cream-2);
  box-shadow: 0 12px 34px rgba(13, 21, 31, 0.06);
}

.seller-accordion .accordion-button {
  padding: 22px 24px;
  background: var(--cream-2);
  color: var(--dark);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.35;
  box-shadow: none;
}

.seller-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--dark);
}

.seller-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(200, 163, 95, 0.18);
}

.seller-accordion .accordion-button::after {
  filter: sepia(1) saturate(1.7) hue-rotate(355deg);
}

.seller-accordion .accordion-body {
  padding: 0 24px 24px;
  background: #fff;
  color: var(--muted-dark);
  line-height: 1.7;
}



@media (max-width: 991px) {
  .seller-service-grid,
  .seller-trust-card {
    grid-template-columns: 1fr;
  }

  .seller-trust-content,
  .seller-trust-box {
    padding: 42px;
  }
}

@media (max-width: 575px) {
  .seller-services-section,
  .seller-trust-section,
  .seller-faq-section {
    padding: 70px 0;
  }

  .seller-service-grid {
    gap: 16px;
  }

  .seller-service-item,
  .seller-trust-content,
  .seller-trust-box {
    padding: 26px;
    border-radius: 22px;
  }

  .seller-trust-box h3 {
    font-size: 24px;
  }

  .seller-accordion .accordion-button {
    padding: 18px 20px;
    font-size: 16px;
  }

  .seller-accordion .accordion-body {
    padding: 0 20px 20px;
  }
}

/* FAQ clean style */
.seller-faq-section .seller-accordion .accordion-button,
.seller-faq-section .seller-accordion .accordion-button:not(.collapsed),
.seller-faq-section .seller-accordion .accordion-button:focus {
  box-shadow: none !important;
  border-bottom: 0 !important;
  outline: none;
}

.seller-faq-section .seller-accordion .accordion-collapse,
.seller-faq-section .seller-accordion .accordion-body {
  border-top: 0 !important;
}

.seller-faq-section .seller-accordion .accordion-button:not(.collapsed) {
  background: #fff;
}


/* =========================
   FSBO / PRODÁVÁM SÁM
========================= */

.fsbo-page {
  background: var(--cream);
}

.fsbo-hero {
  min-height: 610px;
  background-position: center;
}

.fsbo-hero .subpage-hero-content {
  min-height: calc(610px - var(--header-height));
}

.fsbo-section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.fsbo-section-heading .section-title {
  margin-bottom: 18px;
}

.fsbo-section-heading > p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.78;
}

/* =========================
   INTRO
========================= */

.fsbo-intro-section {
  padding: 96px 0 72px;
}

.fsbo-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: stretch;
  gap: 28px;
}

.fsbo-intro-main,
.fsbo-intro-note {
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.fsbo-intro-main {
  background: #fff;
}

.fsbo-intro-main .panel-text:last-child {
  margin-bottom: 0;
}

.fsbo-intro-note {
  background:
    linear-gradient(135deg, rgba(13, 21, 31, 0.98), rgba(29, 42, 56, 0.98)),
    var(--dark);
  color: #fff;
}

.fsbo-intro-note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--gold);
  color: #111;
  font-size: 28px;
}

.fsbo-intro-note h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.fsbo-mini-list,
.fsbo-check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsbo-mini-list li,
.fsbo-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.fsbo-mini-list li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.fsbo-mini-list i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold-light);
  font-size: 18px;
}

.fsbo-check-list {
  margin-top: 24px;
}

.fsbo-check-list li {
  color: var(--muted-dark);
  line-height: 1.55;
}

.fsbo-check-list i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
  font-size: 18px;
}

/* =========================
   MAIN STEPS
========================= */

.fsbo-steps-section {
  padding: 72px 0 104px;
}

.fsbo-step-list {
  display: grid;
  gap: 24px;
}

.fsbo-step-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: 0 16px 45px rgba(13, 21, 31, 0.08);
}

.fsbo-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 70px;
  width: 70px;
  height: 70px;
  border-radius: 23px;
  background:
    linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(200, 163, 95, 0.25);
}

.fsbo-step-content {
  min-width: 0;
}

.fsbo-step-content > h3 {
  margin-bottom: 16px;
  color: var(--dark);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1px;
}

.fsbo-step-content > p {
  margin-bottom: 17px;
  color: var(--muted-dark);
  font-size: 16.5px;
  line-height: 1.78;
}

.fsbo-step-content > p:last-child {
  margin-bottom: 0;
}

.fsbo-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.fsbo-detail-grid > div {
  padding: 24px;
  border-radius: 20px;
  background: var(--cream-2);
  border: 1px solid rgba(13, 21, 31, 0.07);
}

.fsbo-detail-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 900;
}

.fsbo-detail-grid ul,
.fsbo-document-box ul,
.fsbo-photo-box ul,
.fsbo-escrow-card ul,
.fsbo-reservation-box ul,
.fsbo-checklist-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted-dark);
  line-height: 1.58;
}

.fsbo-detail-grid li::marker,
.fsbo-document-box li::marker,
.fsbo-photo-box li::marker,
.fsbo-escrow-card li::marker,
.fsbo-reservation-box li::marker,
.fsbo-checklist-card li::marker {
  color: var(--gold);
}

.fsbo-warning,
.fsbo-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 19px;
  line-height: 1.65;
}

.fsbo-warning {
  background: rgba(220, 53, 69, 0.07);
  color: #7a271a;
  border: 1px solid rgba(220, 53, 69, 0.12);
}

.fsbo-info {
  background: rgba(200, 163, 95, 0.12);
  color: var(--muted-dark);
  border: 1px solid rgba(200, 163, 95, 0.22);
}

.fsbo-warning i,
.fsbo-info i {
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 21px;
}

.fsbo-warning i {
  color: #d92d20;
}

.fsbo-info i {
  color: var(--gold);
}

.fsbo-warning p,
.fsbo-info p {
  margin: 0;
}

.fsbo-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #8a641f;
  font-weight: 900;
  transition:
    gap var(--transition-fast),
    color var(--transition-fast);
}

.fsbo-inline-link:hover {
  gap: 12px;
  color: var(--dark);
}

/* =========================
   DOCUMENTS
========================= */

.fsbo-document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.fsbo-document-box {
  padding: 24px;
  border-radius: 20px;
  background: var(--cream-2);
  border: 1px solid rgba(13, 21, 31, 0.08);
}

.fsbo-document-box > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  border-radius: 16px;
  background: #fff;
  color: var(--gold);
  font-size: 23px;
}

.fsbo-document-box h4 {
  margin-bottom: 13px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
}

/* =========================
   PHOTOGRAPHY
========================= */

.fsbo-photo-step {
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 163, 95, 0.14), transparent 27%),
    #fff;
}

.fsbo-photo-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.fsbo-photo-box {
  padding: 26px;
  border-radius: 22px;
}

.fsbo-photo-box-negative {
  background: rgba(220, 53, 69, 0.055);
  border: 1px solid rgba(220, 53, 69, 0.11);
}

.fsbo-photo-box-positive {
  background: rgba(200, 163, 95, 0.11);
  border: 1px solid rgba(200, 163, 95, 0.22);
}

.fsbo-photo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 17px;
  background: #fff;
  color: var(--gold);
  font-size: 24px;
}

.fsbo-photo-box h4 {
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.fsbo-emphasis {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--dark) !important;
  font-weight: 800;
}

/* =========================
   TERMS GRID
========================= */

.fsbo-terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 25px;
}

.fsbo-terms-grid > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 17px;
  border-radius: 17px;
  background: var(--cream-2);
  color: var(--muted-dark);
  border: 1px solid rgba(13, 21, 31, 0.07);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.48;
}

.fsbo-terms-grid i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 19px;
}

/* =========================
   PROS AND CONS
========================= */

.fsbo-pros-cons-section {
  padding: 100px 0;
  background: #fff;
}

.fsbo-pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fsbo-pros-card,
.fsbo-cons-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.fsbo-pros-card {
  background:
    linear-gradient(180deg, rgba(224, 248, 233, 0.48), #fff 36%);
}

.fsbo-cons-card {
  background:
    linear-gradient(180deg, rgba(255, 236, 233, 0.52), #fff 36%);
}

.fsbo-pros-cons-heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 29px;
}

.fsbo-pros-cons-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  font-size: 26px;
}

.fsbo-pros-card .fsbo-pros-cons-icon {
  background: #dff6e7;
  color: #18794e;
}

.fsbo-cons-card .fsbo-pros-cons-icon {
  background: #ffe3df;
  color: #b42318;
}

.fsbo-pros-cons-heading span:not(.fsbo-pros-cons-icon) {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fsbo-pros-cons-heading h3 {
  margin: 0;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.fsbo-pros-card > ul,
.fsbo-cons-card > ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fsbo-pros-card > ul > li,
.fsbo-cons-card > ul > li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.fsbo-pros-card > ul > li > i {
  margin-top: 2px;
  color: #219653;
  font-size: 18px;
}

.fsbo-cons-card > ul > li > i {
  margin-top: 2px;
  color: #d92d20;
  font-size: 18px;
}

.fsbo-pros-card strong,
.fsbo-cons-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 900;
}

.fsbo-pros-card p,
.fsbo-cons-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.fsbo-cost-note {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  margin-top: 26px;
  padding: 29px;
  border-radius: 23px;
  background: var(--cream-2);
  border: 1px solid rgba(200, 163, 95, 0.21);
}

.fsbo-cost-note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: var(--gold);
  color: #111;
  font-size: 24px;
}

.fsbo-cost-note h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 20px;
  font-weight: 900;
}

.fsbo-cost-note p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* =========================
   ESCROW
========================= */

.fsbo-escrow-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 163, 95, 0.14), transparent 28%),
    var(--cream);
}

.fsbo-escrow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fsbo-escrow-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: 0 16px 44px rgba(13, 21, 31, 0.08);
}

.fsbo-escrow-recommended {
  border-color: rgba(200, 163, 95, 0.52);
}

.fsbo-escrow-risk {
  border-color: rgba(220, 53, 69, 0.18);
}

.fsbo-card-badge {
  position: absolute;
  top: 23px;
  right: 23px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.fsbo-escrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 21px;
  border-radius: 19px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 26px;
}

.fsbo-escrow-risk .fsbo-escrow-icon {
  background: #ffe7e3;
  color: #b42318;
}

.fsbo-escrow-card h3 {
  margin-bottom: 13px;
  color: var(--dark);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.fsbo-escrow-card > p {
  margin-bottom: 19px;
  color: var(--muted-dark);
  line-height: 1.68;
}

.fsbo-escrow-tip {
  margin-top: 20px;
  padding: 15px 17px;
  border-radius: 16px;
  background: var(--cream-2);
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.fsbo-escrow-rules {
  margin-top: 25px;
  padding: 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(13, 21, 31, 0.98), rgba(29, 42, 56, 0.98)),
    var(--dark);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.fsbo-escrow-rules h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.fsbo-escrow-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fsbo-escrow-rules-grid > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 17px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  line-height: 1.5;
}

.fsbo-escrow-rules-grid i {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 19px;
}

/* =========================
   SCENARIOS / ACCORDION
========================= */

.fsbo-scenarios-section {
  padding: 100px 0;
  background: #fff;
}

.fsbo-scenario-accordion {
  display: grid;
  gap: 15px;
  max-width: 1040px;
}

.fsbo-scenario-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(13, 21, 31, 0.09);
  border-radius: 21px;
  background: var(--cream-2);
  box-shadow: 0 12px 36px rgba(13, 21, 31, 0.06);
}

.fsbo-scenario-accordion .accordion-button {
  display: flex;
  gap: 15px;
  padding: 21px 24px;
  background: var(--cream-2);
  color: var(--dark);
  font-size: 17px;
  line-height: 1.42;
  font-weight: 900;
  box-shadow: none;
}

.fsbo-scenario-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--dark);
  box-shadow: none;
}

.fsbo-scenario-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.2rem rgba(200, 163, 95, 0.15);
}

.fsbo-scenario-accordion .accordion-body {
  padding: 0 28px 30px 82px;
  background: #fff;
  color: var(--muted-dark);
  line-height: 1.72;
}

.fsbo-scenario-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  margin-top: -5px;
  margin-bottom: -5px;
  border-radius: 13px;
  background: var(--gold);
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.fsbo-process-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.fsbo-process-list li {
  padding-left: 5px;
}

.fsbo-process-list li::marker {
  color: var(--gold);
  font-weight: 900;
}

.fsbo-complex-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.fsbo-complex-grid > div {
  padding: 19px;
  border-radius: 17px;
  background: var(--cream-2);
  border: 1px solid rgba(13, 21, 31, 0.07);
}

.fsbo-complex-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
  font-weight: 900;
}

.fsbo-complex-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

/* =========================
   RESERVATION
========================= */

.fsbo-reservation-section {
  padding: 100px 0;
  background: var(--cream);
}

.fsbo-reservation-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
}

.fsbo-reservation-content,
.fsbo-reservation-box {
  padding: 45px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.fsbo-reservation-content {
  background: #fff;
}

.fsbo-reservation-box {
  background:
    linear-gradient(135deg, rgba(13, 21, 31, 0.98), rgba(29, 42, 56, 0.98)),
    var(--dark);
  color: #fff;
}

.fsbo-reservation-box h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}

.fsbo-reservation-box ul {
  color: rgba(255, 255, 255, 0.75);
}

.fsbo-reservation-box li::marker {
  color: var(--gold-light);
}

/* =========================
   CHECKLIST
========================= */

.fsbo-checklist-section {
  padding: 100px 0;
  background: #fff;
}

.fsbo-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fsbo-checklist-card {
  padding: 27px;
  border-radius: 22px;
  background: var(--cream-2);
  border: 1px solid rgba(13, 21, 31, 0.08);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.fsbo-checklist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 163, 95, 0.3);
  box-shadow: var(--shadow-soft);
}

.fsbo-checklist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 17px;
  background: #fff;
  color: var(--gold);
  font-size: 23px;
}

.fsbo-checklist-card h3 {
  margin-bottom: 13px;
  color: var(--dark);
  font-size: 20px;
  font-weight: 900;
}

/* =========================
   EXPERT HELP
========================= */

.fsbo-help-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 163, 95, 0.14), transparent 27%),
    var(--cream);
}

.fsbo-help-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: stretch;
  gap: 28px;
}

.fsbo-help-content,
.fsbo-help-aside {
  padding: 46px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.fsbo-help-content {
  background: #fff;
}

.fsbo-expert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 29px;
}

.fsbo-expert-grid > div {
  padding: 20px;
  border-radius: 18px;
  background: var(--cream-2);
  border: 1px solid rgba(13, 21, 31, 0.07);
}

.fsbo-expert-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #fff;
  color: var(--gold);
  font-size: 20px;
}

.fsbo-expert-grid h3 {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 900;
}

.fsbo-expert-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.fsbo-help-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(13, 21, 31, 0.98), rgba(29, 42, 56, 0.98)),
    var(--dark);
  color: #fff;
}

.fsbo-help-aside-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 23px;
  border-radius: 21px;
  background: var(--gold);
  color: #111;
  font-size: 29px;
}

.fsbo-help-aside h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 27px;
  line-height: 1.17;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.fsbo-help-aside p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.72;
}

/* =========================
   FINAL CTA / DISCLAIMER
========================= */

.fsbo-final-cta {
  padding-bottom: 54px;
}

.fsbo-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.fsbo-disclaimer-section {
  padding: 0 0 76px;
}

.fsbo-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 23px;
  border-radius: 19px;
  background: rgba(13, 21, 31, 0.055);
  color: var(--muted);
  border: 1px solid rgba(13, 21, 31, 0.08);
  font-size: 13.5px;
  line-height: 1.65;
}

.fsbo-disclaimer i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
  font-size: 19px;
}

.fsbo-disclaimer p {
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .fsbo-document-grid,
  .fsbo-checklist-grid,
  .fsbo-expert-grid,
  .fsbo-escrow-rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fsbo-terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fsbo-intro-card,
  .fsbo-reservation-card,
  .fsbo-help-card {
    grid-template-columns: 1fr;
  }

  .fsbo-pros-cons-grid,
  .fsbo-escrow-grid {
    grid-template-columns: 1fr;
  }

  .fsbo-intro-main,
  .fsbo-intro-note,
  .fsbo-reservation-content,
  .fsbo-reservation-box,
  .fsbo-help-content,
  .fsbo-help-aside {
    padding: 40px;
  }

  .fsbo-photo-comparison {
    grid-template-columns: 1fr;
  }

  .fsbo-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .fsbo-hero {
    min-height: 590px;
  }

  .fsbo-hero .subpage-hero-content {
    min-height: calc(590px - var(--header-height));
  }

  .fsbo-intro-section,
  .fsbo-steps-section,
  .fsbo-pros-cons-section,
  .fsbo-escrow-section,
  .fsbo-scenarios-section,
  .fsbo-reservation-section,
  .fsbo-checklist-section,
  .fsbo-help-section {
    padding: 72px 0;
  }

  .fsbo-step-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
  }

  .fsbo-step-number {
    position: static;
    width: 58px;
    height: 58px;
    border-radius: 19px;
    font-size: 20px;
  }

  .fsbo-detail-grid,
  .fsbo-document-grid,
  .fsbo-terms-grid,
  .fsbo-checklist-grid,
  .fsbo-expert-grid,
  .fsbo-escrow-rules-grid,
  .fsbo-complex-grid {
    grid-template-columns: 1fr;
  }

  .fsbo-scenario-accordion .accordion-body {
    padding: 0 23px 25px;
  }

  .fsbo-scenario-accordion .accordion-button {
    padding: 19px 20px;
  }
}

@media (max-width: 575px) {
  .fsbo-section-heading {
    margin-bottom: 30px;
  }

  .fsbo-section-heading > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .fsbo-intro-main,
  .fsbo-intro-note,
  .fsbo-reservation-content,
  .fsbo-reservation-box,
  .fsbo-help-content,
  .fsbo-help-aside {
    padding: 27px;
    border-radius: 22px;
  }

  .fsbo-step-card {
    padding: 25px;
    border-radius: 22px;
  }

  .fsbo-step-content > h3 {
    font-size: 24px;
  }

  .fsbo-step-content > p {
    font-size: 16px;
  }

  .fsbo-detail-grid > div,
  .fsbo-document-box,
  .fsbo-photo-box,
  .fsbo-checklist-card {
    padding: 21px;
  }

  .fsbo-pros-card,
  .fsbo-cons-card,
  .fsbo-escrow-card,
  .fsbo-escrow-rules {
    padding: 27px;
    border-radius: 22px;
  }

  .fsbo-pros-cons-heading {
    align-items: flex-start;
  }

  .fsbo-pros-cons-heading h3 {
    font-size: 21px;
  }

  .fsbo-cost-note {
    flex-direction: column;
    padding: 24px;
  }

  .fsbo-card-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 18px;
  }

  .fsbo-scenario-accordion .accordion-button {
    align-items: flex-start;
    gap: 11px;
    font-size: 15.5px;
  }

  .fsbo-scenario-number {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .fsbo-help-aside .btn-gold {
    width: 100%;
  }

  .fsbo-final-actions {
    width: 100%;
  }

  .fsbo-final-actions .btn-gold,
  .fsbo-final-actions .btn-hero-outline {
    width: 100%;
  }

  .fsbo-disclaimer-section {
    padding-bottom: 58px;
  }
}

/* =========================
   FSBO PAGE NAVIGATION
========================= */

.fsbo-page-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  padding: 13px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(13, 21, 31, 0.08);
  box-shadow: 0 10px 30px rgba(13, 21, 31, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.fsbo-page-nav-inner {
  width: 100%;
  min-width: 0;
}

.fsbo-page-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.fsbo-page-nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 7px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--dark);
  border: 1px solid transparent;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.fsbo-page-nav-links a i {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.fsbo-page-nav-links a span {
  white-space: nowrap;
}

.fsbo-page-nav-links a:hover,
.fsbo-page-nav-links a:focus {
  background: var(--gold-soft);
  color: var(--dark);
  border-color: rgba(200, 163, 95, 0.2);
  transform: translateY(-1px);
}

/* Nadpis cílové sekce nebude schovaný pod sticky navigací */
#postup,
#vyhody-nevyhody,
#uschova,
#situace,
#checklist {
  scroll-margin-top: 60px;
}


/* =========================
   TABLETY A MENŠÍ NOTEBOOKY
========================= */

@media (max-width: 991px) {
  .fsbo-page-nav {
    width: 100%;
    padding: 10px 0;
  }

  /* Bootstrap container musí na mobilu zabírat celou šířku */
  .fsbo-page-nav > .container {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
  }

  .fsbo-page-nav-inner {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .fsbo-page-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;

    width: 100%;
    max-width: 100vw;
    min-width: 0;

    margin: 0;
    padding: 0 16px 4px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  /* Skrytí scrollbaru v Chrome, Safari a Edge */
  .fsbo-page-nav-links::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .fsbo-page-nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    min-width: max-content;
    padding: 10px 14px;

    background: var(--cream-2);
    border: 1px solid rgba(13, 21, 31, 0.08);
    white-space: nowrap;
  }

  /* Mezera za posledním odkazem */
  .fsbo-page-nav-links::after {
    content: "";
    display: block;
    flex: 0 0 8px;
    width: 8px;
    height: 1px;
  }

  #postup,
  #vyhody-nevyhody,
  #uschova,
  #situace,
  #checklist {
    scroll-margin-top: 60px;
  }
}


/* =========================
   MOBILY
========================= */

@media (max-width: 767px) {
  /*
   * Na mobilu navigace nezůstává přichycená.
   * Nezabírá tak místo během čtení stránky.
   */
  .fsbo-page-nav {
    position: relative;
    top: auto;
    z-index: 10;
    padding: 9px 0;
  }

  .fsbo-page-nav-links {
    gap: 7px;
    padding: 0 14px 3px;
    scroll-padding-left: 14px;
    scroll-padding-right: 14px;
  }

  .fsbo-page-nav-links a {
    gap: 6px;
    padding: 9px 13px;
    border-radius: var(--radius-pill);
    font-size: 13px;
  }

  .fsbo-page-nav-links a i {
    font-size: 15px;
  }

  /* Navigace už není sticky, proto stačí menší odsazení */
  #postup,
  #vyhody-nevyhody,
  #uschova,
  #situace,
  #checklist {
    scroll-margin-top: 20px;
  }
}


/* =========================
   MALÉ MOBILY
========================= */

@media (max-width: 575px) {
  .fsbo-page-nav-links {
    gap: 6px;
    padding-left: 12px;
    padding-right: 12px;
    scroll-padding-left: 12px;
    scroll-padding-right: 12px;
  }

  .fsbo-page-nav-links a {
    gap: 6px;
    padding: 9px 12px;
    font-size: 12.5px;
  }

  .fsbo-page-nav-links a i {
    font-size: 14px;
  }

  .fsbo-page-nav-links::after {
    flex-basis: 4px;
    width: 4px;
  }
}

/* =========================================================
   SPOLEČNÉ STYLY FORMULÁŘŮ
========================================================= */

/* =========================================================
   ZÁKLADNÍ PROMĚNNÉ

   Použijí se pouze jako fallback, pokud nejsou definované
   v hlavním CSS souboru.
========================================================= */

:root {
  --form-dark: var(--dark, #0d151f);
  --form-dark-2: var(--dark-2, #131f2b);

  --form-gold: var(--gold, #c8a35f);
  --form-gold-light: var(--gold-light, #e3c982);
  --form-gold-soft: var(--gold-soft, #f3ead8);

  --form-cream: var(--cream-2, #f8f3ea);
  --form-white: var(--white, #ffffff);

  --form-text: var(--text, #182230);
  --form-muted: var(--muted, #667085);
  --form-muted-dark: var(--muted-dark, #4d5a68);

  --form-danger: #b42318;
  --form-danger-border: #dc3545;
  --form-danger-background: rgba(220, 53, 69, 0.08);
  --form-danger-focus: rgba(220, 53, 69, 0.16);

  --form-success: #18794e;

  --form-radius: var(--radius-sm, 16px);
  --form-radius-large: 20px;
  --form-radius-pill: var(--radius-pill, 999px);

  --form-transition: var(--transition-fast, 0.2s ease);
}


/* =========================================================
   FORMULÁŘOVÝ KONTEJNER
========================================================= */

.jn-form,
.contact-form,
.valuation-form {
  position: relative;
  width: 100%;
}

/*
 * JN formuláře používají jednotný vertikální grid.
 * Kontaktní formulář na hlavní stránce obsahuje Bootstrap row,
 * proto u něj rozložení uvnitř zajišťuje Bootstrap.
 */
.jn-form,
.valuation-form {
  display: grid;
  gap: 15px;
}

/*
 * Reset výchozích mezer.
 */
.jn-form p,
.contact-form p,
.valuation-form p {
  max-width: 100%;
}

/*
 * Všechna pole se mohou správně zmenšovat uvnitř gridu.
 */
.form-field,
.form-floating,
.form-control,
.form-select {
  min-width: 0;
}


/* =========================================================
   OBAL JEDNOHO POLE
========================================================= */

.form-field {
  position: relative;
  display: block;
  width: 100%;
}

/*
 * Pole uvnitř klasického jn-form.
 */
.jn-form > .form-field {
  margin: 0;
}

/*
 * Pole uvnitř skupin odhadu.
 */
.property-group > .form-field {
  margin: 0;
}

/*
 * Mezera uvnitř rozbalovacích doplňujících informací.
 */
.optional-details > .form-field {
  margin: 0;
}


/* =========================================================
   INPUTY, SELECTY A TEXTAREA
========================================================= */

.form-field .form-control,
.form-field .form-select,
.jn-form .form-control,
.jn-form .form-select,
.contact-form .form-control,
.contact-form .form-select,
.valuation-form .form-control,
.valuation-form .form-select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(13, 21, 31, 0.14);
  border-radius: var(--form-radius);
  background-color: var(--form-white);
  color: var(--form-text);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition:
    border-color var(--form-transition),
    box-shadow var(--form-transition),
    background-color var(--form-transition);
}

/*
 * Přirozené odsazení běžných polí.
 * Bootstrap form-floating si část odsazení upravuje sám.
 */
.form-field .form-control:not(textarea),
.form-field .form-select {
  padding-left: 1rem;
  padding-right: 1rem;
}

/*
 * Select musí mít dostatek prostoru pro šipku Bootstrapu.
 */
.form-field .form-select {
  padding-right: 2.75rem;
}

/*
 * Textarea.
 */
.form-field textarea.form-control,
.jn-form textarea.form-control,
.contact-form textarea.form-control,
.valuation-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

/*
 * Kontaktní formulář na hlavní stránce.
 */
.contact-form textarea.form-control {
  min-height: 132px;
}

/*
 * Odhad – doplňující informace.
 */
.valuation-form textarea.form-control {
  min-height: 110px;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.form-control::placeholder {
  color: rgba(102, 112, 133, 0.72);
  opacity: 1;
}


/* =========================================================
   FORM FLOATING LABELY
========================================================= */

.form-floating {
  position: relative;
  width: 100%;
}

.form-floating > label {
  max-width: calc(100% - 16px);
  overflow: hidden;
  color: var(--form-muted);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label {
  color: #806123;
}

/*
 * Bootstrap používá placeholder pro správné floating labely.
 */
.form-floating > .form-control::placeholder {
  color: transparent;
}


/* =========================================================
   FOCUS
========================================================= */

.form-field .form-control:focus,
.form-field .form-select:focus,
.jn-form .form-control:focus,
.jn-form .form-select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus,
.valuation-form .form-control:focus,
.valuation-form .form-select:focus {
  border-color: var(--form-gold);
  background-color: var(--form-white);
  box-shadow: 0 0 0 0.2rem rgba(200, 163, 95, 0.18);
}


/* =========================================================
   AUTOFILL PROHLÍŽEČE
========================================================= */

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-select:-webkit-autofill {
  -webkit-text-fill-color: var(--form-text);
  box-shadow: 0 0 0 1000px var(--form-white) inset;
  transition: background-color 9999s ease-in-out 0s;
}


/* =========================================================
   DISABLED A READONLY
========================================================= */

.form-control:disabled,
.form-select:disabled,
.form-control[readonly] {
  cursor: not-allowed;
  background-color: #f2f4f7;
  color: var(--form-muted);
  opacity: 0.8;
}


/* =========================================================
   CHYBY JEDNOTLIVÝCH POLÍ
========================================================= */

.field-error {
  display: block;
  width: 100%;
  margin: 6px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(220, 53, 69, 0.12);
  border-radius: 12px;
  background: var(--form-danger-background);
  color: var(--form-danger);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
}

/*
 * Zvýraznění pole, které obsahuje chybu.
 * Třídu has-error přidává floating_field.html.
 */
.form-field.has-error .form-control,
.form-field.has-error .form-select {
  border-color: var(--form-danger-border);
  background-color: #fffafa;
}

.form-field.has-error .form-control:focus,
.form-field.has-error .form-select:focus {
  border-color: var(--form-danger-border);
  box-shadow: 0 0 0 0.2rem var(--form-danger-focus);
}

.form-field.has-error .form-floating > label {
  color: var(--form-danger);
}


/* =========================================================
   FALLBACK PRO STANDARDNÍ DJANGO ERRORLIST

   Použije se, pokud někde omylem vykreslíte {{ field.errors }}
   přímo bez společné šablony.
========================================================= */

.errorlist {
  display: grid;
  gap: 4px;
  margin: 6px 0 0;
  padding: 10px 13px;
  border: 1px solid rgba(220, 53, 69, 0.12);
  border-radius: 12px;
  background: var(--form-danger-background);
  color: var(--form-danger);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.errorlist li {
  margin: 0;
  padding: 0;
}


/* =========================================================
   NON-FIELD ERRORS
========================================================= */

.jn-form .alert-danger,
.contact-form .alert-danger,
.valuation-form .alert-danger,
.django-form-errors {
  display: grid;
  gap: 5px;
  width: 100%;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(220, 53, 69, 0.16);
  border-radius: 14px;
  background: var(--form-danger-background);
  color: var(--form-danger);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
}


/* =========================================================
   HELP TEXT
========================================================= */

.form-field .form-text {
  display: block;
  margin-top: 6px;
  color: var(--form-muted);
  font-size: 12.5px;
  line-height: 1.45;
}


/* =========================================================
   TLAČÍTKA FORMULÁŘŮ
========================================================= */

.jn-form button,
.contact-form button,
.valuation-form button {
  font-family: inherit;
}

.jn-form .btn-gold,
.contact-form .btn-gold,
.valuation-form .btn-gold,
.btn-form-secondary {
  min-height: 50px;
  border-radius: var(--form-radius-pill);
  cursor: pointer;
}

.jn-form .btn-gold,
.contact-form .btn-gold,
.valuation-form .btn-gold {
  border: 2px solid var(--form-gold);
  background: var(--form-gold);
  color: #111;
  font-weight: 900;
  transition:
    transform var(--form-transition),
    background-color var(--form-transition),
    border-color var(--form-transition),
    box-shadow var(--form-transition);
}

.jn-form .btn-gold:hover,
.contact-form .btn-gold:hover,
.valuation-form .btn-gold:hover {
  border-color: var(--form-gold-light);
  background: var(--form-gold-light);
  color: #111;
  box-shadow: 0 10px 24px rgba(200, 163, 95, 0.2);
  transform: translateY(-1px);
}

.jn-form .btn-gold:focus-visible,
.contact-form .btn-gold:focus-visible,
.valuation-form .btn-gold:focus-visible,
.btn-form-secondary:focus-visible {
  outline: 3px solid rgba(200, 163, 95, 0.3);
  outline-offset: 2px;
}

.jn-form button:disabled,
.contact-form button:disabled,
.valuation-form button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}


/* =========================================================
   POZNÁMKY POD FORMULÁŘEM
========================================================= */

.form-note,
.contact-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13, 21, 31, 0.05);
  border-radius: 18px;
  background: var(--form-cream);
  color: var(--form-muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.form-note i,
.contact-form-note i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--form-gold);
  font-size: 18px;
}


/* =========================================================
   HONEYPOT

   Pole je vizuálně mimo obrazovku, ale stále existuje v DOM.
========================================================= */

.form-secondary-field {
  position: absolute !important;
  top: auto !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* =========================================================
   MULTI-STEP ODHAD – HLAVNÍ KONTEJNER
========================================================= */

.valuation-form {
  gap: 18px;
}


/* =========================================================
   PROGRESS BAR ODHADU
========================================================= */

.valuation-progress {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
  align-items: center;
  gap: 9px;
  width: 100%;
  margin-bottom: 4px;
}

.valuation-progress-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--form-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.valuation-progress-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(13, 21, 31, 0.1);
  border-radius: 50%;
  background: var(--form-cream);
  color: var(--form-muted);
  font-size: 12px;
  transition:
    color var(--form-transition),
    background-color var(--form-transition),
    border-color var(--form-transition);
}

.valuation-progress-item.active,
.valuation-progress-item.done {
  color: var(--form-dark);
}

.valuation-progress-item.active span,
.valuation-progress-item.done span {
  border-color: var(--form-gold);
  background: var(--form-gold);
  color: #111;
}

.valuation-progress-line {
  width: 100%;
  height: 1px;
  background: rgba(13, 21, 31, 0.12);
}


/* =========================================================
   JEDNOTLIVÉ KROKY ODHADU
========================================================= */

.form-step {
  display: grid;
  gap: 15px;
  width: 100%;
  min-width: 0;
}

.form-step.is-hidden,
.property-group.is-hidden {
  display: none !important;
}

.form-step-label {
  margin-bottom: 6px;
  color: var(--form-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-step-title {
  margin: 0;
  color: var(--form-dark);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.form-step-text {
  margin: 8px 0 0;
  color: var(--form-muted);
  font-size: 14.5px;
  line-height: 1.55;
}


/* =========================================================
   KARTY TYPU NEMOVITOSTI
========================================================= */

.property-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.property-type-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 84px;
  margin: 0;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(13, 21, 31, 0.1);
  border-radius: 18px;
  background: var(--form-cream);
  cursor: pointer;
  user-select: none;
  transition:
    border-color var(--form-transition),
    background-color var(--form-transition),
    transform var(--form-transition),
    box-shadow var(--form-transition);
}

.property-type-card:hover {
  border-color: rgba(200, 163, 95, 0.5);
  background: #fffaf1;
  box-shadow: 0 12px 30px rgba(13, 21, 31, 0.08);
  transform: translateY(-1px);
}

/*
 * Radio input je skrytý vizuálně, ale zůstává ovladatelný.
 */
.property-type-card input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

/*
 * Aktivní karta nastavená JavaScriptem.
 */
.property-type-card.active {
  border-color: var(--form-gold);
  background: #fff8ea;
  box-shadow: 0 12px 32px rgba(200, 163, 95, 0.22);
}

/*
 * Aktivní karta i bez JavaScriptové třídy.
 * Podporují moderní prohlížeče.
 */
.property-type-card:has(input[type="radio"]:checked) {
  border-color: var(--form-gold);
  background: #fff8ea;
  box-shadow: 0 12px 32px rgba(200, 163, 95, 0.22);
}

.property-type-card:has(input[type="radio"]:focus-visible) {
  outline: 3px solid rgba(200, 163, 95, 0.3);
  outline-offset: 2px;
}

.property-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--form-white);
  color: var(--form-gold);
  font-size: 20px;
  transition:
    color var(--form-transition),
    background-color var(--form-transition);
}

.property-type-card.active .property-type-icon,
.property-type-card:has(input[type="radio"]:checked) .property-type-icon {
  background: var(--form-gold);
  color: #111;
}

.property-type-card > span:last-child {
  min-width: 0;
}

.property-type-card strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--form-dark);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.property-type-card small {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--form-muted);
  font-size: 11.5px;
  line-height: 1.35;
}


/* =========================================================
   CHYBA TYPU NEMOVITOSTI
========================================================= */

.valuation-error {
  display: none;
  width: 100%;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(220, 53, 69, 0.12);
  border-radius: 14px;
  background: var(--form-danger-background);
  color: var(--form-danger);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
}

.valuation-error.show {
  display: block;
}


/* =========================================================
   SKUPINY PODLE TYPU NEMOVITOSTI
========================================================= */

.property-group {
  display: grid;
  gap: 15px;
  width: 100%;
  min-width: 0;
}


/* =========================================================
   CHECKBOXY
========================================================= */

.checkbox-group-label {
  margin-bottom: 9px;
  color: var(--form-dark);
  font-size: 14px;
  font-weight: 900;
}

.compact-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
}

.compact-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 44px;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: 14px;
  background: var(--form-cream);
  color: var(--form-muted-dark);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  user-select: none;
  transition:
    border-color var(--form-transition),
    background-color var(--form-transition),
    box-shadow var(--form-transition);
}

.compact-check:hover {
  border-color: rgba(200, 163, 95, 0.42);
  background: #fffaf1;
}

.compact-check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--form-gold);
  cursor: pointer;
}

.compact-check span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.compact-check:has(input[type="checkbox"]:checked) {
  border-color: var(--form-gold);
  background: #fff8ea;
  color: var(--form-dark);
}

.compact-check:has(input[type="checkbox"]:focus-visible) {
  outline: 3px solid rgba(200, 163, 95, 0.3);
  outline-offset: 2px;
}


/* =========================================================
   NAVIGACE MEZI KROKY
========================================================= */

.form-nav {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 10px;
  width: 100%;
}

.form-nav > button {
  width: 100%;
}

.btn-form-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid rgba(13, 21, 31, 0.12);
  border-radius: var(--form-radius-pill);
  background: var(--form-cream);
  color: var(--form-dark);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition:
    color var(--form-transition),
    background-color var(--form-transition),
    border-color var(--form-transition),
    transform var(--form-transition),
    box-shadow var(--form-transition);
}

.btn-form-secondary:hover {
  border-color: rgba(200, 163, 95, 0.4);
  background: #efe5d5;
  color: var(--form-dark);
  box-shadow: 0 8px 20px rgba(13, 21, 31, 0.07);
  transform: translateY(-1px);
}


/* =========================================================
   DOPLŇUJÍCÍ INFORMACE – DETAILS
========================================================= */

.optional-details {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: 18px;
  background: var(--form-cream);
}

.optional-details summary {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  color: var(--form-dark);
  font-size: 14px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.optional-details summary::-webkit-details-marker {
  display: none;
}

.optional-details summary::marker {
  display: none;
  content: "";
}

.optional-details summary i {
  flex: 0 0 auto;
  color: var(--form-gold);
  transition: transform var(--form-transition);
}

.optional-details[open] summary i {
  transform: rotate(45deg);
}

.optional-details .form-field {
  padding: 0 14px 14px;
}

.optional-details .form-floating {
  margin: 0;
}


/* =========================================================
   SOUHLAS / DOPROVODNÝ TEXT
========================================================= */

.jn-form .text-muted.small,
.contact-form .text-muted.small,
.valuation-form .text-muted.small {
  color: var(--form-muted) !important;
  font-size: 12.5px !important;
  line-height: 1.55;
}


/* =========================================================
   PŘÍMÝ KONTAKT NA STRÁNCE PRODAT
========================================================= */

.seller-direct-contact {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      var(--form-dark),
      var(--form-dark-2)
    );
  color: #fff;
}

.seller-direct-contact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.seller-direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--form-gold-light);
  font-weight: 900;
  transition: color var(--form-transition);
}

.seller-direct-contact a:hover {
  color: #fff;
}


/* =========================================================
   PŘÍSTUPNOST
========================================================= */

.form-control:focus-visible,
.form-select:focus-visible,
.compact-check input:focus-visible {
  outline: none;
}

/*
 * Uživatel s nastaveným omezením animací.
 */
@media (prefers-reduced-motion: reduce) {
  .form-control,
  .form-select,
  .btn-gold,
  .btn-form-secondary,
  .property-type-card,
  .property-type-icon,
  .compact-check,
  .optional-details summary i {
    transition: none !important;
  }

  .btn-gold:hover,
  .btn-form-secondary:hover,
  .property-type-card:hover {
    transform: none !important;
  }
}


/* =========================================================
   TABLETY
========================================================= */

@media (max-width: 767.98px) {
  .form-field .form-control,
  .form-field .form-select,
  .jn-form .form-control,
  .jn-form .form-select,
  .contact-form .form-control,
  .contact-form .form-select,
  .valuation-form .form-control,
  .valuation-form .form-select {
    min-height: 56px;
    font-size: 16px;
  }

  /*
   * Font-size 16 px zabraňuje automatickému zoomování
   * formuláře na iOS.
   */
  .form-floating > label {
    font-size: 14px;
  }

  .form-step-title {
    font-size: 21px;
  }

  .property-type-card {
    min-height: 80px;
  }
}


/* =========================================================
   MOBILY
========================================================= */

@media (max-width: 575.98px) {
  .jn-form,
  .valuation-form {
    gap: 14px;
  }

  .valuation-progress {
    gap: 7px;
  }

  .valuation-progress-item strong {
    display: none;
  }

  .valuation-progress-item span {
    width: 27px;
    height: 27px;
  }

  .property-type-grid {
    grid-template-columns: 1fr;
  }

  .property-type-card {
    min-height: 76px;
  }

  .compact-checkboxes {
    grid-template-columns: 1fr;
  }

  .form-nav {
    grid-template-columns: 1fr;
  }

  /*
   * Na mobilu bude primární tlačítko první vizuálně,
   * pouze pokud byste chtěli změnit pořadí, můžete použít order.
   * Ve výchozím stavu zachováváme Zpět -> Pokračovat.
   */
  .form-nav > button {
    width: 100%;
  }

  .jn-form > .btn-gold,
  .contact-form > .btn-gold,
  .valuation-form > .btn-gold {
    width: 100%;
  }

  .field-error,
  .jn-form .alert-danger,
  .contact-form .alert-danger,
  .valuation-form .alert-danger,
  .django-form-errors {
    font-size: 13px;
  }

  .form-note,
  .contact-form-note {
    padding: 13px 14px;
    font-size: 13.5px;
  }

  .optional-details summary {
    padding: 13px 14px;
  }

  .optional-details .form-field {
    padding: 0 12px 12px;
  }
}


/* =========================================================
   VELMI MALÉ MOBILY
========================================================= */

@media (max-width: 390px) {
  .property-type-card {
    padding: 11px;
  }

  .property-type-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
  }

  .property-type-card strong {
    font-size: 14px;
  }

  .property-type-card small {
    font-size: 11px;
  }

  .compact-check {
    padding: 9px 10px;
    font-size: 13px;
  }
}

/* =========================
   ERROR PAGES – 404 / 500
========================= */

.error-layout {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--cream);
}

/* Hlavička na chybových stránkách nemá hero obrázek pod sebou */
.error-layout .top-header {
  background:
    linear-gradient(
      90deg,
      rgba(13, 21, 31, 0.98),
      rgba(19, 31, 43, 0.96)
    );
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}

.error-page {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(200, 163, 95, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(200, 163, 95, 0.1),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--cream) 0%,
      #ffffff 48%,
      var(--cream-2) 100%
    );
}

.error-page .container {
  position: relative;
  z-index: 3;
}

/* Dekorativní kruhy */

.error-decoration {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(200, 163, 95, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.error-decoration-one {
  top: -240px;
  right: -180px;
  width: 580px;
  height: 580px;
}

.error-decoration-two {
  bottom: -290px;
  left: -230px;
  width: 620px;
  height: 620px;
}

.error-decoration::before,
.error-decoration::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(200, 163, 95, 0.15);
  border-radius: inherit;
}

.error-decoration::before {
  inset: 55px;
}

.error-decoration::after {
  inset: 115px;
}

/* Hlavní box */

.error-wrapper {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(450px, 1.15fr);
  align-items: center;
  gap: 70px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px;
  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

/* Velké číslo chyby */

.error-code-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(13, 21, 31, 0.98),
      rgba(29, 42, 56, 0.96)
    );
}

.error-code-column::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(200, 163, 95, 0.15);
}

.error-code-column::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(227, 201, 130, 0.22);
  border-radius: 50%;
}

.error-code {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-size: clamp(92px, 11vw, 160px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -10px;
  text-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
}

/* Obsah chyby */

.error-content {
  max-width: 570px;
}

.error-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 28px;
}

.error-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.error-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.error-content h1 {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--dark);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.error-description {
  max-width: 560px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* Tlačítka */

.error-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.error-actions .btn-gold,
.btn-error-outline {
  min-height: 52px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.error-actions .btn-gold {
  box-shadow: 0 12px 28px rgba(200, 163, 95, 0.24);
}

.error-actions .btn-gold:hover {
  box-shadow: 0 16px 34px rgba(200, 163, 95, 0.32);
}

.btn-error-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid rgba(13, 21, 31, 0.14);
  background: transparent;
  color: var(--dark);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn-error-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Kontaktní informace */

.error-help {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(13, 21, 31, 0.1);
  color: var(--muted-dark);
  font-size: 14px;
}

.error-help > span {
  width: 100%;
  color: var(--muted);
  font-weight: 700;
}

.error-help a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dark);
  font-weight: 800;
  transition: color var(--transition-fast);
}

.error-help a i {
  color: var(--gold);
}

.error-help a:hover {
  color: var(--gold);
}

/* Odlišný detail pro chybu 500 */

.error-layout-500 .error-icon {
  background: rgba(29, 42, 56, 0.1);
  color: var(--dark-2);
}

.error-layout-500 .error-code-column {
  background:
    linear-gradient(
      145deg,
      #111c28,
      #273546
    );
}

/* =========================
   ERROR PAGE RESPONSIVE
========================= */

@media (max-width: 991.98px) {
  .error-layout .navbar-collapse {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    right: 12px;
    left: 12px;
    z-index: 100;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    background: rgba(13, 21, 31, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .error-layout .navbar-nav {
    align-items: stretch;
  }

  .error-layout .nav-link {
    padding: 11px 5px !important;
  }

  .error-layout .right-menu {
    margin-top: 16px;
  }

  .error-page {
    padding: 70px 0;
  }

  .error-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 760px;
    padding: 45px;
  }

  .error-code-column {
    min-height: 240px;
  }

  .error-code {
    letter-spacing: -6px;
  }

  .error-content {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .error-page {
    align-items: flex-start;
    padding: 34px 0 50px;
  }

  .error-wrapper {
    gap: 32px;
    padding: 18px;
    border-radius: 22px;
  }

  .error-code-column {
    min-height: 185px;
    border-radius: 18px;
  }

  .error-code {
    font-size: 86px;
    letter-spacing: -5px;
  }

  .error-content {
    padding: 4px 4px 14px;
  }

  .error-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 15px;
    font-size: 24px;
  }

  .error-content h1 {
    margin-bottom: 18px;
    font-size: 35px;
    letter-spacing: -1.2px;
  }

  .error-description {
    margin-bottom: 26px;
    font-size: 15.5px;
    line-height: 1.7;
  }

  .error-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .error-actions .btn-gold,
  .btn-error-outline {
    width: 100%;
  }

  .error-help {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
  }

  .error-help > span {
    margin-bottom: 2px;
  }
}

.footer-business-info {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer-business-info address {
  margin: 0;
  font-style: normal;
}

.footer-business-info small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   SELLER PAGE – DIGITAL TOOLS
========================================================= */

.seller-page-hero {
  min-height: 640px;
}

.seller-page-hero .subpage-hero-content {
  min-height: calc(640px - var(--header-height));
}

.seller-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.seller-hero-benefits > div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.seller-hero-benefits i {
  color: var(--gold-light);
  font-size: 17px;
}

.seller-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seller-form-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.seller-process-list {
  gap: 22px;
}


/* =========================================================
   DIGITAL SECTION
========================================================= */

.seller-digital-section {
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(200, 163, 95, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 72%,
      rgba(13, 21, 31, 0.08),
      transparent 28%
    ),
    var(--cream);
}

.seller-digital-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.seller-digital-heading .section-title {
  max-width: 720px;
  margin-bottom: 0;
}

.seller-digital-heading > p {
  margin: 0 0 5px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.seller-digital-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 52px;
  padding: 55px;
  overflow: hidden;
  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.seller-digital-feature + .seller-digital-feature {
  margin-top: 32px;
}

.seller-digital-feature::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(200, 163, 95, 0.1);
  pointer-events: none;
}

.seller-digital-feature-stats {
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(200, 163, 95, 0.11),
      transparent 28%
    ),
    #fff;
}

.seller-digital-feature-stats .seller-digital-content {
  grid-column: 2;
  grid-row: 1;
}

.seller-digital-feature-stats .seller-app-preview {
  grid-column: 1;
  grid-row: 1;
}

.seller-digital-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.seller-digital-number {
  position: absolute;
  top: -45px;
  right: 0;
  color: rgba(13, 21, 31, 0.045);
  font-size: 110px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;
  pointer-events: none;
}

.seller-digital-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.seller-digital-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.seller-digital-content > h3 {
  position: relative;
  max-width: 520px;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.seller-digital-content > p {
  margin-bottom: 25px;
  color: var(--muted-dark);
  font-size: 16.5px;
  line-height: 1.75;
}

.seller-digital-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seller-digital-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #384554;
  font-weight: 700;
  line-height: 1.5;
}

.seller-digital-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--gold);
}

.seller-digital-highlight {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 28px;
  padding: 17px 18px;
  border: 1px solid rgba(200, 163, 95, 0.2);
  border-radius: 18px;
  background: var(--gold-soft);
}

.seller-digital-highlight > i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #7d5c1d;
  font-size: 20px;
}

.seller-digital-highlight p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================================
   APP PREVIEW – WINDOW
========================================================= */

.seller-app-preview {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.seller-app-preview::before {
  content: "";
  position: absolute;
  inset: 9% -5% -8% 8%;
  z-index: -1;
  border-radius: 40px;
  background: rgba(200, 163, 95, 0.2);
  filter: blur(2px);
  transform: rotate(2deg);
}

.seller-app-window {
  overflow: hidden;
  border: 1px solid rgba(13, 21, 31, 0.13);
  border-radius: 22px;
  background: #f5f7fa;
  box-shadow:
    0 30px 70px rgba(13, 21, 31, 0.2),
    0 8px 20px rgba(13, 21, 31, 0.08);
}

.seller-app-header {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  min-height: 48px;
  padding: 8px 13px;
  border-bottom: 1px solid rgba(13, 21, 31, 0.09);
  background: #eef1f5;
}

.seller-app-dots {
  display: flex;
  gap: 5px;
}

.seller-app-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.seller-app-dots span:nth-child(1) {
  background: #ef6a62;
}

.seller-app-dots span:nth-child(2) {
  background: #e6b94d;
}

.seller-app-dots span:nth-child(3) {
  background: #5bc07a;
}

.seller-app-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 7px 12px;
  overflow: hidden;
  border: 1px solid rgba(13, 21, 31, 0.07);
  border-radius: 9px;
  background: #fff;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-app-address i {
  color: var(--gold);
}

.seller-app-body {
  padding: 22px;
}

.app-small-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.app-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.app-section-title > span {
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
}

.app-section-title small {
  color: var(--muted);
  font-size: 9px;
}


/* =========================================================
   DATA ROOM PREVIEW
========================================================= */

.data-room-top,
.seller-stats-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 19px;
}

.data-room-top strong,
.seller-stats-heading strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
}

.data-room-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: var(--radius-pill);
  background: #e5f6eb;
  color: #18794e;
  font-size: 9px;
  font-weight: 900;
}

.data-room-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 175px;
  gap: 15px;
}

.data-room-files,
.data-room-offer {
  padding: 17px;
  border: 1px solid rgba(13, 21, 31, 0.07);
  border-radius: 16px;
  background: #fff;
}

.data-room-file {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(13, 21, 31, 0.07);
}

.data-room-file:last-child {
  border-bottom: 0;
}

.data-room-file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 14px;
}

.data-room-file strong {
  display: block;
  overflow: hidden;
  color: var(--dark);
  font-size: 10px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-room-file small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.data-room-file > i {
  color: var(--muted);
  font-size: 11px;
}

.data-room-offer {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      145deg,
      rgba(13, 21, 31, 0.98),
      rgba(29, 42, 56, 0.98)
    );
  color: #fff;
}

.data-room-offer > strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.data-room-offer > p {
  margin: 7px 0 15px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  line-height: 1.5;
}

.data-room-price {
  margin-bottom: 13px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
}

.data-room-price small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
}

.data-room-price span {
  display: block;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}

.data-room-offer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: auto;
  padding: 9px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #111;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
}


/* =========================================================
   SELLER STATISTICS PREVIEW
========================================================= */

.seller-stats-period {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(13, 21, 31, 0.08);
  border-radius: 9px;
  background: #fff;
  color: var(--muted-dark);
  font-size: 9px;
  font-weight: 800;
}

.seller-stats-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 14px;
}

.seller-stat-card {
  position: relative;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(13, 21, 31, 0.07);
  border-radius: 13px;
  background: #fff;
}

.seller-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 9px;
  background: var(--gold-soft);
  color: #7d5c1d;
  font-size: 12px;
}

.seller-stat-card > small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-stat-card > strong {
  display: block;
  margin: 3px 0;
  color: var(--dark);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.seller-stat-card > span:last-child {
  display: block;
  color: var(--muted);
  font-size: 8px;
}

.seller-stat-card .seller-stat-growth {
  color: #18794e;
}

.seller-chart-card {
  padding: 15px;
  border: 1px solid rgba(13, 21, 31, 0.07);
  border-radius: 15px;
  background: #fff;
}

.seller-chart {
  position: relative;
  height: 125px;
  overflow: hidden;
}

.seller-chart-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seller-chart-lines span {
  width: 100%;
  height: 1px;
  background: rgba(13, 21, 31, 0.07);
}

.seller-chart-bars {
  position: absolute;
  inset: 0 5px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 7px;
}

.seller-chart-bars span {
  width: 100%;
  max-width: 20px;
  height: var(--bar-height);
  min-height: 8px;
  border-radius: 5px 5px 2px 2px;
  background:
    linear-gradient(
      180deg,
      var(--gold-light),
      var(--gold)
    );
  box-shadow: 0 4px 10px rgba(200, 163, 95, 0.2);
}

.seller-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
}

.seller-latest-event {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 11px;
  border: 1px solid rgba(200, 163, 95, 0.18);
  border-radius: 13px;
  background: var(--gold-soft);
}

.seller-latest-event > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #fff;
  color: var(--gold);
  font-size: 13px;
}

.seller-latest-event small {
  display: block;
  color: var(--muted);
  font-size: 8px;
}

.seller-latest-event strong {
  display: block;
  color: var(--dark);
  font-size: 9px;
  font-weight: 900;
}

.seller-latest-event time {
  color: var(--muted);
  font-size: 8px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.seller-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.seller-final-cta .btn-hero-outline {
  flex: 0 0 auto;
}


/* =========================================================
   RESPONSIVE – DIGITAL TOOLS
========================================================= */

@media (max-width: 1199px) {
  .seller-digital-feature {
    gap: 38px;
    padding: 44px;
  }

  .data-room-grid {
    grid-template-columns: 1fr;
  }

  .data-room-offer {
    min-height: 190px;
  }
}

@media (max-width: 991px) {
  .seller-digital-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .seller-digital-feature,
  .seller-digital-feature-stats {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .seller-digital-feature-stats .seller-digital-content,
  .seller-digital-feature-stats .seller-app-preview {
    grid-column: auto;
    grid-row: auto;
  }

  .seller-digital-feature-stats .seller-digital-content {
    order: 1;
  }

  .seller-digital-feature-stats .seller-app-preview {
    order: 2;
  }

  .data-room-grid {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .data-room-offer {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .seller-page-hero {
    min-height: 650px;
  }

  .seller-page-hero .subpage-hero-content {
    min-height: calc(650px - var(--header-height));
  }

  .seller-digital-section {
    padding: 78px 0;
  }

  .seller-digital-heading {
    margin-bottom: 38px;
  }

  .seller-digital-feature {
    padding: 31px;
    border-radius: 23px;
  }

  .seller-digital-number {
    top: -25px;
    font-size: 84px;
  }

  .seller-app-preview {
    margin-right: -12px;
    margin-left: -12px;
  }

  .data-room-grid {
    grid-template-columns: 1fr;
  }

  .seller-stats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seller-stat-card {
    min-height: 106px;
  }

  .seller-final-actions {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .seller-hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .seller-hero-benefits > div {
    width: fit-content;
  }

  .seller-digital-heading > p {
    font-size: 16px;
    line-height: 1.68;
  }

  .seller-digital-feature {
    gap: 30px;
    padding: 25px;
  }

  .seller-digital-content > h3 {
    font-size: 29px;
    letter-spacing: -1px;
  }

  .seller-digital-content > p {
    font-size: 15.5px;
  }

  .seller-digital-highlight {
    padding: 15px;
  }

  .seller-app-preview {
    margin-right: -18px;
    margin-left: -18px;
  }

  .seller-app-header {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .seller-app-body {
    padding: 15px;
  }

  .data-room-top,
  .seller-stats-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .seller-stats-cards {
    gap: 7px;
  }

  .seller-chart {
    height: 105px;
  }

  .seller-latest-event {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .seller-latest-event time {
    display: none;
  }

  .seller-final-actions .btn-gold,
  .seller-final-actions .btn-hero-outline {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .seller-digital-feature {
    padding: 21px;
  }

  .seller-app-preview {
    margin-right: -14px;
    margin-left: -14px;
  }

  .seller-stats-cards {
    grid-template-columns: 1fr;
  }

  .seller-stat-card {
    min-height: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .subpage-section .benefit-grid {
    grid-template-columns: 1fr;
  }
}