@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Inter", sans-serif;
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
}

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

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

/* ——— Site header (inner pages) ——— */
.sh-nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
}

.sh-nav-link.dark {
  color: #1e2329;
}

.sh-nav-link:hover {
  color: #fff;
}

.sh-nav-link.dark:hover {
  color: #39424e;
}

.sh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.sh-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}

.sh-hamburger.dark span {
  background: #1e2329;
}

.sh-desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

@media (max-width: 900px) {
  .sh-desktop-nav {
    display: none !important;
  }

  .sh-hamburger {
    display: flex !important;
  }

  #site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sh-mobile-menu {
  position: fixed;
  inset: 0;
  background: #1e2329;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-left: 32px !important;
  padding-right: 32px !important;
  padding-top: max(24px, env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.sh-mobile-menu.open {
  transform: translateX(0) !important;
}

.sh-mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  display: block;
}

.sh-mobile-menu a:last-child {
  border-bottom: none;
}

.sh-mobile-phone {
  font-size: 13px !important;
  color: #a7b3c2 !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
}

.sh-mobile-cta {
  background: #fff !important;
  color: #1e2329 !important;
  padding: 14px 0 !important;
  text-align: center;
  margin-top: 20px;
}

.sh-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
  cursor: pointer;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 8%;
  padding-top: max(0px, env(safe-area-inset-top, 0px));
  min-height: 64px;
  height: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 24, 30, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(167, 179, 194, 0.1);
  transition: all 0.4s;
}

#site-header.is-scrolled {
  background: rgba(244, 245, 247, 0.96);
}

/* ——— Site footer ——— */
.sf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.sf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .sf-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }

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

@media (max-width: 480px) {
  .sf-grid {
    grid-template-columns: 1fr !important;
  }

  .sf-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.sf-link {
  font-size: 13px;
  color: #6b7280;
  transition: color 0.2s;
  text-decoration: none;
  display: block;
}

.sf-link:hover {
  color: #fff;
}

.sf-bottom a:hover {
  color: #9ca3af;
}

/* ——— Home page ——— */
.home-page {
  font-family: "Manrope", "Inter", sans-serif;
  background: #f4f5f7;
  color: #111827;
  min-height: 100vh;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
  padding: 4px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #a7b3c2;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.scrolled {
  color: #1e2329;
}

.nav-link.scrolled:hover {
  color: #39424e;
}

.nav-link.scrolled::after {
  background: #39424e;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-primary {
  background: #1e2329;
  color: #fff;
}

.cta-primary:hover {
  background: #39424e;
  transform: translateY(-1px);
}

.cta-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 30, 0.9) 0%, rgba(20, 24, 30, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.location-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.location-card:hover {
  transform: scale(1.02);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
}

.location-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 30, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background 0.4s;
}

.location-card:hover .location-overlay {
  background: linear-gradient(to top, rgba(20, 24, 30, 0.75) 0%, rgba(62, 66, 78, 0.15) 60%, transparent 100%);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.hero-float-card {
  display: flex;
}

@media (max-width: 900px) {
  .hero-float-card {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .why-us-grid > div:last-child {
    display: none !important;
  }

  .why-features-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .why-stats-row {
    flex-wrap: wrap !important;
    gap: 24px !important;
  }
}

@media (max-width: 480px) {
  .why-features-grid {
    grid-template-columns: 1fr !important;
  }

  .why-stats-row {
    gap: 20px !important;
  }

  .why-stats-row > div {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 36px !important;
  }

  .hero-sub {
    font-size: 15px !important;
  }

  .section-h2 {
    font-size: 32px !important;
  }

  .services-section {
    padding: 64px 5% !important;
  }

  .services-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 40px !important;
  }

  .services-section-header h2 {
    font-size: 28px !important;
  }

  .services-section-header p {
    font-size: 13px !important;
    max-width: 100% !important;
  }

  .services-main-grid {
    grid-template-columns: 1fr !important;
  }

  .services-main-grid > div:first-child,
  .services-main-grid > .service-card:first-child {
    grid-column: unset !important;
    height: 280px !important;
    min-height: 240px !important;
  }

  .services-main-grid > div,
  .services-main-grid > .service-card {
    height: 200px !important;
    min-height: 200px !important;
  }

  .locations-section {
    padding: 64px 5% !important;
  }

  .locations-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .locations-grid > a {
    height: 200px !important;
  }

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

  .steps-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .steps-section {
    padding: 64px 5% !important;
  }

  .steps-h2 {
    font-size: 28px !important;
  }

  .why-section {
    padding: 64px 5% !important;
  }

  .why-h2 {
    font-size: 28px !important;
  }

  .brand-strip {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }

  .final-cta-section {
    padding: 80px 5% !important;
  }

  .final-cta-h2 {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 26px !important;
  }

  .services-main-grid > div,
  .services-main-grid > .service-card {
    height: 180px !important;
    min-height: 180px !important;
  }

  .services-main-grid > div:first-child,
  .services-main-grid > .service-card:first-child {
    height: 240px !important;
    min-height: 220px !important;
  }

  .locations-grid {
    grid-template-columns: 1fr !important;
  }

  .locations-grid > a {
    height: 180px !important;
  }

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

  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  .final-cta-h2 {
    font-size: 26px !important;
  }

  .hero-badges {
    gap: 20px !important;
  }

  .hero-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-cta-row a,
  .hero-cta-row button {
    width: 100% !important;
    justify-content: center !important;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.hamburger.scrolled span {
  background: #1e2329;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  #home-header.site-header {
    padding: 0 20px !important;
    padding-top: max(0px, env(safe-area-inset-top, 0px)) !important;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #1e2329;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-left: 32px !important;
  padding-right: 32px !important;
  padding-top: max(24px, env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0) !important;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  display: block;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
  cursor: pointer;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a7b3c2;
}

.hover-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s;
}

.hover-arrow:hover {
  gap: 14px;
}

#home-header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  padding-top: max(0px, env(safe-area-inset-top, 0px));
  min-height: 72px;
  height: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: all 0.4s ease;
}

#home-header.site-header.is-scrolled {
  background: rgba(244, 245, 247, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(167, 179, 194, 0.2);
}

.hero-content {
  padding: 0 8% 10%;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 120px 6% 10%;
  }
}

