/* =========================================================
   dezinsect.ro - style.css
   Design direction: premium-clean, modern, responsive
   Font: Trebuchet MS
   ========================================================= */

:root {
  --color-bg: #f6f3ee;
  --color-surface: #ffffff;
  --color-surface-alt: #f2ede6;
  --color-primary: #b11f24;
  --color-primary-dark: #8f171c;
  --color-secondary: #1f1f22;
  --color-secondary-soft: #34343a;
  --color-text: #1f1f22;
  --color-text-soft: #55555d;
  --color-border: #e5ddd2;
  --color-success: #1f7a45;
  --color-whatsapp: #25d366;
  --shadow-sm: 0 8px 20px rgba(17, 18, 23, 0.06);
  --shadow-md: 0 12px 30px rgba(17, 18, 23, 0.1);
  --shadow-lg: 0 18px 40px rgba(17, 18, 23, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1280px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

p,
ul,
ol {
  margin: 0 0 16px;
}

ul,
ol {
  padding-left: 22px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.18;
  color: var(--color-secondary);
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}

small,
.text-small {
  font-size: 14px;
}

.container {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

.section-tight {
  padding: 32px 0;
}

.section-title {
  max-width: 820px;
  margin-bottom: 18px;
}

.section-title p {
  font-size: 18px;
  color: var(--color-text-soft);
  margin-bottom: 0;
}

.section-title h2 {
  margin-bottom: 8px;
}

.section-rule {
  width: 100%;
  border: 0;
  border-top: 4px dotted #111111;
  margin: 0 0 16px;
}

.text-center {
  text-align: center;
}

.text-soft {
  color: var(--color-text-soft);
}

.highlight {
  color: var(--color-primary);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* =========================
   Top utility / header
   ========================= */

.topbar {
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.topbar a {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 221, 210, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 18px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo span {
  line-height: 1;
}

.logo .dot-ro {
  color: var(--color-primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 34px;
  height: 2px;
  background: var(--color-primary);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 2px;
}

.desktop-nav a:hover {
  background: rgba(177, 31, 36, 0.06);
  color: var(--color-primary);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.phone-chip:hover {
  color: #ffffff;
  background: #111216;
}

.mobile-header-icons,
.mobile-menu-toggle,
.mobile-nav,
.mobile-overlay {
  display: none;
}

/* =========================
   Hero
   ========================= */

.hero {
  position: relative;
  padding: 18px 0 20px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: stretch;
  gap: 18px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(177, 31, 36, 0.08);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero p.lead {
  max-width: 620px;
  font-size: 19px;
  color: var(--color-text-soft);
  margin-bottom: 18px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #c6282f 0%, var(--color-primary) 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(177, 31, 36, 0.22);
}

.btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #d32d35 0%, var(--color-primary-dark) 100%);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  color: #ffffff;
  background: #111216;
}

.btn-outline {
  background: #ffffff;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background: var(--color-surface-alt);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.benefit-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  min-height: 185px;
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(177, 31, 36, 0.08);
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
}

.benefit-pill strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-secondary);
}

.benefit-pill span {
  display: block;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 470px;
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-mobile {
  display: none;
}

.hero-badge-stack {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: var(--color-secondary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* =========================
   Hero secondary cards
   ========================= */

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-card {
  padding: 26px 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 220px;
}

.quick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quick-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(177, 31, 36, 0.08);
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.quick-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.quick-card p {
  color: var(--color-text-soft);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.55;
}

/* =========================
   Content blocks
   ========================= */

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.feature-card,
.article-card,
.price-card,
.local-card,
.contact-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.service-card h3,
.feature-card h3,
.article-card h3,
.price-card h3,
.local-card h3,
.contact-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.feature-card p,
.article-card p,
.price-card p,
.local-card p,
.contact-card p {
  color: var(--color-text-soft);
}

.service-card ul,
.feature-card ul,
.article-card ul,
.local-card ul,
.contact-card ul {
  color: var(--color-text-soft);
}

.service-card .icon,
.feature-card .icon,
.local-card .icon,
.contact-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(177, 31, 36, 0.08);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 22px;
}

.brand-strip {
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(90deg, #1d1d20 0%, #2a2a30 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.brand-strip h2,
.brand-strip h3,
.brand-strip p,
.brand-strip li,
.brand-strip a {
  color: #ffffff;
}

.brand-strip .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.brand-strip .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.highlight-box {
  padding: 24px 22px;
  border-left: 6px solid var(--color-primary);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.anchor-box {
  padding: 20px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.anchor-box h3 {
  margin-bottom: 12px;
}

.anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.anchor-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(177, 31, 36, 0.08);
  color: var(--color-primary);
  font-weight: 700;
}

.anchor-links a:hover {
  background: rgba(177, 31, 36, 0.14);
}

/* =========================
   Why choose us
   ========================= */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.55;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

/* =========================
   Price table / list
   ========================= */

.price-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table th {
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 16px;
}

.price-table tr:nth-child(even) td {
  background: #fbf8f3;
}

.price-tag {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.price-note {
  font-size: 14px;
  color: var(--color-text-soft);
}

/* =========================
   FAQ
   ========================= */

.faq-wrap {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 56px 20px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  line-height: 1;
  color: var(--color-primary);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--color-text-soft);
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================
   Forms
   ========================= */

.form-card {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-row,
.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--color-secondary);
}

input,
textarea,
select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-secondary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(177, 31, 36, 0.6);
  box-shadow: 0 0 0 4px rgba(177, 31, 36, 0.08);
}

/* =========================
   Article content
   ========================= */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
}

.article-content {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.article-content img,
.article-content iframe {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 18px 0 20px;
}

.article-sidebar {
  display: grid;
  gap: 16px;
  align-self: start;
  position: sticky;
  top: 96px;
}

/* =========================
   Footer
   ========================= */

.site-footer {
  padding: 48px 0 120px;
  background: #151619;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}

.site-footer h3,
.site-footer h4,
.site-footer a {
  color: #ffffff;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  max-width: 520px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
}

.footer-local-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bucharest-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #c6282f 0%, var(--color-primary) 100%);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.footer-bucharest-btn:hover {
  color: #ffffff;
}

.footer-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-sector-grid a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.footer-sector-grid a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
}

/* =========================
   Sticky mobile bar
   ========================= */

.sticky-contact-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(calc(100% - 18px), 720px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 24px;
  background: rgba(17, 18, 23, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.sticky-contact-bar a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 8px;
  border-radius: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.sticky-contact-bar a.programare {
  background: linear-gradient(180deg, #c6282f 0%, var(--color-primary) 100%);
}

.sticky-contact-bar a.telefon {
  background: #2b2d33;
}

.sticky-contact-bar a.whatsapp {
  background: var(--color-whatsapp);
  color: #0f1e14;
}

.sticky-contact-bar a span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.95;
}

@media (min-width: 981px) {
  .sticky-contact-bar {
    display: none !important;
  }
}

/* =========================
   Helpers
   ========================= */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.hide-desktop { display: none !important; }

/* =========================
   Responsive
   ========================= */

@media (max-width: 1200px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
  }

  .quick-links-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .phone-chip {
    display: none;
  }

  .mobile-header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-icon-link,
  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: rgba(177, 31, 36, 0.08);
    color: var(--color-secondary);
    font-size: 20px;
    cursor: pointer;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(18, 19, 23, 0.45);
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1110;
    width: min(88vw, 360px);
    height: 100vh;
    overflow-y: auto;
    background: #ffffff;
    padding: 22px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  }

  .mobile-nav.open,
  .mobile-overlay.open {
    display: block;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .mobile-nav-links {
    display: grid;
    gap: 10px;
  }

  .mobile-nav-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    background: #f8f4ef;
    color: var(--color-secondary);
    font-weight: 700;
  }

  .mobile-nav-links a.active,
  .mobile-nav-links a:hover {
    background: rgba(177, 31, 36, 0.1);
    color: var(--color-primary);
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo {
    font-size: 20px;
  }

  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero p.lead {
    font-size: 18px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .benefit-pill {
    min-height: auto;
  }

  .section {
    padding: 40px 0;
  }

  .section-tight {
    padding: 26px 0;
  }

  .site-footer {
    padding-bottom: 124px;
  }
}

@media (max-width: 767px) {
  body {
    background: #f4efe8;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hide-mobile {
    display: none !important;
  }

  .hide-desktop {
    display: block !important;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .section-rule {
    border-top-width: 3px;
    margin-bottom: 14px;
  }

  .header-inner {
    min-height: 72px;
  }

  .logo {
    font-size: 18px;
    gap: 8px;
  }

  .logo img {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 14px 0 18px;
  }

  .hero-shell {
    gap: 14px;
  }

  .hero-copy,
  .hero-media {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 22px 18px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero p.lead {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    border-radius: 14px;
  }

  .hero-media {
    min-height: 360px;
    overflow: visible;
  }

  .hero-media-desktop {
    display: none;
  }

  .hero-media-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
  }

  .hero-badge-stack {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding: 0;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-badge {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    margin: 0;
    border-radius: 999px;
  }

  .quick-card,
  .service-card,
  .feature-card,
  .article-card,
  .price-card,
  .local-card,
  .contact-card,
  .form-card,
  .article-content,
  .brand-strip,
  .highlight-box,
  .anchor-box {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .benefit-pill {
    padding: 16px;
    border-radius: 16px;
  }

  .quick-card .icon,
  .service-card .icon,
  .feature-card .icon,
  .local-card .icon,
  .contact-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .section {
    padding: 34px 0;
  }

  .section-tight {
    padding: 22px 0;
  }

  .section-title {
    margin-bottom: 16px;
  }

  .section-title p {
    font-size: 17px;
  }

  .faq-question {
    padding: 18px 48px 18px 18px;
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .price-table-wrap {
    border-radius: 18px;
  }

  .footer-sector-grid {
    gap: 10px;
  }

  .footer-sector-grid a,
  .footer-bucharest-btn {
    min-height: 48px;
    border-radius: 14px;
    font-size: 15px;
  }

  .sticky-contact-bar {
    width: calc(100% - 10px);
    bottom: 8px;
    gap: 6px;
    padding: 6px;
    border-radius: 18px;
  }

  .sticky-contact-bar a {
    min-height: 54px;
    border-radius: 14px;
    font-size: 13px;
  }

  .sticky-contact-bar a span {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }

  .logo {
    font-size: 17px;
  }

  .hero-media {
    min-height: 320px;
  }

  .footer-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}