/*
Theme Name: Arico Energy
Theme URI: https://business.arico-energy.com
Author: Arico Energy
Description: Custom block theme for the Arico Energy business website prototype.
Version: 0.8.15
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 8.2
Text Domain: arico-energy
*/

:root {
  --arico-navy: #071f3b;
  --arico-deep: #021426;
  --arico-cyan: #0098b6;
  --arico-cyan-bright: #22d6e8;
  --arico-orange: #f59a13;
  --arico-yellow: #fdba24;
  --arico-text: #102033;
  --arico-muted: #5f6f82;
  --arico-border: #d9e0e6;
  --arico-soft: #f7fafc;
  --arico-shadow: 0 18px 42px rgba(7, 31, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--arico-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.arico-site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 152, 182, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 52%, #ffffff 100%);
}

.arico-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(210px, 280px) 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  min-height: clamp(84px, 6vw, 110px);
  padding: 16px clamp(28px, 4vw, 78px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 230, 0.78);
  backdrop-filter: blur(14px);
}

.arico-brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 12vw, 260px);
}

.arico-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.arico-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 2.35vw, 46px);
  color: var(--arico-navy);
  font-size: clamp(16px, 0.9vw, 19px);
  font-weight: 700;
}

.arico-nav a {
  position: relative;
  text-decoration: none;
}

.arico-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: var(--arico-cyan-bright);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 160ms ease;
}

.arico-nav a:hover::after,
.arico-nav a:focus-visible::after,
.arico-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.arico-header-cta,
.arico-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 2.6vw, 54px);
  padding: 0 clamp(18px, 1.8vw, 30px);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: clamp(13px, 0.82vw, 16px);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.arico-button:hover,
.arico-button:focus-visible {
  transform: translateY(-1px);
}

.arico-header-cta,
.arico-button-primary {
  background: linear-gradient(135deg, #ff9c18, var(--arico-orange));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(245, 154, 19, 0.26);
}

.arico-header-cta:hover,
.arico-header-cta:focus-visible,
.arico-button-primary:hover,
.arico-button-primary:focus-visible {
  background: linear-gradient(135deg, #ffad38, #ff8f00);
  box-shadow: 0 16px 30px rgba(245, 154, 19, 0.34);
  transform: translateY(-1px);
}

.arico-button-secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--arico-navy);
  color: var(--arico-navy);
}

.arico-button-secondary:hover,
.arico-button-secondary:focus-visible {
  background: var(--arico-navy);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(7, 31, 59, 0.18);
}

.arico-hero {
  position: relative;
  isolation: isolate;
  --arico-hero-height: clamp(520px, 34vw, 640px);
  --arico-hero-video-top: 0px;
  --arico-hero-video-width: calc((var(--arico-hero-height) - var(--arico-hero-video-top)) * 16 / 9);
  display: grid;
  grid-template-columns: minmax(360px, 39vw) minmax(560px, 1fr);
  height: var(--arico-hero-height);
  min-height: 520px;
  max-height: 640px;
  overflow: hidden;
  background: #ffffff;
}

.arico-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ffffff 0,
    #ffffff calc(100% - var(--arico-hero-video-width) + 2px),
    rgba(255, 255, 255, 0) calc(100% - var(--arico-hero-video-width) + 24px)
  );
  content: "";
}

.arico-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 610px;
  padding: clamp(24px, 3vw, 46px) clamp(24px, 3.5vw, 64px);
}

.arico-eyebrow,
.arico-section-kicker {
  margin: 0 0 12px;
  color: var(--arico-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.arico-hero .arico-eyebrow {
  text-align: left;
}

.arico-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--arico-navy);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.arico-hero-text {
  max-width: 500px;
  margin: clamp(12px, 1.2vw, 18px) 0 0;
  color: #39475b;
  font-size: clamp(15px, 0.9vw, 18px);
  line-height: 1.42;
}

.arico-hero-actions {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(230px, 1fr);
  gap: clamp(10px, 1vw, 16px);
  align-items: stretch;
  max-width: 560px;
  margin-top: clamp(16px, 1.7vw, 24px);
}

.arico-hero-actions .arico-button {
  width: 100%;
  min-height: clamp(50px, 3vw, 58px);
  padding-inline: clamp(12px, 1.2vw, 22px);
  white-space: normal;
}

.arico-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.2vw, 22px);
  max-width: 560px;
  margin-top: clamp(16px, 1.8vw, 28px);
  color: #33445a;
  font-size: clamp(11px, 0.72vw, 13px);
}

.arico-trust-shield {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.arico-trust-row p {
  margin: 8px 0 0;
}

.arico-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--arico-orange);
  font-size: clamp(28px, 2.1vw, 38px);
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 136, 0, 0.2);
}

.arico-shield {
  display: inline-grid;
  width: clamp(42px, 3.2vw, 54px);
  height: clamp(42px, 3.2vw, 54px);
  place-items: center;
  flex: 0 0 auto;
}

.arico-shield img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arico-hero-media {
  position: static;
  min-width: 0;
  overflow: visible;
  background: transparent;
}

.arico-hero-media::before {
  position: absolute;
  inset: 0 auto 0 clamp(34%, 40vw, 48%);
  z-index: 2;
  width: clamp(420px, 31vw, 660px);
  background: #ffffff;
  clip-path: polygon(0 0, 82% 0, 54% 39%, 68% 39%, 28% 100%, 0 100%);
  content: "";
}

.arico-hero-video-crop {
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  z-index: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 42%);
  contain: paint;
  background: #ffffff;
}

.arico-hero-video-crop video,
.arico-hero-video-crop img {
  position: absolute;
  top: var(--arico-hero-video-top);
  right: 0;
  width: var(--arico-hero-video-width);
  height: calc(var(--arico-hero-height) - var(--arico-hero-video-top));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: right top;
}

.arico-hero-video-crop img {
  z-index: 0;
}

.arico-hero-video-crop video {
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .arico-hero-video-crop video {
    display: none;
  }
}

.arico-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px clamp(20px, 5vw, 80px);
  background: linear-gradient(135deg, var(--arico-navy), #032b50);
  color: #ffffff;
}

.arico-benefits article {
  display: grid;
  grid-template-columns: clamp(58px, 4vw, 68px) 1fr;
  gap: clamp(14px, 1.4vw, 20px);
  align-items: center;
  padding: clamp(14px, 1.4vw, 20px) clamp(18px, 2vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.arico-benefits article:last-child {
  border-right: 0;
}

.arico-benefits span {
  display: grid;
  width: clamp(52px, 3.8vw, 64px);
  height: clamp(52px, 3.8vw, 64px);
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--arico-cyan), #0fbfd3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 10px 26px rgba(0, 152, 182, 0.24);
}

.arico-benefits span img {
  display: block;
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.arico-benefits h2,
.arico-benefits p {
  margin: 0;
}

.arico-benefits h2 {
  font-size: clamp(14px, 0.95vw, 17px);
}

.arico-benefits p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 0.75vw, 14px);
}

.arico-section {
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 80px);
}

.arico-section > h2,
.arico-services > h2 {
  max-width: 900px;
  margin: 0 auto clamp(22px, 2.6vw, 34px);
  color: var(--arico-navy);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.12;
  text-align: center;
}

.arico-card-grid {
  display: grid;
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.arico-card-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.arico-card,
.arico-post-card {
  min-height: 242px;
  padding: clamp(22px, 2vw, 30px);
  background: #ffffff;
  border: 1px solid rgba(217, 224, 230, 0.86);
  border-radius: 8px;
  box-shadow: var(--arico-shadow);
}

.arico-card-icon {
  display: block;
  width: clamp(58px, 4.6vw, 78px);
  height: clamp(58px, 4.6vw, 78px);
}

.arico-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arico-card h3,
.arico-post-card h3 {
  margin: 18px 0 10px;
  color: var(--arico-navy);
  font-size: 22px;
  line-height: 1.22;
}

.arico-card p,
.arico-post-card p {
  color: #43546a;
}

.arico-card a,
.arico-post-card a,
.wp-block-post-excerpt__more-link {
  color: var(--arico-cyan);
  font-weight: 800;
  text-decoration: none;
}

.arico-process {
  padding-top: 6px;
  padding-bottom: clamp(18px, 2.6vw, 38px);
}

.arico-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1120px;
  margin: 0 auto;
}

.arico-process-grid article {
  position: relative;
  display: grid;
  grid-template-columns: clamp(126px, 9vw, 158px) 1fr;
  gap: clamp(22px, 2vw, 32px);
  align-items: start;
}

.arico-process-grid article:not(:last-child)::after {
  position: absolute;
  top: 34px;
  right: calc(clamp(22px, 2vw, 32px) * -0.5);
  width: 2px;
  height: 112px;
  background: linear-gradient(180deg, transparent, rgba(34, 186, 208, 0.72), transparent);
  content: "";
}

.arico-process-grid span {
  grid-row: 1 / 3;
}

.arico-process-grid h3,
.arico-process-grid p {
  grid-column: 2;
}

.arico-process-grid span {
  display: block;
  width: clamp(118px, 8.4vw, 146px);
  height: clamp(118px, 8.4vw, 146px);
}

.arico-process-grid span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arico-process-grid h3 {
  margin: 18px 0 0;
  color: var(--arico-navy);
}

.arico-process-grid p {
  margin: -8px 0 0;
  color: #43546a;
}

.arico-industries {
  padding-top: clamp(18px, 2.4vw, 36px);
  padding-bottom: clamp(20px, 2.8vw, 40px);
}

.arico-industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}

.arico-industry-grid article {
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  gap: 10px;
  min-height: 182px;
  place-items: center;
  padding: 22px 14px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 31, 59, 0.18), rgba(2, 20, 38, 0.92)),
    var(--arico-industry-image) center / cover;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--arico-shadow);
}

.arico-industry-gastronomie {
  --arico-industry-image: url("/wp-content/themes/arico-energy/assets/images/industries/industrie-gastronomie.png");
}

.arico-industry-einzelhandel {
  --arico-industry-image: url("/wp-content/themes/arico-energy/assets/images/industries/industrie-einzelhandel.png");
}

.arico-industry-bueros {
  --arico-industry-image: url("/wp-content/themes/arico-energy/assets/images/industries/industrie-office.png");
}

.arico-industry-handwerk {
  --arico-industry-image: url("/wp-content/themes/arico-energy/assets/images/industries/industrie-handwerk.png");
}

.arico-industry-praxen {
  --arico-industry-image: url("/wp-content/themes/arico-energy/assets/images/industries/industrie-praxen.png");
}

.arico-industry-kmu {
  --arico-industry-image: url("/wp-content/themes/arico-energy/assets/images/industries/industrie-kmu-companies.png");
}

.arico-industry-grid span {
  display: block;
  grid-row: 2;
  width: clamp(54px, 4.2vw, 74px);
  height: clamp(54px, 4.2vw, 74px);
}

.arico-industry-grid span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arico-industry-grid strong {
  grid-row: 3;
  font-size: 18px;
  line-height: 1.18;
}

.arico-tutorials {
  position: relative;
  overflow: hidden;
  padding-top: clamp(28px, 3.4vw, 50px);
  padding-bottom: clamp(34px, 4.2vw, 62px);
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 186, 208, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eefbfe 100%);
  border-top: 1px solid rgba(217, 224, 230, 0.82);
  border-bottom: 1px solid rgba(217, 224, 230, 0.82);
}

.arico-tutorials > h2 {
  max-width: 900px;
  margin: 0 auto 8px;
  color: var(--arico-navy);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.15;
  text-align: center;
}

.arico-tutorials-intro {
  max-width: 760px;
  margin: 0 auto clamp(22px, 2.4vw, 34px);
  color: #6d7a8c;
  font-weight: 700;
  text-align: center;
}

.arico-tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  max-width: 1280px;
  margin: 0 auto;
}

.arico-tutorial-card {
  overflow: hidden;
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(2, 20, 38, 0.12);
}

.arico-tutorial-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dbe9ef;
}

.arico-tutorial-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arico-tutorial-step,
.arico-tutorial-duration {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 900;
  line-height: 1;
}

.arico-tutorial-step {
  top: 14px;
  left: 14px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #ff7a00, #ff9a12);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.22);
}

.arico-tutorial-duration {
  right: 14px;
  bottom: 14px;
  padding: 8px 14px;
  background: rgba(2, 36, 70, 0.82);
}

.arico-tutorial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: clamp(58px, 4.7vw, 77px);
  aspect-ratio: 1;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: linear-gradient(180deg, #ffad2d, #ff7700);
  color: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 25px rgba(255, 128, 0, 0.42);
}

.arico-tutorial-play::before {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #ffffff;
  content: "";
  transform: translate(-50%, -50%);
}

.arico-tutorial-card.is-playing .arico-tutorial-play {
  opacity: 0;
  pointer-events: none;
}

.arico-tutorial-copy {
  padding: clamp(16px, 1.4vw, 24px) clamp(18px, 1.7vw, 28px) clamp(18px, 1.6vw, 26px);
}

