html,
body {
  overflow-x: hidden;
}

:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --text: #f5f7fa;
  --muted: #a7acb5;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff5f1f;
  --accent-2: #ff8a4d;
  --accent-3: #9e3308;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-lg: 34px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 95, 31, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 138, 77, 0.11),
      transparent 24%
    ),
    linear-gradient(135deg, #030303 0%, #090909 45%, #111111 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.fonts-consented {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 340px;
  height: 340px;
  left: -100px;
  top: 90px;
  background: rgba(255, 95, 31, 0.14);
}

.orb-2 {
  width: 280px;
  height: 280px;
  right: -60px;
  top: 260px;
  background: rgba(255, 95, 31, 0.09);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.88);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  flex-shrink: 0;
  background: none;
  box-shadow: none;
  padding: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
  color: #edf0f6;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.25s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #220b03;
  box-shadow: 0 14px 35px rgba(255, 95, 31, 0.3);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: white;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 70px 0 30px;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-content,
.hero-visual {
  min-width: 0;
}

.hero-badge,
.section-badge,
.price-tag,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 31, 0.24);
  background: rgba(255, 95, 31, 0.08);
  color: #ffb596;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-badge {
  background: rgba(0, 0, 0, 0.25);
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(255, 138, 77, 0.25);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 11ch;
  margin-bottom: 22px;
}

.hero h1 span {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffb08a 35%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

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

.hero-image-card {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: url("hero.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 75% 25%, rgba(255, 95, 31, 0.3), transparent 28%);
}

.hero-floating {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.58);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.top-card {
  top: 20px;
  left: 20px;
  right: 120px;
  padding: 16px 18px;
  animation: floatCard 5s ease-in-out infinite;
}

.bottom-card {
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 22px;
  animation: floatCard 6s ease-in-out infinite 0.5s;
}

.bottom-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.bottom-card p,
.top-card p {
  color: #d2d5db;
}

.hero-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.hero-strip div {
  text-align: center;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #d8dde6;
  font-weight: 600;
}

.section {
  padding: 66px 0;
  position: relative;
}

.section-head {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

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

.service-card,
.price-card,
.split-card,
.contact-shell,
.contact-form,
.contact-box {
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.service-card {
  border-radius: 26px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.28);
}

.service-image {
  height: 250px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42));
}

.image-1 {
  background-image: url("innenreinigung.jpg");
}

.image-2 {
  background-image: url("aussenwaesche.jpg");
}

.image-3 {
  background-image: url("politurglanz.jpg");
}

.image-4 {
  background-image: none;
}

.image-5 {
  background-image: url("reifenwechsel.jpg");
}

.image-6 {
  background-image: url("leasing.jpg");
}

.image-7 {
  background-image: url("hbservice.jpg");
}

.image-8 {
  background-image: url("mobileaufbereitung.jpg");
}

.service-body {
  padding: 18px 18px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  border-radius: 24px;
  padding: 28px;
  position: relative;
}

.price-card.featured {
  border-color: rgba(255, 95, 31, 0.38);
  transform: translateY(-6px);
}

.price-card.premium-border {
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 95, 31, 0.16);
}

.price-top h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  min-height: 3em;
  display: flex;
  align-items: center;
}

.price {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.price-card li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8ebf0;
}

.split-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.split-card {
  border-radius: 28px;
  padding: 34px;
}

.split-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.split-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.feature-item {
  position: relative;
  padding: 0 0 0 20px;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 0.97rem;
  line-height: 1.5;
  color: #edf1f6;
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(255, 95, 31, 0.35);
}

.about-wrapper {
  width: 100%;
}

.about-card {
  width: 100%;
  padding: 24px;
  border-radius: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 24px;
  align-items: stretch;
}

