@import url("sections/vars-reset.css");
@import url("sections/about.css");
@import url("sections/portfolio.css");
@import url("sections/contact.css");

/* === Site chrome: header, hero, sections, pricing, footer, cookie === */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 21, 36, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(12px, 3vw, 28px);
  padding: 10px 0 12px;
}

.site-header__brand {
  justify-self: start;
  min-width: 0;
}

.site-header__nav.site-nav {
  justify-self: center;
  max-width: 100%;
}

.site-header__langs {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.55;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lang-flag:hover {
  opacity: 0.95;
  transform: scale(1.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.lang-flag.is-active {
  opacity: 1;
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

.lang-flag__icon {
  font-size: 1.05rem;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 720px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    row-gap: 8px;
  }

  .site-header__nav.site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-header__brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header__langs {
    grid-column: 3;
    grid-row: 1;
  }
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.site-logo__img {
  display: block;
  height: clamp(42px, 7vw, 58px);
  width: auto;
  max-width: min(240px, 70vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
}

.site-nav__link {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 2px 2px 6px;
  transition:
    color 0.2s ease,
    text-shadow 0.25s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #fff;
  text-shadow: 0 0 18px rgba(147, 197, 253, 0.45);
  outline: none;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.site-nav__link.is-active {
  color: #fff;
}

.site-nav__link.is-active::after {
  transform: scaleX(1);
  background: var(--green);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.45);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: #1e293b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.hero {
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.18), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.12), transparent 32%),
    linear-gradient(180deg, #0c1929 0%, #0a1524 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.hero__eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 4px;
}

.hero__online {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__online-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #bbf7d0, #16a34a 55%, #14532d);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: hero-online-pulse 1.85s ease-in-out infinite;
}

@keyframes hero-online-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  18% {
    transform: scale(1.5);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  36% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  }
  52% {
    transform: scale(1.28);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }
  68% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.25);
  }
}

.hero__eyebrow {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__cta-note {
  margin: 14px 0 0;
  max-width: 52ch;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  max-width: 560px;
}

.hero__proof-item {
  flex: 1 1 0;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero__proof-item:nth-child(2) {
  border-color: rgba(34, 197, 94, 0.28);
  background: rgba(20, 36, 28, 0.55);
}

.hero__proof-value {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}

.hero__proof-stat-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
}

.hero__proof-item:nth-child(2) .hero__proof-value {
  color: #bbf7d0;
}

.hero__proof-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

@media (max-width: 560px) {
  .hero__proof {
    gap: 8px;
  }

  .hero__proof-item {
    flex-basis: calc(50% - 4px);
    padding: 10px 12px;
  }
}

.hero__cards {
  display: grid;
  gap: 14px;
}

.hero-card {
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.65);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  color: #cbd5e1;
}

.hero-card--accent {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(34, 197, 94, 0.15));
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section {
  padding: 96px 0;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #fff;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Match visual language of #about (Über uns): layered glow + grid + inner frame */
#why {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 90% 55% at 15% 0%, rgba(59, 130, 246, 0.22), transparent 52%),
    radial-gradient(ellipse 70% 45% at 92% 15%, rgba(34, 197, 94, 0.12), transparent 48%),
    radial-gradient(ellipse 55% 40% at 80% 95%, rgba(249, 115, 22, 0.1), transparent 45%),
    linear-gradient(165deg, #0a1322 0%, #0f1d31 42%, #152a45 100%);
}

#why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 99px,
      rgba(255, 255, 255, 0.028) 100px
    );
  opacity: 0.55;
  pointer-events: none;
}

#why::after {
  content: "";
  position: absolute;
  inset: clamp(16px, 3vw, 28px);
  border-radius: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 1px 48px rgba(59, 130, 246, 0.04);
  pointer-events: none;
}

#why .container {
  position: relative;
  z-index: 1;
}

#why .grid {
  display: grid;
  gap: 20px;
}

#why .why-grid {
  gap: 16px;
}

#why .grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

/* Full-width multilingual card — shell styled like Über uns (about.css .about-card) */
#why .why-grid .about-card--why-languages {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  #why {
    padding: 80px 0;
  }

  #why::after {
    inset: 12px;
    border-radius: 22px;
  }

  #why .grid--2 {
    grid-template-columns: 1fr;
  }

  #why .why-grid .about-card--why-languages {
    grid-column: auto;
  }
}