/* Home hero: avoid forcing taller than viewport on phones (inline min-height:700px) */
@media (max-width: 768px) {
  #home-header + section {
    height: auto !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
  }

  #home-header + section > div:last-child {
    display: none !important;
  }
}

@media (max-width: 480px) {
  #home-header + section .hero-badges {
    margin-top: 32px !important;
  }
}

/* Cookie banner */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.cookie-banner {
  animation: slideUp 0.4s ease;
}

/* Consultation popup */
@keyframes fadeUpPopup {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.consultation-panel {
  animation: fadeUpPopup 0.4s ease;
}

/* Services listing page */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}

.svc-row:nth-child(even) .svc-img {
  order: 2;
}

.svc-row:nth-child(even) .svc-content {
  order: 1;
}

@media (max-width: 900px) {
  .svc-row {
    grid-template-columns: 1fr !important;
  }

  .svc-row:nth-child(even) .svc-img {
    order: 1;
  }

  .svc-row:nth-child(even) .svc-content {
    order: 2;
  }

  .svc-row {
    min-height: auto !important;
  }

  .svc-hero-h1 {
    font-size: 28px !important;
  }

  .svc-content-inner {
    padding: 40px 6% !important;
  }

  .svc-cta {
    padding: 64px 6% !important;
  }

  .svc-cta h2 {
    font-size: 28px !important;
  }

  .svc-hero-inner {
    padding: 0 6% 48px !important;
  }
}

@media (max-width: 480px) {
  .svc-hero-h1 {
    font-size: 22px !important;
  }

  .svc-content-inner h2 {
    font-size: 22px !important;
  }
}

.prob-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f4f5f7;
  border: 1px solid #e5e7eb;
  font-size: 12px;
  color: #6b7280;
  margin: 4px;
  cursor: default;
  transition: all 0.2s;
}

.prob-tag:hover {
  background: #1e2329;
  color: #fff;
  border-color: #1e2329;
}

/* Service detail */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: #1e2329;
}

.faq-icon {
  font-size: 20px;
  color: #a7b3c2;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.faq-icon.is-open {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.8;
  padding-bottom: 24px;
}

.faq-a[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .svc-split {
    grid-template-columns: 1fr !important;
  }

  .svc-detail-h1 {
    font-size: 28px !important;
  }

  .svc-detail-sidebar {
    display: none !important;
  }

  .svc-problems {
    grid-template-columns: 1fr !important;
  }

  .svc-main-content {
    padding: 48px 6% !important;
  }

  .svc-hero-inner-d {
    padding: 0 6% 48px !important;
  }
}

@media (max-width: 480px) {
  .svc-detail-h1 {
    font-size: 22px !important;
  }

  .faq-q {
    font-size: 14px !important;
  }
}

/* Locations */
.loc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.loc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.loc-card:hover img {
  transform: scale(1.05);
}

.loc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 30, 0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  transition: background 0.4s;
}

.loc-card:hover .loc-overlay {
  background: linear-gradient(to top, rgba(20, 24, 30, 0.78) 0%, rgba(62, 66, 78, 0.2) 55%, transparent 100%);
}