.arico-tutorial-copy h3 {
  margin: 0 0 8px;
  color: var(--arico-navy);
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.2;
}

.arico-tutorial-copy p {
  margin: 0;
  color: #516177;
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 700;
  line-height: 1.45;
}

.arico-tutorial-note {
  display: flex;
  width: min(470px, calc(100vw - 48px));
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: clamp(26px, 3vw, 40px) auto 0;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--arico-navy);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(2, 20, 38, 0.16);
}

.arico-tutorial-note span {
  position: relative;
  display: block;
  width: 18px;
  height: 28px;
  background: linear-gradient(180deg, #ff7a00, #ffad18);
  clip-path: polygon(48% 0, 100% 0, 62% 40%, 100% 40%, 28% 100%, 42% 54%, 0 54%);
}

.arico-tutorial-note p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.arico-news {
  padding-top: clamp(14px, 2vw, 28px);
  padding-bottom: clamp(18px, 2.8vw, 42px);
}

.arico-news-grid,
.arico-news .wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.arico-post-card {
  padding: 0;
  overflow: hidden;
}

.arico-post-card > img,
.arico-post-card .wp-block-post-featured-image {
  align-self: stretch;
  width: 100%;
  height: 100%;
  margin: 0;
}

.arico-post-card > img,
.arico-post-card .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  aspect-ratio: auto;
  object-fit: cover;
}

.arico-post-card {
  display: grid;
  grid-template-columns: 40% minmax(0, 1fr);
  height: 250px;
  min-height: 0;
}

.arico-news-grid > li,
.arico-news .wp-block-post {
  min-width: 0;
  margin: 0;
}

.arico-post-card .wp-block-post-featured-image,
.arico-post-card .wp-block-post-featured-image a {
  display: block;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.arico-post-card .wp-block-post-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.arico-post-card-content {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .arico-news-grid,
  .arico-news .wp-block-post-template {
    grid-template-columns: 1fr;
  }

  .arico-post-card {
    height: 240px;
  }
}

@media (max-width: 620px) {
  .arico-post-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .arico-post-card .wp-block-post-featured-image,
  .arico-post-card .wp-block-post-featured-image a {
    height: 210px;
  }
}

/* Standard-Beitragsseiten */
.arico-article-main {
  background: #f4f8fb;
}

.arico-article-hero {
  color: #fff;
  background: linear-gradient(135deg, #031f3d 0%, #063865 100%);
  padding: clamp(54px, 7vw, 100px) 5vw;
}

.arico-article-hero > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.arico-article-hero .wp-block-post-title {
  max-width: 980px;
  margin-top: 12px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.04;
}

.arico-article-category a {
  color: #20c5dd;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
}

.arico-article-hero .wp-block-post-date {
  color: rgba(255,255,255,.78);
}

.arico-article-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px) 0;
}

.arico-article-content > .wp-block-post-featured-image {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(4, 31, 61, .14);
}

.arico-article-content > .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

.arico-article-body {
  padding: clamp(28px, 5vw, 64px);
  background: #fff;
  border: 1px solid #dce6ee;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(4, 31, 61, .08);
  color: #102d4f;
  font-size: 1.08rem;
  line-height: 1.75;
}

.arico-article-body > *:first-child { margin-top: 0; }
.arico-article-body > *:last-child { margin-bottom: 0; }
.arico-article-body h2,
.arico-article-body h3 { color: #05284d; line-height: 1.2; }
.arico-article-body a { color: #009fbd; }

/* Promotionen-Archiv */
.arico-promo-archive,
.arico-promo-archive-cta {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.arico-promo-archive-intro {
  width: 100%;
  margin: 0;
  color: #fff;
  background: linear-gradient(125deg,#031f3d,#063760);
}

.arico-promo-archive-intro-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  min-height: 300px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  box-sizing: border-box;
}

.arico-promo-archive-intro h2 { margin: 8px 0 18px; color: #fff; font-size: clamp(2rem,4vw,3.4rem); }
.arico-promo-archive-intro-inner > div:first-child > p:last-child { max-width: 680px; margin: 0; font-size: 1.08rem; line-height: 1.7; }
.arico-promo-archive-symbol { position: relative; isolation: isolate; display: grid; min-height: 240px; place-items: center; }
.arico-promo-archive-symbol::before { content: ''; position: absolute; z-index: -1; top: 50%; left: 50%; width: min(520px, 110%); aspect-ratio: 1; border-radius: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(0,190,230,.30) 0%, rgba(0,190,230,.16) 34%, transparent 70%); pointer-events: none; }
.arico-promo-archive-symbol span { position: relative; z-index: 1; width: 170px; height: 120px; border: 5px solid #16c9ed; border-radius: 15px; box-shadow: 0 0 35px #00bde7, inset 0 0 25px rgba(0,189,231,.45); }
.arico-promo-archive-symbol span::before { content: ''; position: absolute; top: -27px; left: 24px; width: 70px; height: 24px; border: 5px solid #16c9ed; border-bottom: 0; border-radius: 12px 12px 0 0; }
.arico-promo-archive-symbol span::after { content: '▶'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 3.2rem; filter: drop-shadow(0 0 10px #00bde7); }

.arico-promo-archive { padding: 54px 0 70px; }
.arico-promo-archive-tools { display: flex; gap: 24px; justify-content: space-between; align-items: center; margin-bottom: 42px; }
.arico-promo-archive-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 5px; border: 1px solid #dce7ee; border-radius: 14px; }
.arico-promo-archive-tabs a { padding: 11px 20px; color: #173653; background: #f5f7f9; border-radius: 10px; font-size: .88rem; font-weight: 750; text-decoration: none; transition: .2s ease; }
.arico-promo-archive-tabs a:hover,
.arico-promo-archive-tabs a.is-active { color: #fff; background: #009dbd; }
.arico-promo-archive-search { display: flex; gap: 8px; }
.arico-promo-archive-search input { width: min(290px, 34vw); padding: 14px 18px; border: 1px solid #d6e2ea; border-radius: 10px; font: inherit; }
.arico-promo-archive-search button { padding: 0 20px; color: #092b4f; background: #fff; border: 1px solid #d6e2ea; border-radius: 10px; font-weight: 750; cursor: pointer; }

.arico-promo-archive-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 26px 18px; }
.arico-promo-archive-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid #dce5eb; border-radius: 12px; box-shadow: 0 9px 24px rgba(8,42,73,.09); transition: transform .22s ease, box-shadow .22s ease; }
.arico-promo-archive-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(8,42,73,.17); }
.arico-promo-archive-media { position: relative; display: block; height: 390px; overflow: hidden; background: #052643; }
.arico-promo-archive-media > img,
.arico-promo-archive-media > video { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.arico-promo-archive-media > video { display: none; background: #000; }
.arico-promo-archive-card:hover .arico-promo-archive-media > img { transform: scale(1.035); }
.arico-promo-archive-media .arico-promo-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  width: auto;
  max-width: calc(100% - 28px);
  padding: 7px 12px;
  border-radius: 5px;
  font-size: clamp(10px,.68vw,13px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}
.arico-promo-archive-play { position: absolute; z-index: 2; inset: 0; width: 86px; height: 86px; margin: auto; border: 0; border-radius: 50%; background: linear-gradient(180deg,#ffad2d,#ff7700); box-shadow: 0 0 28px rgba(255,128,0,.46); cursor: pointer; }
.arico-promo-archive-play span { position: absolute; top: 27px; left: 35px; width: 0; height: 0; border-top: 16px solid transparent; border-bottom: 16px solid transparent; border-left: 25px solid #fff; filter: drop-shadow(0 2px 2px rgba(0,0,0,.16)); }
.arico-promo-archive-card.is-playing .arico-promo-archive-poster,
.arico-promo-archive-card.is-playing .arico-promo-archive-play,
.arico-promo-archive-card.is-playing .arico-promo-badge { display: none; }
.arico-promo-archive-card.is-playing .arico-promo-archive-media > video { display: block; }
.arico-promo-archive-card-copy { min-height: 105px; padding: 16px 15px; box-sizing: border-box; }
.arico-promo-archive-card h3 { margin: 0 0 14px; color: #07284c; font-size: 1rem; line-height: 1.35; }
.arico-promo-archive-card h3 a { color: inherit; text-decoration: none; }
.arico-promo-archive-card time { color: #718096; font-size: .84rem; }
.arico-promo-archive-more { display: flex; justify-content: center; margin-top: 50px; }
.arico-promo-archive-more a { min-width: 380px; text-align: center; }
.arico-promo-archive-empty { padding: 70px 24px; text-align: center; background: #f5f8fa; border-radius: 14px; }

.arico-promo-archive-cta { display: flex; justify-content: space-between; align-items: center; gap: 36px; margin-bottom: 46px; padding: 34px 50px; border: 1px solid #dbe6ed; border-radius: 15px; box-shadow: 0 9px 25px rgba(8,42,73,.07); box-sizing: border-box; }
.arico-promo-archive-cta > div { display: flex; align-items: center; gap: 28px; }
.arico-promo-archive-cta > div > span { display: grid; flex: 0 0 90px; height: 90px; place-items: center; color: #00a9ca; border: 4px solid #00a9ca; border-radius: 50%; font-size: 3rem; }
.arico-promo-archive-cta h2 { margin: 3px 0 8px; color: #08294e; }
.arico-promo-archive-cta p { margin: 0; }
.arico-promo-archive-cta > a { flex: 0 0 auto; }

@media (max-width: 1150px) {
  .arico-promo-archive-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .arico-promo-archive-tools { align-items: stretch; flex-direction: column; }
  .arico-promo-archive-search input { width: 100%; }
  .arico-promo-archive-search label { flex: 1; }
}

@media (max-width: 720px) {
  .arico-promo-archive,
  .arico-promo-archive-cta { width: min(100% - 28px,1280px); }
  .arico-promo-archive-intro-inner { grid-template-columns: 1fr; width: min(100% - 28px,1280px); }
  .arico-promo-archive-symbol { display: none; }
  .arico-promo-archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 12px; }
  .arico-promo-archive-media { height: 300px; }
  .arico-promo-archive-tabs a { padding: 9px 12px; }
  .arico-promo-archive-cta { align-items: stretch; flex-direction: column; padding: 28px; }
  .arico-promo-archive-cta > div > span { display: none; }
  .arico-promo-archive-more a { min-width: 0; width: 100%; }
}

@media (max-width: 430px) {
  .arico-promo-archive-grid { grid-template-columns: 1fr; }
  .arico-promo-archive-media { height: 480px; }
}

.arico-post-card > div {
  padding: 20px 22px 18px;
}

.arico-post-card > .arico-post-card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.arico-post-category {
  margin: 0 0 8px;
  color: var(--arico-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arico-post-card .wp-block-post-title a {
  color: var(--arico-navy);
  text-decoration: none;
}

.arico-post-card h3 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1vw, 19px);
}

.arico-post-card p:not(.arico-post-category) {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
}

.arico-post-card .wp-block-post-excerpt {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  margin: 0;
}

.arico-post-card .wp-block-post-excerpt__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  margin: 0 0 14px;
}

.arico-post-card .wp-block-post-excerpt__more-text {
  margin: auto 0 0;
}

.arico-contact {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(680px, 1.28fr);
  gap: clamp(48px, 5.8vw, 94px);
  max-width: min(1860px, calc(100vw - 96px));
  min-height: clamp(410px, 25vw, 520px);
  margin: clamp(10px, 2vw, 28px) auto 0;
  padding: clamp(46px, 3.6vw, 64px) clamp(72px, 6.4vw, 128px);
  border-radius: 10px 10px 0 0;
  background:
    linear-gradient(90deg, rgba(2, 20, 38, 0.03), rgba(2, 20, 38, 0.22)),
    url("/wp-content/themes/arico-energy/assets/images/contact/background.png") left bottom / cover no-repeat,
    linear-gradient(135deg, var(--arico-navy), var(--arico-deep));
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(217, 224, 230, 0.72);
}

.arico-contact h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 3.1vw, 64px);
  line-height: 1.16;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.45);
}

.arico-contact p {
  max-width: 530px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 700;
  line-height: 1.42;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.34);
}

.arico-contact ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.arico-contact li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(17px, 1.1vw, 21px);
  font-weight: 800;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.36);
}

.arico-contact li::before {
  display: block;
  width: 30px;
  height: 30px;
  background: url("/wp-content/themes/arico-energy/assets/icons/contact/arico_checkmark_cyan.svg") center / contain no-repeat;
  content: "";
}

.arico-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  align-content: start;
}

.arico-contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.arico-contact-form label:not(.arico-checkbox) > span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.arico-contact-form input,
.arico-contact-form select,
.arico-contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 4px;
  background: #ffffff;
  color: var(--arico-text);
  box-shadow: inset 0 1px 4px rgba(7, 31, 59, 0.12);
  font: 700 16px/1.25 Arial, Helvetica, sans-serif;
}

.arico-contact-form input::placeholder,
.arico-contact-form textarea::placeholder {
  color: #7b8491;
  opacity: 1;
}

.arico-contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.arico-form-wide {
  grid-column: 1 / -1;
}

.arico-checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 16px !important;
  font-weight: 800;
}

.arico-checkbox input {
  width: 26px;
  min-height: 26px;
  margin: 0 12px 0 0;
  accent-color: var(--arico-cyan);
}

.arico-checkbox span {
  display: inline;
}

.arico-checkbox a {
  display: inline;
  margin: 0;
  color: var(--arico-cyan-bright);
  font: inherit;
  text-decoration: none;
}

.arico-contact-form .arico-button {
  justify-self: end;
  width: min(100%, 420px);
  min-height: 62px;
  margin-top: 0;
  font-size: clamp(17px, 1.1vw, 22px);
}

.arico-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(160px, 1fr)) minmax(300px, 1.5fr);
  gap: clamp(44px, 5vw, 92px);
  padding: clamp(46px, 4vw, 68px) clamp(40px, 5.5vw, 96px) 28px;
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 152, 182, 0.16), transparent 26rem),
    linear-gradient(135deg, #062d53, var(--arico-deep) 64%);
  color: rgba(255, 255, 255, 0.86);
}

.arico-faq-page .arico-footer {
  background: linear-gradient(180deg, #062d53 0%, var(--arico-deep) 72%);
}

.arico-footer-brand img {
  width: clamp(210px, 14vw, 280px);
  margin-bottom: 12px;
}

.arico-footer-brand > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 0.9vw, 18px);
  font-weight: 700;
  line-height: 1.42;
}

.arico-footer-contact {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.arico-footer-contact a,
.arico-footer-contact p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 0.85vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.arico-footer-contact img {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
  object-fit: contain;
  opacity: 0.96;
}

.arico-footer h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(17px, 1vw, 22px);
  line-height: 1.15;
}

.arico-footer a {
  display: table;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 0.88vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.arico-footer a:hover,
.arico-footer a:focus-visible {
  color: #ffffff;
}

.arico-footer .arico-footer-contact a,
.arico-footer .arico-footer-contact p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.arico-footer .arico-footer-contact span {
  min-width: 0;
}

.arico-footer .arico-footer-contact a:hover,
.arico-footer .arico-footer-contact a:focus-visible {
  color: #ffffff;
}

.arico-footer-nav a.is-active {
  position: relative;
  color: #ffffff;
}

.arico-footer-nav a.is-active::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 34px;
  height: 3px;
  background: var(--arico-orange);
  content: "";
}

.arico-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.arico-socials a,
.arico-socials span {
  display: inline-flex;
  width: clamp(50px, 3.5vw, 66px);
  height: clamp(50px, 3.5vw, 66px);
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  transition: transform 160ms ease, filter 160ms ease;
}

.arico-socials a:hover,
.arico-socials a:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.arico-socials img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.arico-ssl-badge {
  display: grid;
  grid-template-columns: clamp(70px, 5vw, 92px) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
  color: #ffffff;
}

.arico-ssl-badge img {
  display: block;
  width: clamp(70px, 5vw, 92px);
  height: clamp(70px, 5vw, 92px);
  margin: 0;
  object-fit: contain;
}

.arico-ssl-badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1vw, 21px);
  font-weight: 800;
  line-height: 1.2;
}

.arico-ssl-badge span {
  display: block;
  color: var(--arico-cyan-bright);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arico-footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 224, 230, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 0.85vw, 17px);
  font-weight: 800;
}

.arico-footer-bottom p {
  margin: 0;
}

.arico-footer-bottom span {
  display: inline-flex;
  width: 22px;
  height: 14px;
  margin: 0 4px;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(180deg, #000 0 33%, #dd0000 33% 66%, #ffce00 66% 100%);
  color: transparent;
  vertical-align: -1px;
}

.arico-faq-page main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 46%, #ffffff 100%);
}

.arico-faq-hero {
  margin-bottom: 0;
}

.arico-faq-finder {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) repeat(3, minmax(230px, 0.62fr));
  gap: 0;
  max-width: min(1840px, calc(100vw - 48px));
  margin: 0 auto 24px;
  padding: clamp(14px, 1.4vw, 24px);
  overflow: visible;
}

.arico-faq-finder::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: 100vw;
  background:
    radial-gradient(circle at 18% 48%, rgba(0, 152, 182, 0.16), transparent 28rem),
    linear-gradient(135deg, #062d53 0%, var(--arico-deep) 100%);
  box-shadow: 0 16px 36px rgba(7, 31, 59, 0.18);
  content: "";
  transform: translateX(-50%);
}

.arico-faq-finder > * {
  position: relative;
  z-index: 1;
}

.arico-faq-search {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(26px, 3vw, 46px) clamp(28px, 3vw, 52px) clamp(26px, 3vw, 46px) clamp(22px, 2.8vw, 44px);
  color: #ffffff;
}

.arico-faq-search h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1.15;
}

.arico-faq-search p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.arico-faq-search label {
  position: relative;
  display: block;
  max-width: 720px;
  margin-top: 8px;
}

.arico-faq-search label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.arico-faq-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 62px 0 26px;
  border: 1px solid rgba(34, 186, 208, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--arico-text);
  box-shadow: inset 0 1px 4px rgba(7, 31, 59, 0.08), 0 10px 26px rgba(0, 0, 0, 0.13);
  font: 700 clamp(15px, 0.9vw, 18px)/1.2 Arial, Helvetica, sans-serif;
}

