/*
Theme Name: Appliance RS
Theme URI: https://appliancesc.com/
Author: Codex
Description: Custom landing page theme for Appliance RS.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: appliance-rs
*/

:root {
  --ars-blue: #667eff;
  --ars-blue-dark: #3247d3;
  --ars-cyan: #a734ff;
  --ars-cyan-dark: #8920e6;
  --ars-orange: #ff9a1f;
  --ars-orange-dark: #f07b00;
  --ars-bg: #eff3ff;
  --ars-surface: rgba(255, 255, 255, 0.9);
  --ars-text: #17235d;
  --ars-text-soft: #53619b;
  --ars-border: rgba(174, 190, 255, 0.5);
  --ars-shadow: 0 22px 52px rgba(58, 72, 172, 0.16);
  --ars-radius: 8px;
  --ars-container: 1180px;
  --ars-admin-offset: 0px;
  --ars-header-height: 76px;
  --ars-fixed-top-total: var(--ars-header-height);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ars-text);
  background:
    radial-gradient(circle at top center, rgba(167, 52, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #6f87ff 0%, #88a0ff 22%, #dbe5ff 58%, var(--ars-bg) 100%);
  line-height: 1.6;
}

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

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

.ars-site {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  padding-top: var(--ars-fixed-top-total);
}

.ars-bg-icons {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ars-bg-icon {
  position: absolute;
  width: 88px;
  height: 88px;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 10px 24px rgba(50, 71, 211, 0.18));
  animation: ars-float 24s ease-in-out infinite;
  will-change: transform;
}

.ars-bg-icon--fridge {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='3' width='12' height='18' rx='2'/%3E%3Cline x1='9' y1='8' x2='15' y2='8'/%3E%3Cline x1='9' y1='13' x2='15' y2='13'/%3E%3C/svg%3E");
}

.ars-bg-icon--washer {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a734ff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
}

.ars-bg-icon--oven {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M7 7h10'/%3E%3Crect x='8' y='10' width='8' height='7' rx='1'/%3E%3C/svg%3E");
}

.ars-bg-icon--dishwasher {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a734ff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='3' width='14' height='18' rx='2'/%3E%3Cpath d='M8 7h8'/%3E%3Cpath d='M8 11h8'/%3E%3C/svg%3E");
}

.ars-bg-icon--microwave {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Crect x='6' y='8' width='8' height='8' rx='1'/%3E%3C/svg%3E");
}

.ars-bg-icon:nth-child(1) {
  top: 10%;
  left: 6%;
  transform: scale(1.05);
  animation-duration: 31s;
}

.ars-bg-icon:nth-child(2) {
  top: 18%;
  right: 8%;
  animation-duration: 27s;
  animation-delay: -8s;
}

.ars-bg-icon:nth-child(3) {
  top: 42%;
  left: 9%;
  animation-duration: 35s;
  animation-delay: -14s;
}

.ars-bg-icon:nth-child(4) {
  top: 56%;
  right: 10%;
  transform: scale(1.15);
  animation-duration: 29s;
  animation-delay: -5s;
}

.ars-bg-icon:nth-child(5) {
  top: 74%;
  left: 14%;
  transform: scale(0.9);
  animation-duration: 33s;
  animation-delay: -18s;
}

.ars-bg-icon:nth-child(6) {
  top: 84%;
  right: 18%;
  transform: scale(1.1);
  animation-duration: 38s;
  animation-delay: -11s;
}

.ars-bg-icon:nth-child(7) {
  top: 30%;
  left: 48%;
  transform: scale(0.82);
  animation-duration: 26s;
  animation-delay: -21s;
}

.ars-bg-icon:nth-child(8) {
  top: 63%;
  left: 58%;
  transform: scale(0.95);
  animation-duration: 41s;
  animation-delay: -16s;
}

.ars-site > section,
.ars-site > footer {
  position: relative;
  z-index: 1;
}

.ars-container {
  width: min(calc(100% - 2rem), var(--ars-container));
  margin: 0 auto;
}

.ars-section {
  padding: 4.5rem 0;
}

@keyframes ars-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(8px, -10px, 0) rotate(3deg);
  }
  50% {
    transform: translate3d(-10px, 8px, 0) rotate(-3deg);
  }
  75% {
    transform: translate3d(6px, 12px, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.ars-section-title {
  margin: 0 0 0.75rem;
  color: var(--ars-blue);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

#services .ars-section-title {
  color: #ffffff;
}

#services .ars-eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

#services .ars-eyebrow::before {
  background: linear-gradient(90deg, #d7cbff, #ffffff);
}

#services .ars-section-intro {
  color: rgba(255, 255, 255, 0.86);
}

.ars-section-intro {
  max-width: 46rem;
  margin: 0 0 2rem;
  color: var(--ars-text-soft);
  font-size: 1.05rem;
}

.ars-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: var(--ars-radius);
  border: 1px solid rgba(255, 171, 61, 0.28);
  background: linear-gradient(135deg, var(--ars-orange) 0%, var(--ars-orange-dark) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(255, 143, 31, 0.26);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ars-button:hover,
.ars-button:focus-visible {
  background: linear-gradient(135deg, #ffab2a 0%, #e56d00 100%);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 143, 31, 0.32);
}

.ars-button--secondary {
  border: 1px solid rgba(102, 126, 255, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ars-blue-dark);
  box-shadow: none;
}

.ars-button--secondary:hover,
.ars-button--secondary:focus-visible {
  background: rgba(255, 255, 255, 1);
}

.ars-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--ars-blue);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ars-eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ars-cyan), var(--ars-blue));
}