.section-services {
  background: var(--bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.65);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.service-card--featured {
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.14),
    0 14px 44px rgba(0, 0, 0, 0.28),
    0 0 52px rgba(249, 115, 22, 0.16);
}

.service-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  opacity: 0.85;
}

.service-card--featured::before {
  height: 4px;
  opacity: 1;
  background: linear-gradient(90deg, var(--orange), #fb923c, var(--green));
}

.service-card__summary {
  list-style: none;
  cursor: pointer;
}

.service-card__summary::-webkit-details-marker {
  display: none;
}

.service-card__summary-inner {
  position: relative;
  padding: 18px 20px 16px;
}

.service-card__badge {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff7ed;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(234, 88, 12, 0.75));
  border: 1px solid rgba(253, 186, 116, 0.45);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
  pointer-events: none;
}

.service-card--featured .service-card__title {
  padding-right: 96px;
}

.service-card__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #fff;
}

.service-card__excerpt {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card__open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #ecfdf5;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(134, 239, 172, 0.38);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.service-card__open-btn::after {
  content: "→";
  display: inline-block;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.service-card__open-btn:hover {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(167, 243, 208, 0.55);
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.18);
  transform: translateY(-1px);
}

.service-card__open-btn:hover::after {
  transform: translateX(3px);
}

.service-card--featured .service-card__open-btn {
  color: #fff7ed;
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(253, 186, 116, 0.55);
}

.service-card--featured .service-card__open-btn:hover {
  background: rgba(249, 115, 22, 0.28);
  border-color: rgba(253, 186, 116, 0.75);
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.22);
}

details[open] .service-card__open-btn {
  display: none;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
  color: var(--muted);
}

.service-card__divider {
  height: 1px;
  margin: 0 0 16px;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
}

.service-card__body-text {
  flex: 1;
}

.service-card__body-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
}

.service-card__close-btn {
  align-self: flex-start;
  margin-top: 18px;
  padding: 7px 14px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.service-card__close-btn:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn--small {
  font-size: 0.85rem;
  padding: 8px 14px;
}

.section-pricing {
  background: linear-gradient(180deg, #0a1524 0%, #0e1b2e 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  opacity: 0.85;
}

.pricing-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 22px 20px 20px;
}

.pricing-card__name {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.15rem;
}

.pricing-card__audience {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.pricing-card__desc {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing-card__price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
  margin-bottom: 14px;
}

.pricing-card__old {
  text-decoration: line-through;
  color: rgba(248, 250, 252, 0.45);
  font-size: 0.95rem;
}

.pricing-card__new {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.pricing-card__list {
  flex: 1;
  margin: 0 0 18px;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-card__list li {
  margin-bottom: 6px;
}

.pricing-card__cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

.pricing-card__badge-slot {
  min-height: 30px;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
}

.pricing-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
}

.pricing-card__badge--recommended {
  border-color: rgba(16, 185, 129, 0.55);
  background: rgba(16, 185, 129, 0.16);
  color: #a7f3d0;
}

@media (min-width: 561px) {
  .pricing-card--featured {
    position: relative;
    z-index: 2;
    transform: scale(1.035);
    transform-origin: center center;
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow:
      0 22px 56px rgba(37, 99, 235, 0.28),
      0 0 0 1px rgba(56, 189, 248, 0.12);
  }

  .pricing-card--featured::before {
    height: 5px;
    opacity: 1;
    background: linear-gradient(90deg, #3b82f6, #22d3ee, #34d399);
  }

  .pricing-card--featured .pricing-card__new {
    font-size: 1.62rem;
  }
}

.pricing-faq {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
}

.pricing-faq__title {
  margin: 0 0 22px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.pricing-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin-inline: auto;
}

.pricing-faq__item--accordion {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.38);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.pricing-faq__item--tone-1 {
  border-left: 3px solid var(--orange);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(249, 115, 22, 0.12);
}

.pricing-faq__item--tone-2 {
  border-left: 3px solid var(--blue);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(59, 130, 246, 0.12);
}

.pricing-faq__item--tone-3 {
  border-left: 3px solid var(--green);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(34, 197, 94, 0.12);
}

.pricing-faq__item--accordion.is-open {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.52);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(59, 130, 246, 0.1);
}

.pricing-faq__heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  margin: 0;
  border: none;
  background: transparent;
  color: #f8fafc;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease;
}

.pricing-faq__trigger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-faq__trigger:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.85);
  outline-offset: -2px;
}

.pricing-faq__trigger-text {
  flex: 1;
  min-width: 0;
}