.arico-faq-search label::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 22px;
  height: 22px;
  border: 3px solid var(--arico-cyan);
  border-radius: 50%;
  content: "";
  transform: translateY(-58%);
}

.arico-faq-search label::before {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 3px;
  background: var(--arico-cyan);
  content: "";
  transform: translateY(10px) rotate(45deg);
}

.arico-faq-finder article {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: clamp(218px, 13vw, 270px);
  padding: clamp(26px, 2.1vw, 38px);
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(217, 224, 230, 0.9);
}

.arico-faq-finder article:nth-of-type(1) {
  border-left: 0;
  border-radius: 10px 0 0 10px;
}

.arico-faq-finder article:last-child {
  border-radius: 0 10px 10px 0;
}

.arico-faq-finder article span,
.arico-faq-benefits span,
.arico-faq-contact-copy > span {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 186, 208, 0.14);
}

.arico-faq-finder article img,
.arico-faq-benefits img,
.arico-faq-contact-copy > span img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.arico-faq-contact-copy > span {
  background: transparent;
}

.arico-faq-contact-copy > span img {
  width: 62px;
  height: 62px;
}

.arico-faq-finder h3 {
  margin: 0;
  color: var(--arico-navy);
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1.22;
}

.arico-faq-finder article p {
  margin: 0;
  color: #43546a;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.45;
}

.arico-faq-finder a,
.arico-faq-column a {
  color: var(--arico-cyan);
  font-weight: 800;
  text-decoration: none;
}

.arico-faq-finder a::after,
.arico-faq-column a::after {
  content: " ->";
}

.arico-faq-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto clamp(28px, 3.2vw, 46px);
  padding: 18px 28px;
  border: 1px solid rgba(217, 224, 230, 0.86);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
}

.arico-faq-benefits article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  align-items: center;
  padding: 0 clamp(14px, 2vw, 32px);
}

.arico-faq-benefits article:not(:last-child) {
  border-right: 1px solid rgba(217, 224, 230, 0.92);
}

.arico-faq-benefits span {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  background: transparent;
}

.arico-faq-benefits img {
  width: 34px;
  height: 34px;
}

.arico-faq-benefits strong {
  color: var(--arico-navy);
  font-size: 17px;
}

.arico-faq-benefits p {
  margin: 0;
  color: #43546a;
  font-size: 14px;
}

.arico-faq-list {
  padding-top: 0;
}

.arico-faq-list > h2 {
  margin: 0 auto 28px;
  color: var(--arico-navy);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.16;
  text-align: center;
}

.arico-faq-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto;
}

.arico-faq-column > h3 {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--arico-navy);
  font-size: 20px;
}

.arico-faq-column > h3 img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.arico-faq-column details {
  overflow: hidden;
  border: 1px solid rgba(217, 224, 230, 0.96);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 31, 59, 0.05);
}

.arico-faq-column details + details {
  border-top: 0;
}

.arico-faq-column details.is-hidden,
.arico-faq-column.is-hidden {
  display: none;
}

.arico-faq-column summary {
  position: relative;
  display: block;
  min-height: 62px;
  padding: 20px 58px 20px 24px;
  color: var(--arico-navy);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.3;
}

.arico-faq-column summary::-webkit-details-marker {
  display: none;
}

.arico-faq-column summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--arico-navy);
  content: "+";
  font-size: 25px;
  line-height: 1;
  transform: translateY(-50%);
}

.arico-faq-column details[open] summary::after {
  content: "-";
}

.arico-faq-column details p,
.arico-faq-help p {
  margin: 0;
  color: #43546a;
  font-size: 15px;
  line-height: 1.55;
}

.arico-faq-column details p {
  padding: 0 24px 18px;
}

.arico-faq-column details p + p {
  padding-top: 0;
}

.arico-faq-search-status {
  min-height: 22px;
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 14px !important;
}

.arico-faq-search-status:empty {
  display: none;
}

.arico-faq-no-results {
  display: none;
  max-width: min(720px, calc(100vw - 40px));
  margin: 24px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
  color: #43546a;
  font-weight: 800;
  text-align: center;
}

.arico-faq-no-results.is-visible {
  display: block;
}

.arico-faq-help {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 34px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #062d53 0%, var(--arico-deep) 100%);
  color: #ffffff;
}

.arico-faq-help::before,
.arico-faq-help::after {
  position: absolute;
  right: clamp(-140px, -9vw, -80px);
  width: clamp(280px, 36vw, 520px);
  aspect-ratio: 3 / 1;
  background: url("/wp-content/themes/arico-energy/assets/images/energy-wave.svg") center / contain no-repeat;
  content: "";
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.arico-faq-help::before {
  top: clamp(-54px, -4vw, -24px);
  transform: rotate(24deg);
  transform-origin: center;
}

.arico-faq-help::after {
  right: clamp(-150px, -10vw, -88px);
  bottom: clamp(18px, 2.5vw, 38px);
  transform: scaleY(-1) rotate(-22deg);
  transform-origin: center;
}

.arico-faq-help > * {
  position: relative;
  z-index: 1;
}

.arico-faq-help > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #08a8c8, #07839f);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.arico-faq-help > span img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.arico-faq-help h3,
.arico-faq-help p {
  color: #ffffff;
}

.arico-faq-help .arico-button {
  justify-self: start;
  min-height: 48px;
  padding-inline: 22px;
}

.arico-faq-process {
  padding: clamp(18px, 2.4vw, 36px) clamp(20px, 5vw, 80px) clamp(28px, 3.6vw, 56px);
}

.arico-faq-process h2 {
  margin: 0 auto 28px;
  color: var(--arico-navy);
  font-size: clamp(28px, 2.5vw, 40px);
  text-align: center;
}

.arico-faq-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.48fr;
  gap: 28px;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto;
}

.arico-faq-process-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px 22px;
  align-items: center;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
}

.arico-faq-process-grid article:not(.arico-faq-process-final)::after {
  position: absolute;
  top: 50%;
  right: -23px;
  color: var(--arico-cyan);
  content: "-->";
  font-weight: 900;
  transform: translateY(-50%);
}

.arico-faq-process-grid span {
  position: absolute;
  top: -12px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--arico-cyan);
  color: #ffffff;
  font-weight: 900;
}

.arico-faq-process-grid img {
  grid-row: 1 / 3;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.arico-faq-process-grid h3 {
  margin: 0;
  color: var(--arico-navy);
  font-size: 18px;
}

.arico-faq-process-grid p {
  margin: 0;
  color: #43546a;
  font-size: 14px;
  line-height: 1.45;
}

.arico-faq-process-final {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: center;
  gap: 14px;
  box-shadow: none !important;
}

.arico-faq-process-final span {
  position: static;
  width: 62px;
  height: 62px;
  border: 2px solid var(--arico-cyan);
  background: #ffffff;
  color: var(--arico-cyan);
  font-size: 28px;
}

.arico-faq-process-final img {
  grid-row: auto;
  width: 74px;
  height: 74px;
}

.arico-faq-consultation {
  position: relative;
  overflow: hidden;
  padding: 0 0 clamp(34px, 4vw, 70px);
  background:
    radial-gradient(circle at 50% 46%, rgba(34, 186, 208, 0.1), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(31, 125, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(4, 51, 108, 0.98) 0%, #062d53 100%);
}

.arico-faq-consultation::before,
.arico-faq-consultation::after {
  display: none;
}

.arico-faq-energy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  pointer-events: none;
}

.arico-faq-consultation-content {
  position: relative;
  z-index: 1;
}

.faq-energy-lines {
  opacity: 0.78;
}

.faq-energy-grid {
  mix-blend-mode: screen;
}

.faq-dot {
  opacity: 0.34;
  transform-box: fill-box;
  transform-origin: center;
  animation: arico-faq-dot-pulse 6.2s ease-in-out infinite;
}

.faq-dot-two {
  animation-delay: 0.75s;
}

.faq-dot-three {
  animation-delay: 1.5s;
}

.faq-dot-four {
  animation-delay: 2.25s;
}

.faq-dot-five {
  animation-delay: 3s;
}

.faq-dot-six {
  animation-delay: 3.75s;
}

.faq-dot-seven {
  animation-delay: 0.35s;
}

.faq-dot-eight {
  animation-delay: 1.05s;
}

.faq-dot-nine {
  animation-delay: 1.75s;
}

.faq-dot-ten {
  animation-delay: 2.45s;
}

.faq-dot-eleven {
  animation-delay: 3.15s;
}

.faq-dot-twelve {
  animation-delay: 3.85s;
}

@keyframes arico-faq-dot-pulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.7);
  }

  45%,
  58% {
    opacity: 0.78;
    transform: scale(1.35);
  }
}