.ars-header {
  position: fixed;
  top: var(--ars-admin-offset);
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transform: translateZ(0);
  backdrop-filter: blur(12px);
  background: rgba(27, 35, 100, 0.84);
  border-bottom: 1px solid rgba(195, 207, 255, 0.22);
  box-shadow: 0 18px 42px rgba(30, 34, 94, 0.24);
}

.ars-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
}

.ars-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.ars-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.ars-brand__logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 54, 132, 0.12);
}

.ars-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.ars-brand__name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.ars-brand__tagline {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.ars-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ars-phone-link {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.ars-hero {
  min-height: calc(100vh - var(--ars-fixed-top-total));
  padding-top: 0;
  background: transparent;
}

.ars-hero__grid {
  display: block;
  min-height: calc(100vh - var(--ars-fixed-top-total));
}

.ars-check {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.14);
  color: var(--ars-cyan-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.ars-hero__content {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.ars-hero__content-inner {
  width: 100%;
  max-width: 36rem;
}

.ars-hero__eyebrow {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ars-hero__title {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.ars-hero__copy {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.75;
  letter-spacing: -0.01em;
}

.ars-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ars-button--hero-primary {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--ars-orange) 0%, var(--ars-orange-dark) 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ars-button--hero-primary:hover,
.ars-button--hero-primary:focus-visible {
  background: linear-gradient(135deg, #ffab2a 0%, #e56d00 100%);
}

.ars-button--hero-secondary {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ars-button--hero-secondary:hover,
.ars-button--hero-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
}

.ars-hero__media {
  position: relative;
  order: 2;
  min-height: 50vh;
  background: rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.ars-hero__media--panel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 154, 31, 0.28), transparent 28%),
    radial-gradient(circle at bottom left, rgba(167, 52, 255, 0.22), transparent 34%),
    rgba(22, 28, 88, 0.28);
}

.ars-hero__panel {
  display: grid;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(17, 24, 76, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(19, 26, 92, 0.24);
  backdrop-filter: blur(18px);
}

.ars-hero__panel-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 170, 50, 0.18);
  color: #fff2da;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ars-hero__panel-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.15;
}

.ars-hero__panel-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-hero__panel-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.ars-hero__panel-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--ars-orange);
}

.ars-hero__areas {
  display: grid;
  gap: 0.65rem;
}

.ars-hero__areas strong {
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ars-hero__area-chips,
.ars-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ars-hero__area-chips span,
.ars-area-chip {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.2;
}

.ars-hero__image {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  object-fit: cover;
  opacity: 0.9;
}

.ars-hero__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(36, 52, 140, 0.24), rgba(255, 255, 255, 0) 48%),
    linear-gradient(135deg, rgba(123, 59, 255, 0.14), rgba(64, 93, 255, 0.08));
  pointer-events: none;
}

.ars-mini-card {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--ars-border);
}

.ars-mini-card--stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.ars-mini-card strong {
  display: block;
  color: var(--ars-blue);
  font-size: 1.15rem;
}

.ars-grid {
  display: grid;
  gap: 1rem;
}

.ars-services {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.35rem;
}

.ars-card {
  background: var(--ars-surface);
  border: 1px solid var(--ars-border);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: var(--ars-shadow);
  backdrop-filter: blur(12px);
}

.ars-card__media {
  margin: -1.35rem -1.35rem 1rem;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: rgba(102, 126, 255, 0.16);
  position: relative;
}

