/* Construcții Garduri — mobile-first, conversion-focused */
:root {
  --bg-deep: #0c0d0f;
  --bg-card: #14161a;
  --bg-elevated: #1a1d23;
  --text: #f4f5f7;
  --text-muted: #9aa3b2;
  --accent: #f5a623;
  --accent-hover: #ffb84d;
  --accent-dark: #c77f0a;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --header-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0);
  --font: "Manrope", system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(72px + var(--safe-bottom));
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

/* ——— Header sticky (fără backdrop-filter aici — strică position:fixed al meniului mobil) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 13, 15, 0.98);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.logo span {
  color: var(--accent);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: rgba(245, 166, 35, 0.1);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #0c0d0f;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  color: #0c0d0f;
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(245, 166, 35, 0.15);
  color: var(--accent);
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background: var(--bg-deep);
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 1010;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--border);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--text);
  font-weight: 600;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--accent);
}

.mobile-nav .btn-primary {
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 166, 35, 0.18), transparent),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 55%);
  z-index: -1;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero .lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 36ch;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-grid > * {
    flex: 1;
  }
}

/* ——— Trust stats ——— */
.trust-bar {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-card);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

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

.stat strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stat span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ——— Sections ——— */
section {
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ——— Cards / services ——— */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.card .link-arrow {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

/* ——— Portfolio grid ——— */
.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 550px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 13, 15, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.portfolio-overlay p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ——— Portfolio album (carusel + swipe) ——— */
.portfolio-album {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.portfolio-album__viewport {
  position: relative;
  width: 100%;
}

.portfolio-album__scroller {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  max-height: min(78vh, 820px);
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  outline: none;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-album--instant .portfolio-album__scroller {
  scroll-behavior: auto;
}

.portfolio-album__scroller::-webkit-scrollbar {
  display: none;
}

.portfolio-album__scroller:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.portfolio-album__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}

.portfolio-album__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portfolio-album__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent 0%, rgba(12, 13, 15, 0.92) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  pointer-events: none;
}

.portfolio-album__caption strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.portfolio-album__caption span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.portfolio-album__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(12, 13, 15, 0.72);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: background var(--transition), transform 0.15s ease, color var(--transition);
}

.portfolio-album__arrow:hover {
  background: rgba(245, 166, 35, 0.95);
  color: #0c0d0f;
}

.portfolio-album__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.portfolio-album__arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.portfolio-album__arrow--prev {
  left: max(8px, env(safe-area-inset-left, 0px));
}

.portfolio-album__arrow--next {
  right: max(8px, env(safe-area-inset-right, 0px));
}

.portfolio-album__meta {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.portfolio-album__hint {
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-album.is-single .portfolio-album__arrow {
  display: none;
}

.portfolio-album.is-single .portfolio-album__scroller {
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .portfolio-album__arrow {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .portfolio-album__arrow--prev {
    left: max(12px, env(safe-area-inset-left, 0px));
  }

  .portfolio-album__arrow--next {
    right: max(12px, env(safe-area-inset-right, 0px));
  }
}

/* ——— Reviews ——— */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.review-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}

/* ——— CTA band ——— */
.cta-band {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border-block: 1px solid var(--border);
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}

.cta-band p {
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  max-width: 480px;
}

.cta-band .row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .cta-band .row {
    flex-direction: row;
  }
}

/* ——— Footer ——— */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    align-items: start;
  }

  .footer-brand {
    grid-column: auto;
  }
}

.footer-brand .logo {
  display: inline-block;
}

.footer-tagline {
  margin: 1rem 0 0;
  max-width: 22rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.footer-tagline strong {
  color: var(--text);
}

.footer-address {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.site-footer h3 {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--text);
  font-size: 0.9375rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.footer-legal {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-credit {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
}

.footer-credit a {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-credit a:hover {
  color: var(--accent);
}

.footer-legal-nav {
  margin-bottom: 0.25rem;
}

.footer-legal-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-legal-nav a:hover {
  color: var(--accent);
}

/* ——— Pagini legale ——— */
.legal-updated {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.legal-doc {
  max-width: 44rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-doc > p,
.legal-doc > ul,
.legal-doc > ol {
  margin: 0 0 1rem;
}

.legal-doc h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.legal-doc h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-doc h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.legal-doc ul,
.legal-doc ol {
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.35rem;
}

.legal-doc a {
  color: var(--accent);
  font-weight: 600;
}

.legal-doc a:hover {
  text-decoration: underline;
}

.legal-doc code {
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}

.legal-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-table th,
.legal-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.legal-table th {
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-doc__back {
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ——— Banner cookie ——— */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 13, 15, 0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-dismissed {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .cookie-banner {
    bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
    padding-bottom: 0.75rem;
  }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 52rem;
}

.cookie-banner__text a {
  color: var(--accent);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

/* ——— Page hero small ——— */
.page-hero {
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ——— Service detail blocks ——— */
.service-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.service-block .meta {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-block p,
.service-block li {
  color: var(--text-muted);
}

.service-block ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
}

.service-block li {
  margin-bottom: 0.35rem;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-panel-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq-item.is-open .faq-panel {
  max-height: 800px;
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.contact-links a:last-child {
  border-bottom: none;
}

.contact-links a:hover {
  color: var(--accent);
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ——— Floating actions ——— */
.float-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(5.5rem + var(--safe-bottom));
  z-index: 1001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-whatsapp:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .float-whatsapp {
    bottom: calc(1.5rem + var(--safe-bottom));
  }
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 1rem calc(0.65rem + var(--safe-bottom));
  background: rgba(12, 13, 15, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.mobile-call-bar .btn {
  flex: 1;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
}

.mobile-call-bar .btn-primary {
  flex: 1.2;
}

@media (min-width: 768px) {
  .mobile-call-bar {
    display: none;
  }
}

/* ——— Animations ——— */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

/* ——— Utilities ——— */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #0c0d0f;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