.pricing-faq__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, background 0.22s ease;
}

.pricing-faq__item--accordion.is-open .pricing-faq__icon {
  transform: rotate(45deg);
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(147, 197, 253, 0.45);
}

.pricing-faq__icon-char {
  display: block;
  margin-top: -2px;
}

.pricing-faq__panel {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-faq__panel[hidden] {
  display: none;
}

.pricing-faq__a {
  margin: 0;
  padding-top: 12px;
  font-size: 0.92rem;
  line-height: 1.58;
  color: #e8eef7;
}

.pricing-card__cta--featured {
  position: relative;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 42%, #0ea5e9 100%);
  border: 1px solid rgba(186, 230, 253, 0.42);
  box-shadow:
    0 10px 34px rgba(37, 99, 235, 0.58),
    0 0 32px rgba(56, 189, 248, 0.38);
  transition:
    filter 0.2s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}

.pricing-card__cta--featured:hover {
  filter: brightness(1.12) saturate(1.05);
  border-color: rgba(224, 242, 254, 0.55);
  box-shadow:
    0 16px 46px rgba(37, 99, 235, 0.68),
    0 0 48px rgba(56, 189, 248, 0.48);
  transform: translateY(-2px);
}

.pricing-card__cta--featured:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.95);
  outline-offset: 3px;
}

.trust-strip {
  padding: 44px 0 52px;
  background: linear-gradient(180deg, #0e1b2e 0%, #0f1c2f 50%, #101a2b 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.trust-strip__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin-inline: auto;
  list-style: none;
  margin-block: 0;
  padding: 0;
}

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
}

.trust-strip__item--glass {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.trust-strip__item--tone-1.trust-strip__item--glass {
  border: 1px solid rgba(249, 115, 22, 0.48);
  border-left: 3px solid var(--orange);
  background: rgba(28, 22, 18, 0.52);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(249, 115, 22, 0.1);
}

.trust-strip__item--tone-2.trust-strip__item--glass {
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-left: 3px solid var(--blue);
  background: rgba(15, 23, 42, 0.58);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(59, 130, 246, 0.12);
}

.trust-strip__item--tone-3.trust-strip__item--glass {
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-left: 3px solid var(--green);
  background: rgba(16, 30, 24, 0.52);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(34, 197, 94, 0.1);
}

.trust-strip__icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip__item--tone-1 .trust-strip__icon-wrap {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0.06));
  color: #fdba74;
}

.trust-strip__item--tone-2 .trust-strip__icon-wrap {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.28), rgba(59, 130, 246, 0.08));
  color: #bfdbfe;
}

.trust-strip__item--tone-3 .trust-strip__icon-wrap {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.26), rgba(34, 197, 94, 0.07));
  color: #86efac;
}

.trust-strip__svg {
  width: 22px;
  height: 22px;
  display: block;
}

.trust-strip__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.45;
  padding-top: 3px;
}

.trust-strip__label--counted {
  padding-top: 2px;
}

.trust-strip__count-line {
  display: inline;
  white-space: normal;
}