.ars-card__media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.ars-card--service {
  padding: 0;
  height: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 44px rgba(58, 72, 172, 0.18);
}

.ars-card--service summary {
  list-style: none;
  cursor: pointer;
}

.ars-card--service summary::-webkit-details-marker {
  display: none;
}

.ars-card--service[open] {
  box-shadow: 0 22px 54px rgba(58, 72, 172, 0.22);
}

.ars-card--service .ars-card__media {
  margin: 0;
  border-radius: 18px;
  height: 100%;
  min-height: 0;
}

.ars-card--service .ars-card__media img {
  display: block;
  height: 100%;
  min-height: 0;
  object-position: center;
}

.ars-card__icon--service {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--ars-cyan) 0%, var(--ars-blue) 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(64, 77, 220, 0.26);
  margin-bottom: 0;
}

.ars-card__body--service {
  display: none;
}

.ars-card__summary {
  position: relative;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
}

.ars-card__summary-overlay {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 16px;
  background: rgba(248, 250, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(47, 57, 138, 0.16);
}

.ars-card__summary-title {
  min-width: 0;
}

.ars-card__summary-kicker {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ars-text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ars-card__summary-title h3 {
  margin: 0;
  color: var(--ars-blue-dark);
  font-size: 1.22rem;
  line-height: 1.1;
}

.ars-card__summary-button {
  flex: 0 0 auto;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(102, 126, 255, 0.14);
  border: 1px solid rgba(102, 126, 255, 0.18);
  color: var(--ars-blue-dark);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.ars-service-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.ars-service-list li {
  color: var(--ars-text-soft);
  font-weight: 600;
  line-height: 1.4;
}

.ars-service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(123, 140, 214, 0.22);
  color: var(--ars-cyan);
  font-weight: 700;
}

.ars-service-card__cta span:last-child {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ars-blue-dark);
}

.ars-service-details {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: grid;
  gap: 1rem;
  max-height: calc(100% - 1.7rem);
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(40, 49, 128, 0.18);
  opacity: 0;
  transform: translateY(calc(100% - 0.85rem));
  transition: transform 0.25s ease, opacity 0.25s ease;
  overflow: auto;
}

.ars-card--service[open] .ars-service-details {
  opacity: 1;
  transform: translateY(0);
}

.ars-service-details__head h4 {
  margin: 0 0 0.35rem;
  color: var(--ars-blue-dark);
  font-size: 1rem;
}

.ars-service-details__list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-service-details__list li {
  color: var(--ars-text-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ars-service-details__brands h5 {
  margin: 0 0 0.55rem;
  color: var(--ars-blue-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ars-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-brand-list li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(102, 126, 255, 0.12);
  border: 1px solid rgba(102, 126, 255, 0.16);
  color: var(--ars-blue-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.ars-brand-list__more {
  background: rgba(167, 52, 255, 0.12);
  border-color: rgba(167, 52, 255, 0.16);
}

.ars-service-details__button {
  width: 100%;
}

.ars-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(167, 52, 255, 0.14), rgba(102, 126, 255, 0.16));
  color: var(--ars-blue-dark);
  margin-bottom: 1rem;
}

.ars-card__title {
  margin: 0 0 0.55rem;
  font-size: 1.22rem;
  line-height: 1.2;
}

.ars-card__text {
  margin: 0;
  color: var(--ars-text-soft);
}

.ars-advantages-layout {
  display: grid;
  gap: 1rem;
}

.ars-advantages-story {
  display: grid;
  gap: 1rem;
}

.ars-advantages-highlight {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--ars-shadow);
  backdrop-filter: blur(16px);
}

.ars-advantages-highlight__stat {
  padding: 1.05rem 1.05rem 1rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(167, 52, 255, 0.15), rgba(102, 126, 255, 0.16)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(102, 126, 255, 0.18);
}

.ars-advantages-highlight__stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ars-blue-dark);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ars-advantages-highlight__stat span {
  color: var(--ars-text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.ars-advantages-highlight__list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-advantages-highlight__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(123, 140, 214, 0.18);
}

.ars-advantages-highlight__list strong {
  display: block;
  color: var(--ars-blue-dark);
  font-size: 0.98rem;
}

.ars-advantages-highlight__list span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ars-text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ars-advantages-panel {
  display: grid;
  gap: 0.85rem;
}

.ars-advantages-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--ars-shadow);
  backdrop-filter: blur(14px);
}

.ars-advantages-row__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(167, 52, 255, 0.16), rgba(102, 126, 255, 0.18));
  color: var(--ars-blue-dark);
  flex: 0 0 auto;
}