.about-text,
.about-media {
  min-width: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.about-intro {
  font-size: 1rem;
  color: #eef2f7 !important;
  font-weight: 600;
}

.about-values {
  margin: 20px 0;
}

.about-values h3 {
  font-size: 0.96rem;
  margin-bottom: 12px;
  color: #ffd2bf;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-closing {
  margin-top: 6px;
  margin-bottom: 0;
}

.about-divider {
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.75) 25%,
    rgba(255, 95, 31, 0.95) 65%,
    rgba(255, 138, 77, 0.95) 100%
  );
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.15),
    0 0 18px rgba(255, 95, 31, 0.2);
}

.about-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(255, 95, 31, 0.18),
    transparent 60%
  );
  filter: blur(30px);
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 85%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section {
  padding-top: 70px;
}

.contact-shell {
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 24px;
}

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

.contact-box {
  border-radius: 18px;
  padding: 18px;
}

.contact-box span {
  display: block;
  color: #ffb596;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-box a,
.contact-box p {
  font-weight: 600;
  word-break: break-word;
}

.contact-form {
  border-radius: 24px;
  padding: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 95, 31, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.site-footer {
  margin-top: 120px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 95, 31, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.02);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 95, 31, 0.25), transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.25s ease;
}

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

.footer-modern {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.footer-left h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 420px;
}

.footer-address {
  margin-bottom: 20px;
  color: #d2d5db;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-contact-mini a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.25s ease;
}

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

