:root {
  --red: #c8142f;
  --red-deep: #970f25;
  --ink: #111116;
  --charcoal: #18181d;
  --soft: #f7f3ef;
  --white: #ffffff;
  --muted: #6b6667;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(17, 17, 22, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 17, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(210px, 24vw, 292px);
  flex: 0 0 auto;
}

.text-logo {
  width: auto;
  min-width: 250px;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.logo-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.logo-copy strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.logo-copy em {
  color: #ffbdc6;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.logo img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  place-items: center;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.article-hero {
  min-height: 720px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background:linear-gradient(
75deg, rgb(17 17 22 / 44%), rgb(151 15 37 / 36%) 52%, rgb(17 17 22 / 32%)), linear-gradient(0deg, rgb(17 17 22 / 68%), rgba(17, 17, 22, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 86px 0 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd9df;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
}

.home-page h2 {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.final-cta-inner .btn {
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--red-deep);
  background: var(--white);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.btn-red {
  color: var(--white);
  background: var(--red);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.dark {
  color: var(--white);
  background: var(--charcoal);
}

.red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

.light {
  color: var(--ink);
  background: var(--soft);
}

.light .eyebrow {
  color: var(--red);
}

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

.section-heading p:not(.eyebrow),
.copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.light .section-heading p:not(.eyebrow),
.light .copy p {
  color: var(--muted);
}

.feature-grid,
.exclusive-grid,
.benefit-grid,
.city-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.exclusive-features .feature-card {
  min-height: 100%;
}

.feature-card,
.benefit {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-card p,
.benefit p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.light .benefit {
  border-color: rgba(17, 17, 22, 0.08);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 22, 0.1);
}

.light .benefit p {
  color: var(--muted);
}

.red .feature-icon {
  color: var(--red-deep);
  background: var(--white);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 1.25rem;
  font-weight: 800;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.sugar-baby-block {
  margin-top: clamp(56px, 8vw, 96px);
}

.welcome-section {
  background: linear-gradient(rgba(17, 17, 22, 0.7), rgba(17, 17, 22, 0.7)), url("../img/sugar-daddy-meet.jpg") center / cover;
  color: var(--white);
}

.welcome-block {
  max-width: 900px;
  text-align: center;
}

.welcome-block h3 {
  margin-top: 18px;
  color: #ffd9df;
}

.welcome-block p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
}

.welcome-block .btn {
  margin-top: 28px;
}

.copy p {
  margin: 20px 0 0;
}

.image-stack,
.photo-panel {
  position: relative;
}

.image-stack img,
.photo-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-box {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(290px, calc(100% - 24px));
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.stat-box strong,
.stat-box span {
  display: block;
}

.stat-box strong {
  font-size: 1.1rem;
}

.stat-box span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  font-weight: 700;
}

.check-list li::before {
  content: "OK";
  font-size: 0.78rem;
  font-weight: 800;
  position: absolute;
  left: 0;
  color: var(--red);
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.city-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(64, 0, 14, 0.2);
}

.city-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.city-card div {
  padding: 26px;
}

.city-card p {
  color: var(--muted);
}

.city-card a {
  display: inline-block;
  margin-top: 6px;
  color: var(--red);
  font-weight: 800;
}

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

.website-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 22, 0.1);
}

.website-image {
  position: relative;
  min-height: 320px;
  background: var(--charcoal);
}

.website-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 22, 0.7), rgba(17, 17, 22, 0.08));
}

.website-image span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 800;
}

.website-copy {
  padding: clamp(28px, 5vw, 46px);
}

.website-copy p {
  color: var(--muted);
}

.site-rank {
  margin: 0 0 12px;
  color: var(--red) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 22, 0.1);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border: 3px solid #ffe4e8;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  background: var(--soft);
}

.testimonial-profile h3 {
  font-size: 1.08rem;
}

.testimonial-profile p,
.testimonial-result {
  margin: 5px 0 0;
  color: var(--muted);
}

.testimonial-stars {
  margin-top: 22px;
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
}

.testimonial-result {
  margin-top: auto;
  padding-top: 20px;
  font-weight: 800;
}

.testimonial-cta {
  align-self: flex-start;
  margin-top: auto;
}

.step-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.step-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--red-deep);
  background: var(--white);
  font-weight: 800;
}

.step-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 22, 0.1);
}

.contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.blog-grid-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 22, 0.1);
}

.blog-card img {
  width: 100%;
  height: 214px;
  object-fit: cover;
}

.blog-grid-compact .blog-card img {
  height: 170px;
}

.blog-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 28px);
}

.blog-card p:not(.site-rank) {
  margin: 12px 0 24px;
  color: var(--muted);
}

.blog-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.contact-direct {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--red);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-direct a {
  color: #ffbdc6;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}

.post-section {
  padding-top: clamp(58px, 7vw, 92px);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.post-toc {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 22, 0.08);
}

.post-toc .eyebrow {
  margin-bottom: 16px;
}

.post-toc nav {
  display: grid;
  gap: 10px;
}

.post-toc a {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.post-toc a:hover {
  color: var(--red);
}

.post-content {
  max-width: 860px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 22, 0.1);
}

.post-content section {
  padding-top: 44px;
  margin-top: 44px;
  border-top: 1px solid rgba(17, 17, 22, 0.1);
}

.post-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.post-content h3 {
  font-size: 1.08rem;
}

.post-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.post-content p:last-child,
.post-content ul:last-child,
.post-content ol:last-child {
  margin-bottom: 0;
}

.post-intro p:not(.site-rank) {
  font-size: 1.08rem;
}

.post-cta {
  margin-top: 8px;
}

.post-note,
.verdict-box {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 22px;
  border-left: 5px solid var(--red);
  border-radius: 6px;
  background: var(--soft);
}

.post-note span,
.verdict-box span {
  color: var(--muted);
}

.post-steps {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: post-step;
}

.post-steps li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 20px 20px 20px 66px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--soft);
  counter-increment: post-step;
}