.ars-advantages-row__content {
  min-width: 0;
}

.ars-advantages-row__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(102, 126, 255, 0.12);
  color: var(--ars-blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ars-advantages-row__content h3 {
  margin: 0 0 0.45rem;
  color: var(--ars-blue-dark);
  font-size: 1.08rem;
  line-height: 1.2;
}

.ars-advantages-row__content p {
  margin: 0;
  color: var(--ars-text-soft);
  line-height: 1.6;
}

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

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

.ars-step {
  position: relative;
  padding-top: 3.8rem;
}

.ars-step__number {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ars-cyan), var(--ars-blue));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.ars-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(248, 250, 255, 0.46) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.ars-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ars-metric {
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.58);
  text-align: center;
  box-shadow: var(--ars-shadow);
  backdrop-filter: blur(10px);
}

.ars-metric strong {
  display: block;
  color: var(--ars-blue);
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1;
}

.ars-metric span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ars-text-soft);
  font-size: 0.95rem;
}

.ars-cta {
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(167, 52, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #3e4dd7 0%, #5e73ff 52%, #728cff 100%);
  color: #fff;
}

.ars-cta__split {
  display: grid;
  grid-template-columns: 1fr;
}

.ars-cta__media {
  position: relative;
  min-height: 420px;
}

.ars-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-cta__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(55, 63, 176, 0.82) 0%, rgba(96, 115, 255, 0.62) 45%, rgba(96, 115, 255, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(66, 77, 208, 0.4));
}

.ars-cta__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.ars-cta__content-inner {
  width: 100%;
  max-width: 44rem;
  padding: 4rem 0;
}

.ars-eyebrow--light {
  color: rgba(255, 255, 255, 0.84);
}