.arico-faq-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto;
  padding: clamp(28px, 3.5vw, 48px) clamp(52px, 6vw, 110px);
  color: #ffffff;
}

.arico-faq-stats article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 4px 18px;
  align-items: center;
}

.arico-faq-stats span {
  display: grid;
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 10px;
  background: rgba(34, 186, 208, 0.2);
}

.arico-faq-stats img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.arico-faq-stats strong {
  color: #ffffff;
  font-size: clamp(24px, 2vw, 34px);
}

.arico-faq-stats p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.arico-faq-contact {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(300px, 0.74fr) minmax(520px, 1.35fr);
  gap: clamp(28px, 3vw, 52px);
  align-items: center;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto;
  padding: clamp(30px, 3vw, 48px);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
  z-index: 1;
}

.arico-faq-contact-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.arico-faq-contact-copy {
  display: grid;
  gap: 16px;
  color: var(--arico-navy);
}

.arico-faq-contact-copy h2 {
  margin: 0;
  color: var(--arico-navy);
  font-size: clamp(28px, 2vw, 40px);
}

.arico-faq-contact-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.arico-faq-contact-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: #43546a;
  font-weight: 800;
}

.arico-faq-contact-copy li::before {
  width: 26px;
  height: 26px;
  background: url("/wp-content/themes/arico-energy/assets/faq/check_mit_hintergrundkreis.svg") center / contain no-repeat;
  content: "";
}

.arico-faq-contact-copy p {
  margin: 0;
  color: var(--arico-navy);
  font-weight: 900;
}

.arico-faq-contact .arico-contact-form input,
.arico-faq-contact .arico-contact-form select,
.arico-faq-contact .arico-contact-form textarea {
  border-color: rgba(217, 224, 230, 0.98);
  background: #ffffff;
}

.arico-faq-contact .arico-checkbox {
  color: #43546a !important;
}

.arico-faq-contact .arico-checkbox a {
  color: var(--arico-cyan);
}

.arico-about-page main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 50%, #ffffff 100%);
}

.arico-about-hero {
  margin-bottom: 0;
}

.arico-about-top-benefits {
  margin-bottom: clamp(20px, 2.4vw, 38px);
}

.arico-about-film,
.arico-about-intro,
.arico-about-workflow,
.arico-about-trust,
.arico-about-cta,
.arico-about-benefits {
  max-width: min(1720px, calc(100vw - 112px));
  margin-right: auto;
  margin-left: auto;
}

.arico-about-film {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(560px, 1fr);
  min-height: clamp(360px, 24vw, 470px);
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 59, 0.16);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 31, 59, 0.16);
}

.arico-about-film-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 22px;
  margin-right: clamp(-260px, -13vw, -150px);
  padding: clamp(42px, 5vw, 74px) clamp(120px, 10vw, 210px) clamp(42px, 5vw, 74px) clamp(38px, 4.8vw, 70px);
  background: linear-gradient(135deg, #062d53 0%, var(--arico-deep) 100%);
  color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
}

.arico-about-film-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.12;
}

.arico-about-film-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 0.9vw, 17px);
  font-weight: 700;
  line-height: 1.55;
}

.arico-about-play {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.arico-about-play span {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #08a8c8, #076f9f);
}

.arico-about-play span::after {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff;
  content: "";
}

.arico-about-film-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.1) 34%, rgba(255, 255, 255, 0)),
    #f5f9fc;
}

.arico-about-film-video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.arico-about-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(560px, 1fr);
  gap: clamp(36px, 5vw, 88px);
  padding-top: clamp(34px, 4vw, 64px);
  padding-bottom: clamp(28px, 3.4vw, 54px);
}

.arico-about-story h2,
.arico-about-workflow h2,
.arico-about-cta h2 {
  margin: 0 0 18px;
  color: var(--arico-navy);
  font-size: clamp(26px, 2vw, 40px);
  line-height: 1.15;
}

.arico-about-story p {
  margin: 0 0 22px;
  color: #35465c;
  font-weight: 700;
  line-height: 1.65;
}

.arico-about-story ul,
.arico-about-cta ul {
  display: grid;
  gap: 14px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.arico-about-story li,
.arico-about-cta li {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding-left: 0;
  color: var(--arico-navy);
  font-weight: 800;
}

.arico-about-story li::before,
.arico-about-cta li::before {
  display: none;
}

.arico-about-story li::after,
.arico-about-cta li::after {
  display: none;
}

.arico-about-story li > img,
.arico-about-cta li > img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.arico-about-story a {
  color: var(--arico-cyan);
  font-weight: 900;
  text-decoration: none;
}

.arico-about-story a::after {
  content: " ->";
}

.arico-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.arico-about-values article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(217, 224, 230, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 31, 59, 0.08);
}

.arico-about-values span,
.arico-about-benefits span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
}

.arico-about-values img,
.arico-about-benefits img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.arico-about-values h3 {
  margin: 0 0 8px;
  color: var(--arico-navy);
  font-size: 18px;
}

.arico-about-values p,
.arico-about-benefits p {
  margin: 0;
  color: #43546a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.arico-about-workflow {
  padding: clamp(18px, 2.4vw, 34px) 0 clamp(24px, 3vw, 44px);
  text-align: center;
}

.arico-about-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
  text-align: left;
}

.arico-about-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
}

.arico-about-steps article:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: -16px;
  width: 38px;
  border-top: 2px dotted rgba(34, 186, 208, 0.7);
  content: "";
}

.arico-about-steps span {
  display: grid;
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--arico-cyan);
  color: #ffffff;
  font-weight: 900;
}

.arico-about-steps h3 {
  margin: 0;
  color: var(--arico-navy);
  font-size: 15px;
}

.arico-about-steps p {
  margin: 0;
  color: #43546a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.arico-about-trust {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 0;
  align-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 50%, rgba(34, 186, 208, 0.22), transparent 22rem),
    radial-gradient(circle at 100% 50%, rgba(34, 186, 208, 0.2), transparent 22rem),
    linear-gradient(135deg, #062d53 0%, var(--arico-deep) 100%);
  color: #ffffff;
}

.arico-about-trust::before,
.arico-about-trust::after {
  position: absolute;
  top: 10px;
  width: 270px;
  aspect-ratio: 3 / 1;
  background: url("/wp-content/themes/arico-energy/assets/images/energy-wave.svg") center / contain no-repeat;
  content: "";
  opacity: 0.46;
  pointer-events: none;
}

.arico-about-trust::before {
  left: -88px;
  transform: rotate(16deg);
}

.arico-about-trust::after {
  right: -88px;
  transform: scaleX(-1) rotate(16deg);
}

.arico-about-trust h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 34px 48px;
  color: #ffffff;
  font-size: clamp(24px, 1.8vw, 34px);
}

.arico-about-trust article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2px 18px;
  align-items: center;
  min-height: 116px;
  padding: 26px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.arico-about-trust span {
  display: grid;
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #08a8c8, #07839f);
}

.arico-about-trust img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.arico-about-trust strong {
  color: #ffffff;
  font-size: clamp(24px, 1.8vw, 34px);
}

.arico-about-trust p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  line-height: 1.25;
}

.arico-about-cta {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.86fr);
  overflow: hidden;
  border: 1px solid rgba(217, 224, 230, 0.92);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(7, 31, 59, 0.08);
}

.arico-about-cta > div {
  padding: clamp(38px, 4vw, 62px);
}

.arico-about-cta > div:first-child {
  position: relative;
  overflow: hidden;
  padding-right: clamp(150px, 12vw, 230px);
  background: linear-gradient(135deg, #062d53 0%, var(--arico-deep) 100%);
  color: #ffffff;
  clip-path: polygon(0 0, 90% 0, 78% 100%, 0% 100%);
}

.arico-about-cta > div:first-child::after {
  position: absolute;
  right: -110px;
  bottom: -12px;
  width: 440px;
  aspect-ratio: 3 / 1;
  background: url("/wp-content/themes/arico-energy/assets/images/energy-wave.svg") center / contain no-repeat;
  content: "";
  opacity: 0.55;
  transform: rotate(-16deg);
}

.arico-about-cta > div:first-child h2,
.arico-about-cta > div:first-child p,
.arico-about-cta > div:first-child li {
  position: relative;
  z-index: 1;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.arico-about-cta p {
  margin: 0 0 20px;
  color: #35465c;
  font-weight: 700;
  line-height: 1.55;
}

.arico-about-cta .arico-button {
  display: flex;
  width: fit-content;
  min-height: 50px;
  margin-top: 8px;
  padding-inline: 28px;
}

.arico-about-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.arico-about-contact-line a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--arico-navy);
  font-weight: 900;
  text-decoration: none;
}

.arico-about-cta small {
  display: flex;
  width: fit-content;
  gap: 9px;
  align-items: center;
  margin-top: 10px;
  color: #43546a;
  font-weight: 800;
}

.arico-about-contact-line img,
.arico-about-cta small img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.arico-about-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px 0 22px;
}

.arico-about-benefits article {
  display: grid;
  grid-template-columns: clamp(82px, 5.4vw, 108px) minmax(0, 1fr);
  gap: 0 clamp(18px, 1.7vw, 30px);
  align-items: center;
  min-height: 104px;
  padding: 0 clamp(28px, 3vw, 58px);
}

.arico-about-benefits article:not(:last-child) {
  border-right: 1px solid rgba(7, 31, 59, 0.18);
}

.arico-about-benefits span {
  grid-row: 1 / 3;
  width: clamp(72px, 4.7vw, 92px);
  height: clamp(72px, 4.7vw, 92px);
  margin-bottom: 0;
}

.arico-about-benefits img {
  width: clamp(58px, 3.6vw, 74px);
  height: clamp(58px, 3.6vw, 74px);
}

.arico-about-benefits strong {
  color: var(--arico-navy);
  font-size: clamp(17px, 1.05vw, 22px);
  line-height: 1.15;
}

.arico-about-benefits p {
  max-width: 24ch;
  font-size: clamp(13px, 0.9vw, 17px);
  line-height: 1.35;
}

.arico-promotions-page main {
  background: #ffffff;
}

.arico-promotions-hero {
  margin-bottom: 0;
}

.arico-promos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(34, 186, 208, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 24%, rgba(31, 125, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #062d53 0%, #021426 100%);
  color: #ffffff;
}

.arico-promos::before,
.arico-promos::after {
  display: none;
}

.arico-promos-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  pointer-events: none;
}

.arico-promos-inner {
  position: relative;
  z-index: 1;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto;
  padding: clamp(28px, 3vw, 46px) 0 28px;
}

.promo-energy-lines {
  opacity: 0.82;
}

.promo-energy-grid {
  mix-blend-mode: screen;
}

.promo-dot {
  opacity: 0.34;
  transform-box: fill-box;
  transform-origin: center;
  animation: arico-promo-dot-pulse 5.8s ease-in-out infinite;
}

.promo-dot-two {
  animation-delay: 0.7s;
}

.promo-dot-three {
  animation-delay: 1.4s;
}

.promo-dot-four {
  animation-delay: 2.1s;
}

.promo-dot-five {
  animation-delay: 2.8s;
}

.promo-dot-six {
  animation-delay: 3.5s;
}

.promo-dot-seven {
  animation-delay: 0.35s;
}

.promo-dot-eight {
  animation-delay: 1.05s;
}

.promo-dot-nine {
  animation-delay: 1.75s;
}

.promo-dot-ten {
  animation-delay: 2.45s;
}

.promo-dot-eleven {
  animation-delay: 3.15s;
}

.promo-dot-twelve {
  animation-delay: 3.85s;
}

@keyframes arico-promo-dot-pulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.7);
  }

  45%,
  58% {
    opacity: 0.82;
    transform: scale(1.35);
  }
}

.arico-promos-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}

.arico-promos-header h2 {
  max-width: 780px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(32px, 2.4vw, 50px);
  line-height: 1.08;
}

.arico-promos-header p:not(.arico-section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.55;
}