.post-steps li::before {
  content: counter(post-step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--red);
  font-weight: 800;
}

.post-steps span {
  color: var(--muted);
}

.post-table {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(17, 17, 22, 0.1);
  border-radius: 8px;
}

.post-table-row {
  display: grid;
  grid-template-columns: 0.62fr 1fr 1fr;
  border-top: 1px solid rgba(17, 17, 22, 0.1);
}

.post-table-row:first-child {
  border-top: 0;
}

.post-table-row span {
  min-width: 0;
  padding: 17px;
  border-left: 1px solid rgba(17, 17, 22, 0.1);
  color: var(--muted);
}

.post-table-row span:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 800;
}

.post-table-head {
  background: var(--red);
}

.post-table-head span,
.post-table-head span:first-child {
  color: var(--white);
  font-weight: 800;
}

.post-mini-list li {
  color: var(--muted);
}

.post-feature-grid,
.pros-cons-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.post-feature-grid article,
.pros-cons-grid > div {
  padding: 22px;
  border: 1px solid rgba(17, 17, 22, 0.08);
  border-radius: 8px;
  background: var(--soft);
}

.post-feature-grid p {
  margin-bottom: 0;
}

.post-safety-list {
  margin-top: 24px;
}

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

.mini-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-weight: 700;
}

.mini-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.difference-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.difference-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.difference-row:first-child {
  border-top: 0;
}

.difference-row span {
  min-width: 0;
  padding: 18px;
  border-left: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.76);
}

.difference-row span:first-child {
  border-left: 0;
  color: var(--white);
  font-weight: 800;
}

.difference-head {
  background: var(--red);
}

.difference-head span {
  color: var(--white);
  font-weight: 800;
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.safety-list {
  display: grid;
  gap: 14px;
}

.safety-list div {
  display: grid;
  gap: 5px;
  padding: 22px;
  border-left: 5px solid var(--red);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(17, 17, 22, 0.08);
}

.safety-list span {
  color: var(--muted);
}

.faq-wrap {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #ffbdc6;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--white);
  background:
    linear-gradient(rgba(17, 17, 22, 0.72), rgba(151, 15, 37, 0.84)),
    url("../img/sugar-dating-belgium.jpg") center/cover;
}

.final-cta-inner {
  max-width: 760px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
}

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #101014;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 2.1fr);
  gap: 52px;
  align-items: start;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  width: min(292px, 100%);
  margin-bottom: 16px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-links h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-links a {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 17, 22, 0.98);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
  }

  .feature-grid,
  .exclusive-grid,
  .benefit-grid,
  .testimonial-grid,
  .step-grid,
  .contact-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .two-col,
  .safety-layout,
  .comparison-layout,
  .contact-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-toc {
    position: static;
  }

  .website-card {
    grid-template-columns: 1fr;
  }

  .website-image {
    min-height: 260px;
  }

  .reverse-mobile .photo-panel {
    order: 2;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .logo {
    width: min(214px, calc(100vw - 92px));
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: calc(100vh - 68px);
  }

  .article-hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 72px 0 86px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .feature-grid,
  .exclusive-grid,
  .benefit-grid,
  .city-grid,
  .testimonial-grid,
  .step-grid,
  .contact-grid,
  .blog-grid,
  .post-feature-grid,
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .difference-row {
    grid-template-columns: 1fr;
  }

  .post-table-row {
    grid-template-columns: 1fr;
  }

  .post-table-row span {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 22, 0.1);
  }

  .post-table-row span:first-child {
    border-top: 0;
    background: rgba(17, 17, 22, 0.035);
  }

  .post-table-head span:first-child {
    background: transparent;
  }

  .difference-row span {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 15px 18px;
  }

  .difference-row span:first-child {
    border-top: 0;
    background: rgba(255, 255, 255, 0.06);
  }

  .difference-head span {
    border-top: 0;
  }

  .feature-card,
  .benefit,
  .step-card,
  .contact-card,
  .post-content,
  .post-toc,
  .city-card div {
    padding: 22px;
  }

  .stat-box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -22px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

@media (max-width: 420px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 7px 12px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
  font-family: inherit;
}

.lang-btn:hover,
.lang-btn:focus-visible,
.lang-switcher.is-open .lang-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.lang-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}

.lang-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 200ms ease;
}

.lang-switcher.is-open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 110px;
  background: rgba(20, 20, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 100;
}

.lang-switcher.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.lang-option.is-active {
  color: var(--white);
  font-weight: 700;
  background: rgba(200, 20, 47, 0.25);
}

.lang-check {
  color: var(--red);
  flex-shrink: 0;
}

.lang-check-placeholder {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .lang-switcher {
    margin-top: 10px;
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .lang-dropdown {
    position: static;
    top: 0;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .lang-switcher.is-open .lang-dropdown {
    display: flex;
  }
}