.footer-route {
  box-shadow: 0 10px 30px rgba(255, 95, 31, 0.35);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

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

.route-btn {
  align-self: flex-start;
}

.footer-social span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-social .social-links {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-left {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-bottom-right a {
  color: var(--muted);
  transition: 0.25s ease;
}

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

.footer-bottom-right a:not(:last-child)::after {
  content: "•";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.author {
  font-weight: 600;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 95, 31, 0.5);
  background: rgba(255, 95, 31, 0.12);
  color: var(--accent);
}

.active-link {
  color: var(--accent-2) !important;
}

.active-link::after {
  width: 100% !important;
}

.hero-small {
  padding: 90px 0 20px;
}

.hero-layout-single {
  grid-template-columns: 1fr;
  gap: 24px;
}

.hero-layout-single .hero-content {
  max-width: 760px;
}

.hero-layout-single .hero-content h1 {
  max-width: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-layout-single .hero-content h1 span {
  display: inline-block;
  padding-right: 0.08em;
  -webkit-text-fill-color: transparent;
}

.price-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-detail-card,
.extras-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.price-detail-card {
  width: 100%;
  min-width: 0;
  padding: 20px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.price-detail-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 95, 31, 0.28);
}

.price-detail-card.featured {
  border-color: rgba(255, 95, 31, 0.38);
  transform: translateY(-6px);
}

.price-detail-card.premium-border {
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 95, 31, 0.16);
}

.price-tag {
  font-size: 0.75rem;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.price-detail-top,
.price-detail-list,
.price-detail-list li,
.price-detail-top h3,
.price-detail-value {
  min-width: 0;
}

.price-detail-top h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.price-detail-value {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.price-detail-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.price-detail-list li {
  position: relative;
  padding: 0 0 8px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8ebf0;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.price-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(255, 95, 31, 0.35);
}

.extras-card {
  padding: 28px;
}

.extras-table {
  display: grid;
  gap: 8px;
}

.extras-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.extras-row span {
  color: #edf1f6;
  font-weight: 500;
}

.extras-row strong {
  color: #ffffff;
  font-size: 1.05rem;
  white-space: nowrap;
}

.extras-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.reviews-cta {
  margin-top: 30px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.reviews-summary-badge {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 95, 31, 0.12);
  border: 1px solid rgba(255, 95, 31, 0.2);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.reviews-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.96rem;
}

.reviews-carousel {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.6s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.3);
}

.review-card p {
  flex-grow: 1;
  color: var(--muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card .author {
  margin-top: auto;
  font-weight: 600;
}

.stars {
  color: #ffb400;
  margin-bottom: 10px;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox input {
  margin-top: 4px;
}

.checkbox span {
  min-width: 0;
}

.checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page h3 {
  font-size: 1.05rem;
  margin-top: 20px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-phone > a:first-child {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  min-height: 46px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  line-height: 0;
  flex: 0 0 46px;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.28);
  transition: all 0.25s ease;
}

.whatsapp-link svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.whatsapp-link:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-track {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.active {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-btn:hover {
  background: rgba(255, 95, 31, 0.2);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: calc(50% - 520px);
}

.carousel-btn.next {
  right: calc(50% - 520px);
}

.service-note {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.4;
}

.whatsapp-policy-link {
  text-decoration: underline;
}

.cookie-banner {
  display: none;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 32px, 760px);
  z-index: 9999;
}

.cookie-banner.show {
  display: block;
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.cookie-top h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cookie-top p {
  color: var(--muted);
  margin: 0;
}

.cookie-top a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions-main .btn {
  width: auto;
}

.cookie-settings-panel {
  display: grid;
  gap: 14px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-option:last-child {
  border-bottom: 0;
}

.cookie-option-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.cookie-option-text p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.25s ease;
}

.cookie-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  transition: 0.25s ease;
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

.cookie-settings-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.cookie-settings-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-settings-footer--fingerprint {
  width: 54px;
  height: 54px;
  min-width: 54px;
}

.cookie-settings-footer--fingerprint svg {
  width: 50px;
  height: 50px;
  display: block;
}

.cookie-settings-footer--fingerprint:hover {
  filter: brightness(0.98);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  border-radius: 50%;
}

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

.ba-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.ba-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.28);
}

.ba-compare {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.ba-img-after {
  width: 100%;
  height: 100%;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  cursor: ew-resize;
  touch-action: pan-y;
}

.ba-handle::before,
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: center;
}

.ba-handle::before {
  left: 14px;
  transform: translateY(-50%) rotate(225deg);
}

.ba-handle::after {
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
}

.ba-badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.ba-badge-before {
  left: 14px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
}

.ba-badge-after {
  right: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #220b03;
  border-color: transparent;
}

.ba-card-body {
  padding: 18px;
}

.ba-card-body h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.ba-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.is-loading {
  color: rgba(255, 255, 255, 0.8);
}

.form-status.is-success {
  color: #7dffb1;
}

.form-status.is-error {
  color: #ff9b9b;
}

.contact-form button[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.gallery-hero .hero-text {
  max-width: 760px;
}

.gallery-section {
  padding-top: 24px;
}

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

.gallery-tile {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.28);
}

.gallery-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-tile-body {
  padding: 18px;
}

.gallery-tile-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.gallery-tile-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.legal-body .bg-orb {
  display: none;
}

.legal-body .bg-grid {
  position: absolute;
}

.legal-body .site-header {
  backdrop-filter: none;
}

.legal-body html,
.legal-body {
  scroll-behavior: auto;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 1024px) {
  .container {
    width: calc(100% - 40px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }

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

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

  .about-divider {
    width: 100%;
    height: 2px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

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

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

/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 18px);
  }

  .section {
    padding: 50px 0;
  }

  .section-head {
    text-align: center;
  }

  .section-head h2 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }

  .desktop-only,
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-menu {
    position: fixed;
    top: 84px;
    right: 0;
    width: 100%;
    height: calc(100dvh - 84px);
    background: #050505;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .mobile-menu a {
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
  }

  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.menu-open .site-header {
    background: #050505;
    backdrop-filter: none;
  }

  .hero {
    padding: 24px 0 20px;
    text-align: center;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    display: none;
    order: 2;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.25;
    max-width: 100%;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .service-card {
    flex: unset;
    width: 100%;
  }

  .service-image {
    height: 180px;
  }

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

  .price-card {
    padding: 16px 12px;
  }

  .price-top h3 {
    min-height: auto;
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .price {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .price-card ul {
    gap: 8px;
    margin-bottom: 16px;
  }

  .price-card li {
    padding-bottom: 8px;
    font-size: 0.85rem;
  }

  .price-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .price-detail-card {
    min-width: 0;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .price-tag {
    font-size: 0.68rem;
    padding: 5px 8px;
    margin-bottom: 8px;
  }

  .price-detail-top h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .price-detail-value {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .price-detail-list {
    gap: 6px;
  }

  .price-detail-list li {
    font-size: 0.8rem;
    line-height: 1.45;
    padding: 0 0 8px 16px;
  }

  .price-detail-list li::before {
    width: 7px;
    height: 7px;
    top: 0.7em;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-divider {
    display: none;
  }

  .about-photo {
    width: 100%;
    max-height: none;
    object-fit: contain;
  }

  .contact-section {
    padding-top: 40px;
  }

  .contact-shell {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .contact-info h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }

  .contact-info p {
    margin-bottom: 16px;
    font-size: 0.95rem;
  }

  .contact-boxes {
    gap: 10px;
  }

  .contact-box {
    padding: 14px;
    border-radius: 16px;
  }

  .contact-box span {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .contact-box a,
  .contact-box p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 16px;
    border-radius: 18px;
  }

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

  .field {
    gap: 6px;
    margin-bottom: 12px;
  }

  .field label {
    font-size: 0.9rem;
  }

  .field input,
  .field textarea,
  .field select {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .field textarea {
    min-height: 120px;
  }

  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 22px;
    padding: 16px;
    border-radius: 18px;
  }

  .reviews-summary-badge {
    font-size: 0.92rem;
    padding: 9px 13px;
  }

  .reviews-summary p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .reviews-cta {
    margin-top: 20px;
  }

  .reviews-carousel {
    overflow: hidden;
    width: 100%;
  }

  .reviews-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    transition: transform 0.6s ease;
    will-change: transform;
  }

  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  }

  .review-card p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.65;
    color: #e8e8e8;
  }

  .stars {
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .review-card .author {
    margin-top: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
  }

  .reviews-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .carousel-btn {
    display: none;
  }

  .cookie-banner {
    display: none;
    opacity: 0;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(100% - 32px, 760px);
    max-height: calc(100dvh - 24px);
    z-index: 9999;
  }

  .cookie-banner.show {
    display: block;
    opacity: 1;
  }

  .cookie-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-settings-panel {
    display: grid;
    gap: 14px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: none;
    width: auto;
    max-height: calc(100dvh - 24px);
  }

  .cookie-content {
    padding: 16px;
    gap: 14px;
    border-radius: 18px;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }

  .cookie-top h3 {
    font-size: 1rem;
  }

  .cookie-top p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .cookie-option {
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-option-text strong {
    font-size: 0.94rem;
  }

  .cookie-option-text p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .cookie-settings-footer--fingerprint {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .cookie-settings-footer--fingerprint svg {
    width: 46px;
    height: 46px;
  }

  .ba-slider-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ba-card-body {
    padding: 16px;
  }

  .ba-card-body h3 {
    font-size: 1.05rem;
  }

  .ba-handle {
    width: 48px;
    height: 48px;
  }

  .ba-badge {
    top: 10px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .ba-badge-before {
    left: 10px;
  }

  .ba-badge-after {
    right: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-tile {
    border-radius: 20px;
  }

  .gallery-tile-body {
    padding: 16px;
  }
}

@media (max-width: 430px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    max-height: calc(100dvh - 16px);
  }

  .cookie-content {
    padding: 14px;
    border-radius: 16px;
    max-height: calc(100dvh - 16px);
  }

  .cookie-top p {
    font-size: 0.85rem;
  }

  .cookie-option-text p {
    font-size: 0.8rem;
  }

  .cookie-switch {
    width: 48px;
    height: 28px;
  }

  .cookie-slider::before {
    width: 20px;
    height: 20px;
  }

  .cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(20px);
  }
}