.arico-promos-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.arico-promos-nav button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font: 900 26px/1 Arial, Helvetica, sans-serif;
}

.arico-promo-counter {
  min-width: 82px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.arico-promo-carousel {
  position: relative;
  min-height: clamp(430px, 32vw, 600px);
  margin: clamp(6px, 1.2vw, 18px) 0 clamp(20px, 2.1vw, 38px);
  perspective: 1300px;
}

.arico-promo-carousel::after {
  position: absolute;
  left: 50%;
  bottom: clamp(38px, 4.4vw, 78px);
  z-index: 1;
  width: clamp(260px, 30vw, 520px);
  height: clamp(18px, 2.4vw, 42px);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(91, 244, 255, 0.6) 0%, rgba(22, 166, 255, 0.24) 42%, transparent 72%);
  content: "";
  filter: blur(11px);
  opacity: 0.82;
  pointer-events: none;
  transform: translateX(-50%);
}

.arico-promo-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(170px, 15.4vw, 312px);
  aspect-ratio: 9 / 16;
  overflow: visible;
  padding: 6px;
  border: 1px solid rgba(89, 221, 240, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 11%, transparent 88%, rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, #174c75 0%, #082948 38%, #010d19 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 0 0 2px rgba(3, 15, 29, 0.92),
    10px 20px 30px rgba(0, 0, 0, 0.44),
    22px 34px 54px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  opacity: var(--card-opacity, 1);
  transform:
    translate(-50%, -50%)
    translateX(var(--card-x, 0))
    translateZ(var(--card-z-depth, 0))
    rotateY(var(--card-rotate, 0deg))
    scale(var(--card-scale, 1));
  transition: transform 260ms ease, opacity 260ms ease, border-color 260ms ease, filter 260ms ease;
  z-index: var(--card-z, 10);
}

.arico-promo-card::before,
.arico-promo-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.arico-promo-card::before {
  inset: 6px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.34),
    0 18px 34px rgba(0, 0, 0, 0.32) inset,
    0 -18px 34px rgba(255, 255, 255, 0.08) inset;
}

.arico-promo-card::after {
  top: 14px;
  right: -12px;
  bottom: 14px;
  z-index: -1;
  width: 18px;
  border-radius: 0 13px 13px 0;
  background:
    linear-gradient(90deg, rgba(13, 46, 77, 0.92), rgba(0, 10, 21, 0.96)),
    linear-gradient(180deg, rgba(91, 221, 240, 0.28), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.12));
  box-shadow:
    7px 10px 20px rgba(0, 0, 0, 0.42),
    1px 0 0 rgba(255, 255, 255, 0.16) inset;
  transform: skewY(1.5deg);
}

.arico-promo-card img,
.arico-promo-card video {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.arico-promo-card video {
  display: none;
  background: #000000;
}

.arico-promo-card.is-playing .arico-promo-poster,
.arico-promo-card.is-playing > .arico-promo-badge,
.arico-promo-card.is-playing > button {
  display: none;
}

.arico-promo-card.is-playing video {
  display: block;
}

.arico-promo-badge {
  --promo-badge-bg: #087cff;
  --promo-badge-shadow: rgba(8, 124, 255, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--promo-badge-bg);
  color: #ffffff;
  box-shadow: 0 8px 18px var(--promo-badge-shadow);
  line-height: 1;
  text-transform: uppercase;
}

.arico-promo-badge.is-badge-promotion {
  --promo-badge-bg: #087cff;
  --promo-badge-shadow: rgba(8, 124, 255, 0.36);
}

.arico-promo-badge.is-badge-special {
  --promo-badge-bg: var(--arico-orange);
  --promo-badge-shadow: rgba(255, 143, 15, 0.34);
}

.arico-promo-badge.is-badge-limited {
  --promo-badge-bg: #e23535;
  --promo-badge-shadow: rgba(226, 53, 53, 0.34);
}

.arico-promo-card > span,
.arico-promo-card > .arico-promo-badge,
.arico-promo-card > span.arico-promo-badge {
  position: absolute;
  top: clamp(18px, 1.3vw, 24px);
  left: clamp(18px, 1.45vw, 28px);
  z-index: 4;
  width: auto;
  height: auto;
  min-width: 0;
  max-width: calc(100% - 44px);
  padding: 7px 12px;
  border: 0;
  border-radius: 5px;
  background: var(--promo-badge-bg);
  color: #ffffff;
  font-size: clamp(10px, 0.68vw, 13px);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24) inset,
    0 8px 18px var(--promo-badge-shadow);
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  transform: none;
}

.arico-promo-card > span:not(.arico-promo-badge) {
  --promo-badge-bg: #087cff;
  --promo-badge-shadow: rgba(8, 124, 255, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-transform: uppercase;
}

.arico-promo-card[data-badge="PROMOTION"] > span,
.arico-promo-card[data-badge="NEU"] > span {
  --promo-badge-bg: #087cff;
  --promo-badge-shadow: rgba(8, 124, 255, 0.36);
}

.arico-promo-card[data-badge="SONDERAKTION"] > span,
.arico-promo-card[data-badge="SONDERAKTION!"] > span {
  --promo-badge-bg: var(--arico-orange);
  --promo-badge-shadow: rgba(255, 143, 15, 0.34);
}

.arico-promo-card[data-badge="STRENG LIMITIERT"] > span,
.arico-promo-card[data-badge="STRENG LIMITIERT!"] > span {
  --promo-badge-bg: #e23535;
  --promo-badge-shadow: rgba(226, 53, 53, 0.34);
}

.arico-promo-card.is-active > .arico-promo-badge,
.arico-promo-card.is-active > span.arico-promo-badge,
.arico-promo-card.is-active > span {
  top: clamp(20px, 1.45vw, 28px);
  left: clamp(24px, 1.8vw, 34px);
  font-size: clamp(11px, 0.72vw, 14px);
}

.arico-promo-card button {
  position: absolute;
  z-index: 3;
  inset: 0;
  margin: auto;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffad2d, #ff7700);
  box-shadow: 0 0 28px rgba(255, 128, 0, 0.46);
  cursor: pointer;
}

.arico-promo-card:not(.is-active) button {
  background: linear-gradient(180deg, rgba(210, 221, 232, 0.82), rgba(100, 119, 140, 0.8));
  box-shadow: 0 0 22px rgba(126, 172, 198, 0.22);
  opacity: 0.68;
}

.arico-promo-card button::after {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #ffffff;
  content: "";
  transform: translate(-50%, -50%);
}

.arico-promo-card:not(.is-active) button::after {
  border-left-color: rgba(255, 255, 255, 0.78);
}

.arico-promo-card.is-active {
  padding: 7px;
  border-color: rgba(72, 228, 246, 0.42);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(176, 255, 255, 0.72) 0%, rgba(80, 229, 246, 0.56) 8%, rgba(34, 186, 208, 0.24) 23%, transparent 54%),
    linear-gradient(180deg, rgba(34, 186, 208, 0.78) 0%, rgba(34, 186, 208, 0.46) 13%, rgba(255, 183, 70, 0.64) 56%, rgba(255, 143, 15, 0.82) 100%),
    linear-gradient(180deg, #174c75 0%, #082948 38%, #010d19 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 0 0 1px rgba(255, 160, 17, 0.58),
    0 0 0 3px rgba(34, 186, 208, 0.22),
    0 -4px 18px rgba(75, 231, 247, 0.34),
    0 8px 22px rgba(255, 137, 0, 0.34),
    0 0 34px rgba(34, 186, 208, 0.38),
    12px 24px 38px rgba(0, 0, 0, 0.48),
    28px 40px 66px rgba(0, 0, 0, 0.36);
}

.arico-promo-card.is-active button {
  background: linear-gradient(180deg, #ffad2d, #ff7700);
  box-shadow: 0 0 28px rgba(255, 128, 0, 0.46);
  opacity: 1;
}

.arico-promo-card.is-active::before {
  inset: 7px;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.42),
    0 18px 34px rgba(0, 0, 0, 0.3) inset,
    0 -16px 30px rgba(255, 153, 16, 0.1) inset,
    0 -1px 12px rgba(85, 232, 247, 0.12);
}

.arico-promo-card.is-active::after {
  right: -10px;
  width: 14px;
  background:
    linear-gradient(90deg, rgba(20, 68, 104, 0.5), rgba(3, 25, 45, 0.84) 62%, rgba(0, 8, 18, 0.62)),
    linear-gradient(180deg, rgba(91, 221, 240, 0.14), transparent 24%, transparent 78%, rgba(255, 185, 80, 0.1));
  box-shadow:
    5px 10px 18px rgba(0, 0, 0, 0.3),
    1px 0 0 rgba(255, 255, 255, 0.08) inset;
  opacity: 0.82;
}

.arico-promo-card.is-placeholder {
  cursor: default;
  filter: saturate(0.75) brightness(0.72);
}

.arico-promo-card.is-placeholder > img {
  opacity: 0.9;
}

.arico-promo-more-grid button:disabled {
  cursor: default;
  filter: saturate(0.75) brightness(0.82);
}

.arico-promo-detail {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr) minmax(260px, 0.72fr) minmax(220px, 0.5fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(22, 57, 86, 0.94), rgba(7, 32, 58, 0.9)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.arico-promo-detail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: rgba(2, 20, 38, 0.38);
  object-fit: contain;
}

.arico-promo-detail-badge {
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 5px;
  background: var(--promo-badge-bg, #087cff);
  color: #ffffff;
  box-shadow: 0 8px 18px var(--promo-badge-shadow, rgba(8, 124, 255, 0.36));
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.arico-promo-detail h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(26px, 2vw, 38px);
}

.arico-promo-detail-copy,
.arico-promo-detail-copy p,
.arico-promo-detail-copy li,
.arico-promo-detail dt,
.arico-promo-detail dd {
  color: rgba(255, 255, 255, 0.92);
}

.arico-promo-detail-copy {
  max-width: 62ch;
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.arico-promo-detail-copy > *:first-child {
  margin-top: 0;
}

.arico-promo-detail-copy > *:last-child {
  margin-bottom: 0;
}

.arico-promo-detail-copy p,
.arico-promo-detail-copy ul,
.arico-promo-detail-copy ol {
  margin: 12px 0 0;
  line-height: 1.5;
}

.arico-promo-detail-copy h1,
.arico-promo-detail-copy h2,
.arico-promo-detail-copy h3,
.arico-promo-detail-copy h4 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: clamp(20px, 1.35vw, 28px);
  line-height: 1.12;
}

.arico-promo-detail dl {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.arico-promo-detail dt {
  font-size: 13px;
  font-weight: 800;
  opacity: 0.76;
}

.arico-promo-detail dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.arico-promo-detail-actions {
  display: grid;
  gap: 14px;
}

.arico-promo-more {
  margin-top: 22px;
  padding: 18px 24px 24px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--arico-navy);
}

.arico-promo-more > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.arico-promo-more h3 {
  margin: 0;
  font-size: 24px;
}

.arico-promo-more a {
  color: var(--arico-cyan);
  font-weight: 900;
  text-decoration: none;
}

.arico-promo-more-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.arico-promo-more-grid > a,
.arico-promo-more-grid > button {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(2.1em, auto);
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--arico-navy);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.arico-promo-more-grid > a:hover,
.arico-promo-more-grid > a:focus-visible {
  outline: none;
  border-color: rgba(34, 186, 208, 0.92);
  box-shadow: 0 14px 28px rgba(2, 20, 38, 0.24), 0 0 0 3px rgba(34, 186, 208, 0.28);
  transform: translateY(-4px) scale(1.015);
}

.arico-promo-more-grid > a img {
  transition: filter 180ms ease, opacity 180ms ease, transform 220ms ease;
}

.arico-promo-more-grid > a:hover img,
.arico-promo-more-grid > a:focus-visible img {
  filter: brightness(1.1) saturate(1.08);
  opacity: 0.94;
  transform: scale(1.035);
}

.arico-promo-more-grid img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #062d53, #021426);
  object-fit: contain;
  opacity: 0.82;
}

.arico-promo-more-grid span {
  position: static;
  display: block;
  padding: 12px 4px 0;
  color: var(--arico-navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.arico-promo-process,
.arico-promo-stats,
.arico-promo-contact {
  max-width: min(1720px, calc(100vw - 112px));
  margin-right: auto;
  margin-left: auto;
}

.arico-promo-process {
  padding: 18px 0 26px;
  text-align: center;
}

.arico-promo-process h2 {
  display: none;
}

.arico-promo-process > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: left;
}

.arico-promo-process article {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 7px 16px;
  align-items: start;
  padding: 4px clamp(18px, 1.8vw, 34px);
}

.arico-promo-process article:not(:last-child)::after {
  position: absolute;
  top: 12px;
  right: 0;
  width: 2px;
  height: 92px;
  border-radius: 99px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(34, 214, 232, 0.72) 0 4px,
    transparent 4px 9px
  );
  content: "";
}

.arico-promo-process span {
  position: absolute;
  top: 0;
  left: clamp(14px, 1.6vw, 28px);
  display: grid;
  z-index: 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--arico-cyan);
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(0, 74, 102, 0.18);
  font-weight: 900;
}