.loc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  transition: all 0.3s;
  margin-top: 8px;
}

.loc-card:hover .loc-arrow {
  color: #a7b3c2;
}

@media (max-width: 768px) {
  .locs-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .locs-hero-h1 {
    font-size: 30px !important;
  }

  .locs-stats {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .locs-grid {
    grid-template-columns: 1fr !important;
  }

  .locs-hero-h1 {
    font-size: 26px !important;
  }
}

/* Location detail */
.svc-link {
  display: block;
  padding: 20px 28px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  color: #1e2329;
  transition: all 0.2s;
}

.svc-link:hover {
  background: #1e2329;
  color: #fff;
  padding-left: 36px;
}

@media (max-width: 900px) {
  .loc-main {
    grid-template-columns: 1fr !important;
  }

  .loc-hero-h1 {
    font-size: 32px !important;
  }

  .loc-sidebar {
    display: none !important;
  }

  .loc-hoods {
    grid-template-columns: 1fr 1fr !important;
  }

  .loc-tech {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .loc-hero-h1 {
    font-size: 26px !important;
  }
}

/* About */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr !important;
  }

  .about-split > div:last-child {
    min-height: 320px !important;
  }

  .about-team {
    grid-template-columns: 1fr !important;
  }

  .about-team > div:first-child {
    height: 320px !important;
  }

  .about-team > div:last-child {
    padding: 40px 6% !important;
  }

  .about-hero-h1 {
    font-size: 28px !important;
  }

  .about-story-inner {
    padding: 60px 6% !important;
  }
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .about-section {
    padding: 64px 6% !important;
  }

  .about-h2 {
    font-size: 28px !important;
  }

  .about-cta-h2 {
    font-size: 28px !important;
  }

  .about-principles-h2 {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .about-hero-h1 {
    font-size: 22px !important;
  }

  .about-h2 {
    font-size: 24px !important;
  }

  .about-cta-h2 {
    font-size: 22px !important;
  }
}

/* Contact */
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: 14px;
  color: #1e2329;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #1e2329;
}

.form-input::placeholder {
  color: #9ca3af;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr !important;
  }

  .contact-hero-h1 {
    font-size: 28px !important;
  }

  .contact-content {
    padding: 40px 6% !important;
  }

  .contact-hero-inner {
    padding: 0 6% 48px !important;
  }
}

@media (max-width: 480px) {
  .contact-hero-h1 {
    font-size: 22px !important;
  }

  .contact-form-card {
    padding: 24px 16px !important;
    gap: 16px !important;
  }

  .contact-form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Schedule */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .sched-hero-h1 {
    font-size: 28px !important;
  }

  .sched-layout {
    grid-template-columns: 1fr !important;
  }

  .sched-sidebar {
    display: none !important;
  }

  .sched-content {
    padding: 40px 6% !important;
  }

  .sched-form-card {
    padding: 32px 24px !important;
  }

  .sched-hero-inner {
    padding: 0 6% 48px !important;
  }
}

@media (max-width: 480px) {
  .sched-hero-h1 {
    font-size: 22px !important;
  }

  .sched-form-card {
    padding: 24px 16px !important;
  }
}

/* Legal */
.pp-body h2,
.tos-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e2329;
  margin: 40px 0 12px;
}

.pp-body p,
.pp-body li,
.tos-body p,
.tos-body li {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.9;
}

.pp-body ul,
.tos-body ul {
  padding-left: 20px;
  margin-top: 8px;
}

.pp-body li,
.tos-body li {
  margin-bottom: 6px;
}

/* 404 (legacy app style) */
.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f8fafc;
  font-family: "Manrope", "Inter", sans-serif;
}

.notfound-inner {
  max-width: 28rem;
  width: 100%;
  text-align: center;
}

.notfound-code {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 300;
  color: #cbd5e1;
}

.notfound-rule {
  height: 2px;
  width: 4rem;
  background: #e2e8f0;
  margin: 0.5rem auto 0;
}

.notfound-h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e293b;
  margin-top: 1.5rem;
}

.notfound-p {
  color: #475569;
  line-height: 1.625;
  margin-top: 0.75rem;
}

.notfound-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.notfound-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.notfound-btn svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

/* Form success blocks */
.is-hidden {
  display: none !important;
}

.btn-submit:hover {
  background: #39424e !important;
}

[data-consultation-overlay][hidden],
[data-cookie-banner][hidden] {
  display: none !important;
}

[data-consultation-overlay]:not([hidden]) {
  display: flex;
}

[data-cookie-banner]:not([hidden]) {
  display: flex;
  padding-bottom: max(20px, env(safe-area-inset-bottom, 0px)) !important;
}