.trust-strip__plus,
.trust-strip__num {
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-strip__item--tone-1 .trust-strip__plus,
.trust-strip__item--tone-1 .trust-strip__num {
  color: #fdba74;
}

.trust-strip__item--tone-2 .trust-strip__num {
  color: #bfdbfe;
}

.trust-strip__item--tone-3 .trust-strip__num {
  color: #86efac;
}

.trust-strip__tail {
  font-weight: 600;
  font-size: 0.95rem;
  color: #f1f5f9;
}

@media (min-width: 900px) {
  .trust-strip__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: none;
    width: 100%;
    gap: 14px;
  }

  .trust-strip__item {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 12px;
    gap: 10px;
  }

  .trust-strip__icon-wrap {
    width: 40px;
    height: 40px;
  }

  .trust-strip__label {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .trust-strip__tail {
    font-size: 0.84rem;
  }

  .trust-strip__num,
  .trust-strip__plus {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-faq__item--accordion,
  .pricing-card__cta--featured {
    transition: none;
  }

  .pricing-faq__item--accordion.is-open .pricing-faq__icon {
    transform: none;
  }

  .pricing-card__cta--featured:hover {
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: #080f1a;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1.2fr);
  align-items: center;
  gap: 22px 32px;
}

.site-footer__brand {
  min-width: 0;
}

.site-footer__brand-name {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-footer__brand-line {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 36ch;
}

.site-footer__contact-line {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer__contact-line--phone {
  margin-top: 8px;
}

.site-footer__contact-label {
  color: rgba(226, 232, 240, 0.6);
}

.site-footer__email {
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 1px;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition:
    color 0.2s ease,
    background-size 0.25s ease;
}

.site-footer__email:hover,
.site-footer__email:focus-visible,
.site-footer__tel:hover,
.site-footer__tel:focus-visible {
  color: var(--text-soft);
  background-size: 100% 1px;
  outline: none;
}

.site-footer__cta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.32);
  background: rgba(37, 99, 235, 0.08);
  color: #dbeafe;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(147, 197, 253, 0.55);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.25);
  outline: none;
}

.site-footer__cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.site-footer__cta:hover .site-footer__cta-arrow,
.site-footer__cta:focus-visible .site-footer__cta-arrow {
  transform: translateX(3px);
}

.site-footer__meta {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer__legal-link {
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.site-footer__legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: #fff;
  outline: none;
}

.site-footer__legal-link:hover::after,
.site-footer__legal-link:focus-visible::after {
  transform: scaleX(1);
}

.site-footer__legal-sep {
  color: rgba(226, 232, 240, 0.25);
}

.site-footer__copy {
  margin: 0;
  color: rgba(226, 232, 240, 0.45);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .site-footer__brand-line {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer__contact-line {
    justify-content: center;
  }

  .site-footer__cta {
    justify-self: center;
  }

  .site-footer__meta {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .site-footer__legal {
    justify-content: center;
  }
}

.section-legal-page {
  background: linear-gradient(180deg, #0a1524 0%, #0e1b2e 100%);
  padding-top: 64px;
  padding-bottom: 80px;
}

.legal-page {
  max-width: 820px;
}

.legal-page__head {
  margin-bottom: 28px;
}

.legal-page__title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.legal-page__intro {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-page__body h2 {
  margin: 28px 0 10px;
  color: #fff;
  font-size: 1.15rem;
}

.legal-page__body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
}

.legal-page__note {
  margin: 28px 0 8px;
  padding: 16px 18px;
  border-left: 3px solid rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.06);
  border-radius: 8px;
}

.legal-page__note h2 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.legal-page__note p {
  margin: 0;
}

.legal-page__back {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.legal-page__back-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.legal-page__back-link:hover,
.legal-page__back-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

.cookie-banner--hidden {
  display: none !important;
}

.cookie-banner__panel {
  width: min(520px, 100%);
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.cookie-banner__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #fff;
}

.cookie-banner__text {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner__links {
  margin: 0 0 18px;
  font-size: 0.9rem;
}

.cookie-banner__links a {
  color: var(--text-soft);
}

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

@media (max-width: 520px) {
  .cookie-banner {
    align-items: flex-end;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
    width: 100%;
  }

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

.btn--cookie-primary {
  background: var(--green);
  color: #052e16;
  border: none;
}

.btn--cookie-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}

/* Floating WhatsApp — mid-right, glass, gentle shake */
.whatsapp-float {
  position: fixed;
  right: max(10px, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  text-decoration: none;
  line-height: 0;
  outline: none;
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(34, 197, 94, 0.85);
  outline-offset: 4px;
  border-radius: 20px;
}

.whatsapp-float__shake {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  animation: wa-shake 3.4s ease-in-out infinite;
}

.whatsapp-float__glass {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 12vw, 62px);
  height: clamp(48px, 12vw, 62px);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float__img {
  width: 56%;
  height: auto;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.whatsapp-float:hover .whatsapp-float__shake,
.whatsapp-float:focus-visible .whatsapp-float__shake {
  animation-play-state: paused;
}

.whatsapp-float:hover .whatsapp-float__glass,
.whatsapp-float:focus-visible .whatsapp-float__glass {
  transform: scale(1.07);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

@keyframes wa-shake {
  0%,
  86%,
  100% {
    transform: rotate(0deg);
  }
  88% {
    transform: rotate(-4.5deg);
  }
  90% {
    transform: rotate(4.5deg);
  }
  92% {
    transform: rotate(-2.5deg);
  }
  94% {
    transform: rotate(0deg);
  }
}

@media (max-width: 520px) {
  .whatsapp-float {
    right: max(8px, env(safe-area-inset-right, 0px));
  }

  .whatsapp-float__glass {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__online-dot,
  .whatsapp-float__shake {
    animation: none !important;
  }

  .hero__online-dot {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
  }
}