.arico-promo-process img {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.arico-promo-process h3 {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--arico-navy);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.2;
}

.arico-promo-process p {
  grid-column: 2;
  margin: 0;
  color: #43546a;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 700;
  line-height: 1.5;
}

.arico-promo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #062d53, #021426);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(2, 20, 38, 0.16);
}

.arico-promo-stats article {
  display: grid;
  grid-template-columns: clamp(86px, 5vw, 102px) minmax(0, 1fr);
  gap: 3px clamp(16px, 1.6vw, 26px);
  align-items: center;
  min-height: 96px;
  padding: 14px clamp(30px, 2.8vw, 58px);
}

.arico-promo-stats article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.arico-promo-stats span {
  display: grid;
  grid-row: 1 / 3;
  width: clamp(76px, 4.6vw, 92px);
  height: clamp(76px, 4.6vw, 92px);
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #08a8c8, #07839f);
  box-shadow: inset 0 -6px 12px rgba(2, 20, 38, 0.2), 0 14px 28px rgba(0, 0, 0, 0.16);
}

.arico-promo-stats img {
  width: clamp(48px, 2.9vw, 58px);
  height: clamp(48px, 2.9vw, 58px);
  object-fit: contain;
}

.arico-promo-stats strong {
  color: #ffffff;
  font-size: clamp(24px, 1.9vw, 38px);
  line-height: 1.05;
  white-space: nowrap;
}

.arico-promo-stats p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 800;
  line-height: 1.25;
}

.arico-promo-contact {
  margin-bottom: 0;
}

.arico-promotion-single-page main {
  overflow: hidden;
  background: #f4f8fb;
}

.arico-single-promo {
  position: relative;
  overflow: hidden;
  padding: 0 var(--arico-page-gutter) clamp(56px, 6vw, 88px);
  background: linear-gradient(180deg, #062f5c 0%, #021426 100%);
  color: #ffffff;
}

.arico-single-promo .arico-promos-bg {
  opacity: 0.9;
}

.arico-single-promo-inner {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-top: clamp(38px, 4.5vw, 68px);
}

.arico-single-back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin: 0 0 clamp(32px, 3vw, 46px);
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--arico-navy);
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.arico-single-back:hover,
.arico-single-back:focus-visible {
  background: #ffffff;
  color: var(--arico-navy);
  box-shadow: 0 12px 24px rgba(2, 20, 38, 0.2);
  transform: translateY(-1px);
}

.arico-single-back::before {
  content: "\2190";
  line-height: 1;
}

.arico-single-promo-badge {
  display: flex;
  width: fit-content;
  margin: 0 0 clamp(20px, 2vw, 30px);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

.arico-single-promo h2 {
  max-width: 1060px;
  margin: 0 0 clamp(12px, 1.4vw, 18px);
  color: #ffffff;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.05;
}

.arico-single-promo-subtitle {
  max-width: 980px;
  margin: 0 0 clamp(32px, 3vw, 48px);
  max-height: 4.65em;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 700;
  line-height: 1.55;
}

.arico-single-promo-subtitle > * {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.arico-single-promo-subtitle > * + * {
  margin-top: 0.35em;
}

.arico-single-promo-video {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(37, 203, 255, 0.72);
  border-radius: 10px;
  background: #031426;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 32px rgba(26, 172, 255, 0.5),
    0 28px 58px rgba(0, 0, 0, 0.34);
}

.arico-single-promo-video video,
.arico-single-promo-video img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #020b15;
}

.arico-single-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: clamp(82px, 8vw, 126px);
  height: clamp(82px, 8vw, 126px);
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffad2f, #ff8400);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(255, 132, 0, 0.38), 0 0 0 8px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, box-shadow 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.arico-single-video-play span {
  width: 0;
  height: 0;
  margin-left: 8%;
  border-top: clamp(15px, 1.6vw, 24px) solid transparent;
  border-bottom: clamp(15px, 1.6vw, 24px) solid transparent;
  border-left: clamp(24px, 2.5vw, 38px) solid #ffffff;
}

.arico-single-video-play:hover,
.arico-single-video-play:focus-visible {
  outline: none;
  box-shadow: 0 18px 42px rgba(255, 132, 0, 0.52), 0 0 0 9px rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%) scale(1.06);
}

.arico-single-video-play.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.88);
}

.arico-single-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 28px;
  margin-top: 28px;
}

.arico-single-promo-text,
.arico-single-promo-facts {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--arico-navy);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.arico-single-promo-text {
  padding: clamp(22px, 2.6vw, 34px);
}

.arico-single-promo-text h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 1.5vw, 28px);
}

.arico-single-promo-text p,
.arico-single-promo-text li {
  color: #243449;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.arico-single-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.arico-single-hashtags a {
  border: 1px solid rgba(0, 159, 188, 0.26);
  border-radius: 999px;
  background: rgba(220, 247, 251, 0.9);
  color: var(--arico-cyan);
  padding: 8px 12px;
  font-weight: 900;
  text-decoration: none;
}

.arico-single-promo-facts {
  display: grid;
  gap: clamp(22px, 2.2vw, 34px);
  align-content: center;
  padding: clamp(28px, 3vw, 46px);
}

.arico-single-promo-facts div {
  display: grid;
  grid-template-columns: clamp(58px, 4.5vw, 76px) minmax(0, 1fr);
  gap: 8px clamp(18px, 2vw, 28px);
  align-items: center;
  padding: 4px 0;
}

.arico-single-promo-facts img {
  grid-row: span 2;
  width: clamp(58px, 4.5vw, 76px);
  height: clamp(58px, 4.5vw, 76px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.arico-single-promo-facts span {
  align-self: end;
  color: var(--arico-navy);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 900;
}

.arico-single-promo-facts strong {
  align-self: start;
  color: #243449;
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 600;
  line-height: 1.45;
}

.arico-single-share {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  color: #ffffff;
  font-weight: 900;
}

.arico-single-share a,
.arico-single-share button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: filter 160ms ease, transform 160ms ease;
}

.arico-single-share a:hover,
.arico-single-share a:focus-visible,
.arico-single-share button:hover,
.arico-single-share button:focus-visible {
  outline: none;
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.arico-single-share img {
  width: 34px;
  height: 34px;
}

.arico-single-share .arico-copy-share-link.is-copied {
  color: var(--arico-cyan);
}

.arico-copy-share-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.arico-single-contact-band {
  padding: clamp(34px, 4vw, 64px) 0 0;
  background: #ffffff;
}

.arico-single-contact.arico-contact {
  margin-top: 0;
}

/* Single promotion detail page */
.arico-single-promo-video {
  width: min(100%, 1100px);
  aspect-ratio: 16 / 9;
  margin-inline: auto;
}

.arico-single-promo-video video,
.arico-single-promo-video img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (min-width: 1500px) {
  .arico-about-film {
    margin-top: 0;
  }
}

.arico-privacy-page main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 46%, #ffffff 100%);
}

.arico-agb-page main,
.arico-widerruf-page main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 46%, #ffffff 100%);
}

.arico-imprint-page main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 45%, #ffffff 100%);
}

.arico-imprint {
  padding-top: clamp(36px, 4.4vw, 66px);
  padding-bottom: clamp(56px, 6vw, 94px);
  text-align: center;
}

.arico-imprint > h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(28px, 2.2vw, 42px);
}

.arico-imprint-card {
  display: grid;
  gap: clamp(26px, 2.7vw, 44px);
  max-width: min(1400px, calc(100vw - 112px));
  margin: clamp(28px, 3vw, 46px) auto 0;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(217, 224, 230, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 46px rgba(2, 20, 38, 0.09);
  text-align: left;
}

.arico-imprint-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 76px);
}

.arico-imprint-stack {
  display: grid;
  gap: clamp(24px, 2.5vw, 44px);
}

.arico-imprint-item {
  display: grid;
  grid-template-columns: clamp(62px, 5vw, 86px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: flex-start;
}

.arico-imprint-icon {
  display: grid;
  width: clamp(58px, 4.5vw, 76px);
  height: clamp(58px, 4.5vw, 76px);
  place-items: center;
  border-radius: 50%;
  background: #eef5f8;
}

.arico-imprint-icon img {
  width: clamp(32px, 2.8vw, 46px);
  height: clamp(32px, 2.8vw, 46px);
  object-fit: contain;
}

.arico-imprint-item h3 {
  margin: 0 0 14px;
  color: var(--arico-navy);
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.25;
}

.arico-imprint-item p {
  margin: 0;
  color: #26384f;
  font-size: clamp(15px, 0.96vw, 18px);
  font-weight: 600;
  line-height: 1.62;
}

.arico-imprint-item p + p {
  margin-top: 10px;
}

.arico-imprint-item strong {
  color: var(--arico-navy);
  font-weight: 900;
}

.arico-imprint-item a {
  color: var(--arico-cyan);
  font-weight: 900;
  text-decoration: none;
}

.arico-imprint-divider {
  height: 1px;
  background: rgba(180, 192, 204, 0.7);
}

.arico-privacy-hero {
  margin-bottom: 0;
}

.arico-agb-hero {
  margin-bottom: 0;
}

.arico-agb-overview {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  isolation: isolate;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto 24px;
  color: #ffffff;
}

.arico-agb-overview::before {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: linear-gradient(90deg, rgba(2, 20, 38, 0.98), rgba(7, 31, 59, 0.94));
  content: "";
  transform: translateX(-50%);
}

.arico-agb-overview article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 142px;
  padding: clamp(26px, 2.4vw, 40px);
}

.arico-agb-overview article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.arico-agb-overview span,
.arico-agb-benefits span {
  display: grid;
  place-items: center;
}

.arico-agb-overview span {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  background: rgba(34, 186, 208, 0.2);
}

.arico-agb-overview img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.arico-agb-overview h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(18px, 1.2vw, 22px);
}

.arico-agb-overview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.48;
}

.arico-agb-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto 28px;
  padding: 18px 28px;
  border: 1px solid rgba(217, 224, 230, 0.86);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
}

.arico-agb-benefits article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  align-items: center;
  padding: 0 clamp(14px, 2vw, 32px);
}

.arico-agb-benefits article:not(:last-child) {
  border-right: 1px solid rgba(217, 224, 230, 0.92);
}

.arico-agb-benefits span {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
}

.arico-agb-benefits img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.arico-agb-benefits strong {
  color: var(--arico-navy);
  font-size: 17px;
}

.arico-agb-benefits p {
  margin: 0;
  color: #43546a;
  font-size: 14px;
}

.arico-agb-content {
  display: grid;
  grid-template-columns: minmax(260px, 330px) 1fr;
  gap: clamp(28px, 3vw, 48px);
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto;
  padding-top: 0;
  padding-inline: 0;
}

.arico-agb-sidebar {
  align-self: start;
  position: sticky;
  top: 132px;
  display: grid;
  gap: 0;
}

.arico-agb-sidebar h2,
.arico-agb-sidebar a,
.arico-agb-update {
  background: #ffffff;
  border: 1px solid rgba(217, 224, 230, 0.92);
}

.arico-agb-sidebar h2 {
  margin: 0;
  padding: 20px 24px;
  border-radius: 8px 8px 0 0;
  color: var(--arico-navy);
  font-size: 15px;
  text-transform: uppercase;
}

.arico-agb-sidebar a {
  display: block;
  padding: 13px 24px;
  border-top: 0;
  color: var(--arico-navy);
  font-weight: 800;
  text-decoration: none;
}

.arico-agb-sidebar a.is-active,
.arico-agb-sidebar a:hover,
.arico-agb-sidebar a:focus-visible {
  background: var(--arico-navy);
  color: #ffffff;
}

.arico-agb-update {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px 12px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 8px;
  color: var(--arico-navy);
}

.arico-agb-update img {
  grid-row: 1 / 3;
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.arico-agb-update span {
  color: #43546a;
}

.arico-agb-main {
  display: grid;
  gap: 28px;
}

.arico-agb-main > h2 {
  margin: 0;
  color: var(--arico-navy);
  font-size: clamp(28px, 2vw, 38px);
}

.arico-agb-highlight,
.arico-agb-card {
  padding: clamp(24px, 2vw, 34px);
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
}

.arico-agb-highlight {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0 18px;
  align-items: start;
  background: linear-gradient(135deg, rgba(34, 186, 208, 0.12), rgba(255, 255, 255, 0.96));
}

.arico-agb-highlight > img {
  grid-row: 1 / 4;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.arico-agb-card {
  min-height: 230px;
}

.arico-agb-card > img {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  object-fit: contain;
}

.arico-agb-highlight h3,
.arico-agb-card h3 {
  margin: 0 0 14px;
  color: var(--arico-navy);
  font-size: clamp(20px, 1.35vw, 27px);
}

.arico-agb-highlight p,
.arico-agb-card p {
  margin: 0;
  color: #43546a;
  line-height: 1.62;
}

.arico-agb-highlight p + p,
.arico-agb-card p + p {
  margin-top: 12px;
}

.arico-agb-card a {
  color: var(--arico-cyan);
  font-weight: 800;
  text-decoration: none;
}

.arico-agb-contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(210px, 0.42fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(22px, 2.6vw, 48px);
  max-width: min(1720px, calc(100vw - 112px));
  margin: clamp(26px, 3.5vw, 52px) auto 0;
  padding: clamp(34px, 3.2vw, 58px) clamp(42px, 4vw, 74px) 0;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, #021426 0%, #062d53 58%, #031a31 100%);
  color: #ffffff;
}

.arico-agb-contact::before {
  display: none;
}

.arico-agb-contact-copy,
.arico-agb-contact-people,
.arico-agb-contact .arico-contact-form {
  position: relative;
  z-index: 1;
}

.arico-agb-energy-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.76;
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .arico-agb-energy-bg .promo-dot {
    animation: none;
  }
}

.arico-agb-contact-copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(32px, 2.55vw, 52px);
  line-height: 1.08;
}