.ars-eyebrow--light::before {
  background: linear-gradient(90deg, #ffffff, #d7cbff);
}

.ars-cta__side {
  background: linear-gradient(135deg, #404fdc 0%, #596dff 52%, #6f86ff 100%);
}

.ars-cta__side-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 2rem 1.5rem;
}

.ars-cta__title {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
}

.ars-cta__copy {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.ars-cta__box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.ars-cta__list {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.ars-cta__list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.ars-cta .ars-button {
  width: 100%;
  background: linear-gradient(135deg, var(--ars-orange) 0%, var(--ars-orange-dark) 100%);
  color: #ffffff;
  border-color: rgba(255, 171, 61, 0.28);
  box-shadow: 0 12px 28px rgba(255, 143, 31, 0.28);
}

.ars-cta .ars-button:hover,
.ars-cta .ars-button:focus-visible {
  background: linear-gradient(135deg, #ffab2a 0%, #e56d00 100%);
}

.ars-section--service-area .ars-section-title {
  color: var(--ars-blue-dark);
}

.ars-section--service-area .ars-section-intro {
  max-width: 56rem;
}

.ars-area-chip {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(124, 140, 214, 0.24);
  color: var(--ars-blue-dark);
  box-shadow: 0 12px 30px rgba(47, 57, 138, 0.08);
}

.ars-contact-modal[hidden] {
  display: none;
}

.ars-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.ars-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 19, 61, 0.58);
  backdrop-filter: blur(8px);
}

.ars-contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(248, 250, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(32, 40, 112, 0.24);
}

.ars-contact-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border: 0;
  background: transparent;
  color: var(--ars-blue-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.ars-contact-modal__eyebrow {
  margin-bottom: 0.55rem;
  color: var(--ars-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ars-contact-modal__title {
  margin: 0 0 0.65rem;
  color: var(--ars-blue-dark);
  font-size: 1.6rem;
  line-height: 1.15;
}

.ars-contact-modal__copy {
  margin: 0 0 1.2rem;
  color: var(--ars-text-soft);
}

.ars-contact-modal__actions {
  display: grid;
  gap: 0.75rem;
}

body.ars-modal-open {
  overflow: hidden;
}

.ars-footer {
  padding: 2rem 0 5.75rem;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.ars-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ars-footer__logo {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 54, 132, 0.1);
}

.ars-footer__grid {
  display: grid;
  gap: 1.25rem;
}

.ars-footer__title {
  margin: 0 0 0.45rem;
  color: var(--ars-blue);
  font-size: 1rem;
}

.ars-footer__text,
.ars-footer__link {
  color: var(--ars-text-soft);
  font-size: 0.95rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 700px) {
  .ars-services,
  .ars-advantages,
  .ars-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ars-advantages-highlight {
    padding: 1.1rem;
  }

}

@media (min-width: 960px) {
  .ars-hero__grid,
  .ars-footer__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .ars-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--ars-fixed-top-total));
  }

  .ars-hero__content {
    min-height: calc(100vh - var(--ars-fixed-top-total));
    padding: 8rem 5rem;
  }

  .ars-hero__eyebrow {
    margin-bottom: 1.5rem;
  }

  .ars-hero__title {
    margin-bottom: 2rem;
  }

  .ars-hero__copy {
    margin-bottom: 3rem;
  }

  .ars-hero__actions {
    flex-direction: row;
    gap: 1rem;
  }

  .ars-hero__media {
    min-height: calc(100vh - var(--ars-fixed-top-total));
  }

  .ars-hero__media--panel {
    min-height: calc(100vh - var(--ars-fixed-top-total));
    padding: 2rem;
  }

  .ars-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ars-advantages-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.25rem;
    align-items: start;
  }

  .ars-advantages-story {
    position: sticky;
    top: calc(var(--ars-fixed-top-total) + 1rem);
    align-self: start;
  }

  .ars-advantages-panel {
    position: sticky;
    top: calc(var(--ars-fixed-top-total) + 1rem);
  }

  .ars-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ars-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ars-cta__split {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }

  .ars-cta__media,
  .ars-cta__side {
    min-height: 520px;
  }

  .ars-cta__side-inner {
    padding: 3rem;
  }

}

@media (max-width: 699px) {
  .ars-bg-icon {
    width: 54px;
    height: 54px;
    opacity: 0.08;
  }

  .ars-bg-icon:nth-child(1) {
    top: 8%;
    left: 5%;
  }

  .ars-bg-icon:nth-child(2) {
    top: 14%;
    right: 6%;
  }

  .ars-bg-icon:nth-child(3) {
    top: 30%;
    left: 8%;
  }

  .ars-bg-icon:nth-child(4) {
    top: 44%;
    right: 7%;
  }

  .ars-bg-icon:nth-child(5) {
    top: 60%;
    left: 10%;
  }

  .ars-bg-icon:nth-child(6) {
    top: 72%;
    right: 10%;
  }

  .ars-bg-icon:nth-child(7) {
    top: 83%;
    left: 42%;
  }

  .ars-bg-icon:nth-child(8) {
    top: 52%;
    left: 48%;
  }

  .ars-header__inner {
    gap: 0.75rem;
    min-height: 4.2rem;
  }

  .ars-brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 0.75rem;
  }

  .ars-brand__logo {
    width: 46px;
    height: 46px;
  }

  .ars-brand__text {
    min-width: 0;
  }

  .ars-brand__name {
    font-size: 0.92rem;
  }

  .ars-brand__tagline {
    font-size: 0.76rem;
  }

  .ars-header__actions {
    flex: 0 0 auto;
  }

  .ars-phone-link {
    display: none;
  }

  .ars-header__actions .ars-button {
    min-height: 0;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .ars-hero__media--panel {
    min-height: 0;
    padding: 0 1.5rem 1.5rem;
    border-left: 0;
  }

  .ars-hero__panel {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .ars-hero__panel-title {
    font-size: 1.35rem;
  }

  .ars-contact-modal__dialog {
    padding: 1.25rem;
  }

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

  .ars-footer__brand {
    align-items: flex-start;
  }

  .ars-footer__logo {
    width: 72px;
    height: 72px;
  }

  .ars-card__media img {
    height: 170px;
  }

  .ars-card--service .ars-card__media {
    height: 100%;
    min-height: 0;
  }

  .ars-card--service {
    height: 290px;
  }

  .ars-card--service .ars-card__media img {
    height: 100%;
    min-height: 0;
  }

  .ars-advantages-layout {
    gap: 0.85rem;
  }

  .ars-advantages-highlight,
  .ars-advantages-row {
    border-radius: 18px;
  }

  .ars-advantages-highlight__list li {
    grid-template-columns: auto 1fr;
  }

  .ars-advantages-row {
    grid-template-columns: auto 1fr;
  }

  .ars-advantages-row__index {
    margin-bottom: 0.45rem;
  }

  .ars-advantages-row__icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .ars-card__icon--service {
    bottom: 1rem;
  }

  .ars-service-details {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    max-height: calc(100% - 1.4rem);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .ars-hero__actions {
    flex-direction: row;
    gap: 1rem;
  }
}

body.admin-bar {
  --ars-admin-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --ars-admin-offset: 46px;
  }
}