.arico-agb-contact-copy p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.5;
}

.arico-agb-contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.arico-agb-contact-copy li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.arico-agb-contact-copy li::before {
  width: 28px;
  height: 28px;
  background: url("/wp-content/themes/arico-energy/assets/icons/contact/arico_checkmark_cyan.svg") center / contain no-repeat;
  content: "";
}

.arico-agb-contact-people {
  align-self: end;
  display: flex;
  justify-content: center;
  min-width: 0;
  margin-bottom: -1px;
}

.arico-agb-contact-people img {
  display: block;
  width: min(100%, 360px);
  max-height: clamp(250px, 21vw, 360px);
  object-fit: contain;
  object-position: bottom center;
}

.arico-agb-contact .arico-contact-form {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-bottom: clamp(30px, 3vw, 54px);
}

.arico-agb-contact .arico-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.arico-agb-contact .arico-contact-form label:not(.arico-checkbox) span {
  display: none;
}

.arico-agb-contact .arico-contact-form input,
.arico-agb-contact .arico-contact-form select,
.arico-agb-contact .arico-contact-form textarea {
  min-height: 54px;
  border-color: rgba(224, 232, 240, 0.92);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 18px rgba(2, 20, 38, 0.18), inset 0 1px 2px rgba(2, 20, 38, 0.08);
}

.arico-agb-contact .arico-contact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.arico-agb-contact .arico-checkbox {
  display: grid !important;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.92) !important;
}

.arico-agb-contact .arico-checkbox input {
  min-height: 0;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  box-shadow: none;
}

.arico-agb-contact .arico-checkbox a {
  color: var(--arico-cyan);
}

.arico-agb-contact .arico-button {
  justify-self: end;
  width: min(100%, 360px);
  min-height: 58px;
  font-size: clamp(18px, 1.25vw, 24px);
}

.arico-widerruf-page .arico-hero-text {
  max-width: 620px;
}

.arico-widerruf-overview article {
  grid-template-columns: 86px 1fr;
}

.arico-widerruf-overview h2 {
  font-size: clamp(18px, 1.15vw, 24px);
}

.arico-widerruf-overview p {
  max-width: 300px;
}

.arico-widerruf-help {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(11, 39, 68, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(10, 39, 67, 0.08);
}

.arico-widerruf-help img {
  grid-column: 1;
  grid-row: 1;
  width: 40px;
  height: 40px;
}

.arico-widerruf-help h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--arico-navy);
  font-size: 20px;
}

.arico-widerruf-help p {
  grid-column: 2;
  margin: 0;
  color: var(--arico-slate);
  font-size: 15px;
  line-height: 1.5;
}

.arico-widerruf-help .arico-button {
  grid-column: 2;
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  font-size: 15px;
}

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

.arico-widerruf-form-card {
  display: grid;
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(22px, 2.5vw, 36px);
  padding: clamp(24px, 2.7vw, 42px);
  border: 1px solid rgba(9, 38, 67, 0.1);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(8, 35, 63, 0.08);
}

.arico-widerruf-form-card h2 {
  margin: 0 0 10px;
  color: var(--arico-navy);
  font-size: clamp(26px, 2.1vw, 38px);
}

.arico-widerruf-form-card p {
  max-width: 1020px;
  margin: 0;
  color: var(--arico-slate);
  font-weight: 650;
  line-height: 1.58;
}

.arico-widerruf-form {
  display: grid;
  gap: 18px;
}

.arico-widerruf-form label {
  display: grid;
  gap: 8px;
  color: var(--arico-navy);
  font-weight: 800;
}

.arico-widerruf-form input,
.arico-widerruf-form select,
.arico-widerruf-form textarea {
  width: 100%;
  border: 1px solid #cfdbe6;
  border-radius: 5px;
  background: #ffffff;
  color: var(--arico-navy);
  font: inherit;
  font-weight: 650;
}

.arico-widerruf-form input,
.arico-widerruf-form select {
  min-height: 50px;
  padding: 0 16px;
}

.arico-widerruf-form textarea {
  min-height: 104px;
  padding: 14px 16px;
  resize: vertical;
}

.arico-widerruf-form-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 6px;
  background: #eef8ff;
}

.arico-widerruf-form-note img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.arico-widerruf-form-note p {
  color: var(--arico-slate);
  font-size: 15px;
}

.arico-widerruf-form .arico-button {
  justify-self: end;
  min-width: min(320px, 100%);
}

.arico-widerruf-contact {
  margin-top: clamp(36px, 4vw, 66px);
}

.arico-privacy-overview {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  isolation: isolate;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto 24px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.arico-privacy-overview::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background: linear-gradient(90deg, rgba(2, 20, 38, 0.98), rgba(7, 31, 59, 0.94));
  content: "";
  transform: translateX(-50%);
}

.arico-privacy-overview article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 150px;
  padding: clamp(28px, 3vw, 44px);
  color: #ffffff;
}

.arico-privacy-overview article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.arico-privacy-overview span,
.arico-privacy-benefits span,
.arico-privacy-data-grid span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 10px;
  background: rgba(34, 186, 208, 0.2);
}

.arico-privacy-overview img,
.arico-privacy-benefits img,
.arico-privacy-data-grid img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.arico-privacy-overview h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(18px, 1.25vw, 23px);
}

.arico-privacy-overview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.5;
}

.arico-privacy-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto 28px;
  padding: 18px 28px;
  border: 1px solid rgba(217, 224, 230, 0.86);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
}

.arico-privacy-benefits article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  align-items: center;
  padding: 0 clamp(14px, 2vw, 32px);
}

.arico-privacy-benefits article:not(:last-child) {
  border-right: 1px solid rgba(217, 224, 230, 0.92);
}

.arico-privacy-benefits span {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  background: transparent;
}

.arico-privacy-benefits img {
  width: 34px;
  height: 34px;
}

.arico-privacy-benefits strong {
  color: var(--arico-navy);
  font-size: 17px;
}

.arico-privacy-benefits p {
  margin: 0;
  color: #43546a;
  font-size: 14px;
}

.arico-privacy-content {
  display: grid;
  grid-template-columns: minmax(260px, 330px) 1fr;
  gap: clamp(28px, 3vw, 48px);
  max-width: min(1720px, calc(100vw - 112px));
  margin: 0 auto;
  padding-top: 0;
  padding-inline: 0;
}

.arico-privacy-sidebar {
  align-self: start;
  position: sticky;
  top: 132px;
  display: grid;
  gap: 0;
}

.arico-privacy-sidebar h2,
.arico-privacy-sidebar a,
.arico-privacy-update {
  background: #ffffff;
  border: 1px solid rgba(217, 224, 230, 0.92);
}

.arico-privacy-sidebar h2 {
  margin: 0;
  padding: 20px 24px;
  border-radius: 8px 8px 0 0;
  color: var(--arico-navy);
  font-size: 15px;
  text-transform: uppercase;
}

.arico-privacy-sidebar a {
  display: block;
  padding: 15px 24px;
  border-top: 0;
  color: var(--arico-navy);
  font-weight: 800;
  text-decoration: none;
}

.arico-privacy-sidebar a.is-active {
  background: var(--arico-navy);
  color: #ffffff;
}

.arico-privacy-update {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px 12px;
  align-items: center;
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 8px;
  color: var(--arico-navy);
}

.arico-privacy-update img {
  grid-row: 1 / 3;
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.arico-privacy-update span {
  color: #43546a;
}

.arico-privacy-main {
  display: grid;
  gap: 28px;
}

.arico-privacy-main > h2 {
  margin: 0;
  color: var(--arico-navy);
  font-size: clamp(28px, 2vw, 38px);
}

.arico-privacy-section,
.arico-privacy-card {
  padding: clamp(24px, 2vw, 34px);
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--arico-shadow);
}

.arico-privacy-highlight {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0 18px;
  align-items: start;
  background: linear-gradient(135deg, rgba(34, 186, 208, 0.12), rgba(255, 255, 255, 0.96));
}

.arico-privacy-highlight-icon {
  grid-row: 1 / 4;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.arico-privacy-section h3,
.arico-privacy-card h3 {
  margin: 0 0 14px;
  color: var(--arico-navy);
  font-size: clamp(20px, 1.4vw, 28px);
}

.arico-privacy-section h4,
.arico-privacy-card h4 {
  margin: 0 0 8px;
  color: var(--arico-navy);
}

.arico-privacy-section p,
.arico-privacy-card p {
  margin: 0;
  color: #43546a;
  line-height: 1.62;
}

.arico-privacy-section p + p,
.arico-privacy-card p + p {
  margin-top: 12px;
}

.arico-privacy-two,
.arico-privacy-grid,
.arico-privacy-data-grid,
.arico-privacy-mini-grid,
.arico-privacy-rights-grid,
.arico-privacy-flow {
  display: grid;
  gap: 22px;
}

.arico-privacy-two {
  grid-template-columns: 0.7fr 1.3fr;
}

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

.arico-privacy-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.arico-privacy-data-grid {
  grid-template-columns: repeat(4, 1fr);
}

.arico-privacy-data-grid article {
  padding: 20px;
  border: 1px solid rgba(217, 224, 230, 0.88);
  border-radius: 8px;
  background: #ffffff;
}

.arico-privacy-data-grid span {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  background: rgba(34, 186, 208, 0.12);
}

.arico-privacy-data-grid img {
  width: 30px;
  height: 30px;
}

.arico-privacy-contact-card img {
  display: block;
  width: 190px;
  margin-bottom: 16px;
}

.arico-privacy-card a {
  color: var(--arico-cyan);
  font-weight: 800;
  text-decoration: none;
}

.arico-privacy-mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

.arico-privacy-mini-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: start;
  padding: 20px;
  border-radius: 8px;
  background: #f5f9fc;
}

.arico-privacy-mini-grid article img {
  grid-row: 1 / 3;
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.arico-privacy-card-icon {
  position: relative;
}

.arico-privacy-card-icon > img {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.94;
}

.arico-privacy-card-icon p {
  padding-right: 58px;
}

.arico-privacy-rights-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 224, 230, 0.88);
  border-radius: 8px;
}

.arico-privacy-rights-grid article {
  display: grid;
  gap: 6px;
  min-height: 124px;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(217, 224, 230, 0.88);
  border-bottom: 1px solid rgba(217, 224, 230, 0.88);
  color: var(--arico-navy);
  text-align: center;
}

.arico-privacy-rights-grid img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.arico-privacy-rights-grid article:nth-child(4n) {
  border-right: 0;
}

.arico-privacy-rights-grid article:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.arico-privacy-rights-grid span {
  color: #43546a;
  font-size: 13px;
}

.arico-privacy-flow {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.arico-privacy-flow article {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.arico-privacy-flow article:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: -18px;
  color: var(--arico-cyan);
  content: "--";
  font-weight: 900;
}

.arico-privacy-flow span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--arico-cyan);
  color: #ffffff;
  font-weight: 900;
}

.arico-privacy-contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(36px, 4vw, 72px);
  max-width: min(1720px, calc(100vw - 112px));
  margin: clamp(26px, 3.5vw, 52px) auto 0;
  padding: clamp(42px, 4vw, 70px);
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, #021426 0%, #062d53 58%, #031a31 100%);
  color: #ffffff;
}

.arico-privacy-energy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  pointer-events: none;
}

.arico-privacy-contact-copy,
.arico-privacy-contact .arico-contact-form {
  position: relative;
  z-index: 1;
}

.arico-privacy-contact-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 2.7vw, 54px);
}

.arico-privacy-contact-copy p {
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.5;
}

.arico-privacy-contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.arico-privacy-contact-copy li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
}

.arico-privacy-contact-copy li::before {
  width: 26px;
  height: 26px;
  background: url("/wp-content/themes/arico-energy/assets/icons/contact/arico_checkmark_cyan.svg") center / contain no-repeat;
  content: "";
}

.arico-privacy-contact .arico-checkbox {
  color: rgba(255, 255, 255, 0.92) !important;
}

.arico-privacy-contact .arico-checkbox a {
  color: var(--arico-cyan);
}

@media (max-width: 1180px) {
  .arico-header {
    grid-template-columns: 1fr auto;
  }

  .arico-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .arico-hero,
  .arico-contact {
    grid-template-columns: 1fr;
  }

  .arico-contact {
    background:
      linear-gradient(180deg, rgba(2, 20, 38, 0.12), rgba(2, 20, 38, 0.58)),
      url("/wp-content/themes/arico-energy/assets/images/contact/background.png") left bottom / auto 100% repeat-x,
      linear-gradient(135deg, var(--arico-navy), var(--arico-deep));
  }

  .arico-hero {
    --arico-hero-height: auto;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .arico-hero-copy {
    padding-bottom: 36px;
  }

  .arico-hero-media {
    position: relative;
    margin-right: 0;
    min-height: 420px;
  }

  .arico-hero-video-crop {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: none;
  }

  .arico-hero-video-crop video,
  .arico-hero-video-crop img {
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: right top;
  }

  .arico-hero-media::before,
  .arico-hero::after {
    display: none;
  }

  .arico-benefits,
  .arico-card-grid-four,
  .arico-industry-grid,
  .arico-tutorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arico-benefits article:nth-child(2) {
    border-right: 0;
  }

  .arico-process-grid,
  .arico-news .wp-block-post-template,
  .arico-footer {
    grid-template-columns: 1fr;
  }

  .arico-faq-finder,
  .arico-faq-columns,
  .arico-faq-process-grid,
  .arico-faq-contact,
  .arico-about-film,
  .arico-about-intro,
  .arico-about-cta {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 40px);
  }

  .arico-about-film-copy,
  .arico-about-cta > div:first-child {
    margin-right: 0;
    padding-right: clamp(38px, 4vw, 62px);
    clip-path: none;
  }

  .arico-about-hero,
  .arico-about-film {
    margin-top: 0;
    margin-bottom: 0;
  }

  .arico-about-film-stage {
    min-height: 360px;
  }

  .arico-about-values,
  .arico-about-steps,
  .arico-about-trust,
  .arico-about-benefits,
  .arico-promo-detail,
  .arico-promo-process > div,
  .arico-promo-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(100vw - 40px);
  }

  .arico-promo-process article:not(:last-child)::after {
    display: none;
  }

  .arico-promos-inner,
  .arico-promo-process,
  .arico-promo-stats,
  .arico-promo-contact {
    max-width: calc(100vw - 40px);
  }

  .arico-promo-carousel {
    min-height: 570px;
  }

  .arico-promo-card {
    width: clamp(160px, 25vw, 250px);
  }

  .arico-promo-more-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .arico-promo-stats article:nth-child(2) {
    border-right: 0;
  }

  .arico-about-steps article:not(:last-child)::after {
    display: none;
  }

  .arico-about-trust h2 {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .arico-about-benefits article:nth-child(2) {
    border-right: 0;
  }

  .arico-faq-benefits,
  .arico-faq-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .arico-faq-finder article {
    border-top: 1px solid rgba(217, 224, 230, 0.9);
    border-left: 0;
  }

  .arico-faq-finder article:nth-of-type(1) {
    border-radius: 10px 10px 0 0;
  }

  .arico-faq-finder article:last-child {
    border-radius: 0 0 10px 10px;
  }

  .arico-faq-benefits {
    max-width: calc(100vw - 40px);
  }

  .arico-faq-benefits article:nth-child(2) {
    border-right: 0;
  }

  .arico-faq-process-grid article:not(.arico-faq-process-final)::after {
    display: none;
  }

  .arico-faq-contact {
    grid-template-columns: 280px 1fr;
  }

  .arico-faq-contact .arico-contact-form {
    grid-column: 1 / -1;
  }

  .arico-faq-consultation::before,
  .arico-faq-consultation::after {
    width: clamp(260px, 36vw, 340px);
    opacity: 0.68;
  }

  .arico-faq-help::before,
  .arico-faq-help::after {
    width: clamp(240px, 52vw, 360px);
    opacity: 0.62;
  }

  .arico-privacy-overview,
  .arico-agb-overview,
  .arico-imprint-card,
  .arico-agb-content,
  .arico-agb-contact,
  .arico-widerruf-card-grid,
  .arico-privacy-content,
  .arico-privacy-contact {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 40px);
  }

  .arico-imprint-grid {
    grid-template-columns: 1fr;
  }

  .arico-privacy-benefits,
  .arico-agb-benefits,
  .arico-privacy-data-grid,
  .arico-privacy-rights-grid,
  .arico-privacy-flow,
  .arico-privacy-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }

  .arico-privacy-two,
  .arico-agb-grid,
  .arico-widerruf-form .arico-form-grid,
  .arico-privacy-grid {
    grid-template-columns: 1fr;
  }

  .arico-agb-sidebar,
  .arico-privacy-sidebar {
    position: static;
  }

  .arico-agb-overview article:not(:last-child),
  .arico-agb-benefits article:not(:last-child),
  .arico-privacy-overview article:not(:last-child),
  .arico-privacy-benefits article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 224, 230, 0.22);
  }

  .arico-agb-benefits,
  .arico-privacy-benefits {
    max-width: calc(100vw - 40px);
  }

  .arico-privacy-flow article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .arico-header {
    position: static;
    min-height: auto;
    gap: 16px;
    padding: 14px 18px;
  }

  .arico-brand,
  .arico-brand img {
    width: 168px;
  }

  .arico-header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .arico-nav {
    gap: 18px;
    font-size: 14px;
  }

  .arico-hero-copy {
    padding: 42px 20px;
  }

  .arico-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .arico-hero-actions,
  .arico-trust-row,
  .arico-benefits,
  .arico-card-grid-four,
  .arico-industry-grid,
  .arico-tutorial-grid,
  .arico-contact-form {
    grid-template-columns: 1fr;
  }

  .arico-agb-contact .arico-form-grid {
    grid-template-columns: 1fr;
  }

  .arico-agb-contact-people img {
    max-height: 260px;
  }

  .arico-tutorials {
    padding-right: 16px;
    padding-left: 16px;
  }

  .arico-tutorial-note {
    min-height: auto;
    padding: 12px 18px;
    border-radius: 8px;
    text-align: left;
  }

  .arico-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .arico-hero-media {
    min-height: 320px;
  }

  .arico-benefits article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
  }

  .arico-card {
    min-height: auto;
  }

  .arico-process-grid article {
    grid-template-columns: 96px 1fr;
    gap: 18px;
  }

  .arico-process-grid span {
    width: 90px;
    height: 90px;
  }

  .arico-contact {
    margin-top: 16px;
    padding: 32px 20px;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(2, 20, 38, 0.2), rgba(2, 20, 38, 0.7)),
      url("/wp-content/themes/arico-energy/assets/images/contact/background.png") 18% bottom / auto 100% no-repeat,
      linear-gradient(135deg, var(--arico-navy), var(--arico-deep));
  }

  .arico-faq-hero {
    margin-bottom: 0;
  }

  .arico-faq-finder,
  .arico-faq-benefits,
  .arico-faq-columns,
  .arico-faq-process-grid,
  .arico-faq-contact,
  .arico-faq-stats,
  .arico-about-film,
  .arico-about-intro,
  .arico-about-values,
  .arico-about-steps,
  .arico-about-trust,
  .arico-about-cta,
  .arico-about-benefits,
  .arico-promos-inner,
  .arico-promo-detail,
  .arico-promo-process,
  .arico-promo-process > div,
  .arico-promo-stats,
  .arico-promo-contact {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 32px);
  }

  .arico-widerruf-overview article {
    grid-template-columns: 64px 1fr;
  }

  .arico-widerruf-card-grid,
  .arico-widerruf-form .arico-form-grid {
    grid-template-columns: 1fr;
  }

  .arico-widerruf-form-card,
  .arico-widerruf-help {
    padding: 20px;
  }

  .arico-widerruf-form .arico-button {
    justify-self: stretch;
  }

  .arico-promos-header {
    display: grid;
  }

  .arico-promos-nav {
    margin-top: 0;
  }

  .arico-promo-carousel {
    min-height: 560px;
    overflow: hidden;
  }

  .arico-promo-card {
    width: min(74vw, 270px);
  }

  .arico-promo-detail {
    gap: 18px;
    padding: 18px;
  }

  .arico-promo-detail dl {
    padding-left: 0;
    border-left: 0;
  }

  .arico-promo-more {
    padding: 18px;
  }

  .arico-promo-more-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .arico-promo-more-grid > a,
  .arico-promo-more-grid > button {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  .arico-promo-stats article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .arico-promo-process article {
    padding: 4px 8px 18px;
  }

  .arico-promo-process span {
    left: 0;
  }

  .arico-faq-search,
  .arico-faq-finder article,
  .arico-faq-contact {
    padding: 24px;
  }

  .arico-faq-search input {
    min-height: 60px;
    padding-left: 22px;
  }

  .arico-faq-benefits {
    padding: 8px 18px;
  }

  .arico-faq-benefits article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(217, 224, 230, 0.9);
    padding: 14px 0;
  }

  .arico-faq-benefits article:last-child {
    border-bottom: 0;
  }

  .arico-faq-column summary {
    padding-inline: 18px 48px;
  }

  .arico-faq-column summary::after {
    right: 18px;
  }

  .arico-faq-process-grid article {
    grid-template-columns: 82px 1fr;
    padding: 22px;
  }

  .arico-faq-process-grid img {
    width: 76px;
    height: 76px;
  }

  .arico-faq-stats {
    padding: 28px 24px;
  }

  .arico-faq-consultation {
    padding-bottom: 34px;
  }

  .arico-faq-consultation::before,
  .arico-faq-consultation::after {
    width: clamp(180px, 46vw, 240px);
    opacity: 0.48;
  }

  .arico-about-film-copy,
  .arico-about-cta > div {
    padding: 28px 24px;
  }

  .arico-about-film-stage {
    min-height: 300px;
  }

  .arico-about-film-video {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .arico-about-values article {
    min-height: auto;
    padding: 24px;
  }

  .arico-about-trust article,
  .arico-about-benefits article {
    border-right: 0 !important;
    border-left: 0;
    border-bottom: 1px solid rgba(217, 224, 230, 0.22);
    padding: 22px 24px;
  }

  .arico-about-trust article {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .arico-about-cta > div:first-child::after {
    width: 300px;
    opacity: 0.38;
  }

  .arico-faq-help::before,
  .arico-faq-help::after {
    width: 230px;
    opacity: 0.42;
  }

  .arico-faq-help::before {
    top: -24px;
    right: -88px;
  }

  .arico-faq-help::after {
    right: -96px;
    bottom: 28px;
  }

  .arico-privacy-hero {
    margin-bottom: 0;
  }

  .arico-privacy-overview,
  .arico-agb-overview,
  .arico-imprint-card,
  .arico-privacy-benefits,
  .arico-agb-benefits,
  .arico-privacy-content,
  .arico-agb-content,
  .arico-privacy-contact,
  .arico-agb-contact,
  .arico-privacy-data-grid,
  .arico-privacy-mini-grid,
  .arico-agb-grid,
  .arico-privacy-grid,
  .arico-privacy-grid-three,
  .arico-privacy-rights-grid,
  .arico-privacy-flow {
    grid-template-columns: 1fr;
    max-width: calc(100vw - 32px);
  }

  .arico-imprint {
    padding-top: 32px;
  }

  .arico-imprint-card {
    gap: 22px;
    padding: 24px;
  }

  .arico-imprint-item {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .arico-privacy-overview article,
  .arico-agb-overview article,
  .arico-privacy-section,
  .arico-privacy-card,
  .arico-agb-highlight,
  .arico-agb-card,
  .arico-agb-contact,
  .arico-privacy-contact {
    padding: 24px;
  }

  .arico-agb-benefits,
  .arico-privacy-benefits {
    padding: 8px 18px;
  }

  .arico-agb-benefits article,
  .arico-privacy-benefits article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(217, 224, 230, 0.9);
    padding: 14px 0;
  }

  .arico-agb-benefits article:last-child,
  .arico-privacy-benefits article:last-child {
    border-bottom: 0;
  }

  .arico-privacy-rights-grid article {
    border-right: 0;
  }

  .arico-privacy-rights-grid article:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(217, 224, 230, 0.88);
  }

  .arico-privacy-rights-grid article:last-child {
    border-bottom: 0;
  }

  .arico-single-promo {
    padding-inline: 22px;
  }

  .arico-single-promo-grid {
    grid-template-columns: 1fr;
  }

  .arico-single-promo h2 {
    font-size: clamp(30px, 12vw, 42px);
  }

  .arico-single-promo-facts div {
    grid-template-columns: 44px 1fr;
  }

  .arico-single-promo-facts img {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .arico-single-share {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .arico-faq-consultation::before,
  .arico-faq-consultation::after {
    display: none;
  }
}
