/* South Mediterranean Motors — light theme + motion */
:root {
  --bg: #f6f4ef;
  --bg-soft: #efeae2;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --text: #1a2233;
  --text-muted: #5a6578;
  --accent: #b8860b;
  --accent-hover: #9a7209;
  --accent-dim: rgba(184, 134, 11, 0.12);
  --accent-ring: rgba(184, 134, 11, 0.35);
  --border: rgba(26, 34, 51, 0.1);
  --shadow: 0 18px 40px rgba(26, 34, 51, 0.08);
  --shadow-hover: 0 22px 48px rgba(26, 34, 51, 0.12);
  --radius: 14px;
  --header-h: 72px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-ar: "Tajawal", system-ui, sans-serif;
  --font-en: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-en);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 10% 20%, rgba(184, 134, 11, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(30, 58, 95, 0.06), transparent 50%),
    var(--bg);
}

body[dir="rtl"] {
  font-family: var(--font-ar);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

/* ——— Icons (shared) ——— */
.ico,
.nav-link-ico .ico {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  fill: currentColor;
}

.nav-link-ico {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-desktop .nav-link-ico .ico {
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-desktop .nav-link-ico:hover .ico {
  opacity: 1;
  transform: translateY(-1px);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  transition: transform 0.35s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 14px var(--accent-dim);
  transition: box-shadow var(--transition), transform var(--transition);
}

.brand:hover img {
  box-shadow: 0 6px 20px var(--accent-ring);
}

.brand span {
  max-width: 200px;
  line-height: 1.25;
}

body[dir="rtl"] .brand span {
  text-align: right;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lang-toggle button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}

.lang-toggle button.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.lang-toggle button:not(.active):hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: var(--header-h);
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg-elevated);
  border-inline-start: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  overflow-y: auto;
  box-shadow: var(--shadow-hover);
}

body[dir="rtl"] .nav-drawer {
  transform: translateX(100%);
  right: 0;
  left: auto;
  border-inline-start: none;
  border-inline-end: 1px solid var(--border);
}

body[dir="ltr"] .nav-drawer {
  left: 0;
  right: auto;
}

.nav-drawer.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

body[dir="rtl"] .nav-drawer.open {
  transform: translateX(0);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  border-radius: 10px;
  font-weight: 600;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  background: var(--accent-dim);
  color: var(--accent);
}

.drawer-backdrop {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(26, 34, 51, 0.35);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.drawer-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand span {
    max-width: 160px;
    font-size: 0.85rem;
  }
}

@media (min-width: 901px) {
  .nav-drawer,
  .drawer-backdrop {
    display: none !important;
  }
}

/* ——— Hero slider ——— */
.hero {
  margin-top: var(--header-h);
  position: relative;
  min-height: min(85vh, 720px);
  background: var(--bg-soft);
}

.slider {
  position: relative;
  width: 100%;
  height: min(85vh, 720px);
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: blob-float 14s ease-in-out infinite;
}

.hero-blob--a {
  width: min(45vw, 280px);
  height: min(45vw, 280px);
  background: rgba(184, 134, 11, 0.35);
  top: 15%;
  inset-inline-start: 5%;
}

.hero-blob--b {
  width: min(35vw, 220px);
  height: min(35vw, 220px);
  background: rgba(30, 58, 95, 0.2);
  bottom: 20%;
  inset-inline-end: 10%;
  animation-delay: -4s;
}

.hero-blob--c {
  width: min(28vw, 180px);
  height: min(28vw, 180px);
  background: rgba(184, 134, 11, 0.22);
  top: 40%;
  inset-inline-end: 25%;
  animation-delay: -7s;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(12px, -18px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 12px) scale(0.98);
  }
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 252, 248, 0.94) 0%,
    rgba(255, 252, 248, 0.72) 38%,
    rgba(246, 244, 239, 0.35) 72%,
    rgba(246, 244, 239, 0.15) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 4;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

body[dir="rtl"] .slide-content {
  align-items: flex-end;
  text-align: right;
}

.slide-content h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 32ch;
  color: var(--text);
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.9);
}

.slide-content p {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--accent-hover);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-line {
  opacity: 0;
  transform: translateY(22px);
}

.slide:not(.active) .hero-line {
  animation: none !important;
  opacity: 0;
  transform: translateY(22px);
}

.slide.active .hero-line {
  animation: hero-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slide.active .hero-line:nth-child(1) {
  animation-delay: 0.08s;
}

.slide.active .hero-line:nth-child(2) {
  animation-delay: 0.2s;
}

.slide.active .hero-line:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 6;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(26, 34, 51, 0.25);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slider-dots button.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.hero-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s ease, box-shadow var(--transition);
  font-family: inherit;
}

.btn-ico .ico {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a012 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-dim);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4ae14 0%, #c9a012 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--accent-ring);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ——— Sections ——— */
.section {
  padding: 4rem 1.25rem;
  position: relative;
}

.section--soft {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.intro-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.intro-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  box-shadow: var(--shadow);
}

.intro-badge svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.intro-badge--float {
  animation: badge-bob 3s ease-in-out infinite;
}

@keyframes badge-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 auto 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  text-align: center;
}

body[dir="ltr"] .section-title {
  justify-content: center;
  text-align: center;
}

body[dir="ltr"] .section-title > span:last-of-type {
  text-align: center;
}

.section-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
  animation: ico-pulse 3s ease-in-out infinite;
}

.section-ico svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@keyframes ico-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(184, 134, 11, 0);
  }
}

body[dir="rtl"] .section-title {
  flex-direction: row-reverse;
  justify-content: center;
  text-align: center;
}

.section-title--plain {
  gap: 0;
}

body[dir="rtl"] .section-title > span:last-of-type {
  text-align: center;
  unicode-bidi: plaintext;
}

body[dir="rtl"] .card h3 {
  text-align: right;
  justify-content: flex-start;
}

body[dir="rtl"] .section-inner > p:not(.lead),
body[dir="rtl"] .section-inner .check-list {
  text-align: right;
}

body[dir="rtl"] .section-inner .lead {
  text-align: right;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 65ch;
}

body[dir="rtl"] .lead {
  margin-left: auto;
  margin-right: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ثلاث بطاقات منتجات في صف واحد (عريض)، ثم عمودين، ثم عمود واحد */
.grid-products {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 768px) {
  .grid-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .grid-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* رؤية — رسالة — هدف */
.vm-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 0.25rem;
}

@media (min-width: 900px) {
  .vm-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.vm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-ring);
}

.vm-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.15rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(184, 134, 11, 0.22);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), var(--accent-dim));
  color: var(--accent-hover);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.vm-card:hover .vm-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 14px 32px rgba(184, 134, 11, 0.2);
}

.vm-card__icon svg {
  fill: currentColor;
}

.vm-card__icon--vision {
  color: #1d4ed8;
  border-color: rgba(29, 78, 216, 0.2);
  background: linear-gradient(155deg, #fff, rgba(219, 234, 254, 0.85));
}

.vm-card__icon--mission {
  color: #b45309;
  border-color: rgba(180, 83, 9, 0.22);
  background: linear-gradient(155deg, #fff, var(--accent-dim));
}

.vm-card__icon--goal {
  color: #0f766e;
  border-color: rgba(15, 118, 110, 0.22);
  background: linear-gradient(155deg, #fff, rgba(204, 251, 241, 0.75));
}

.vm-card__title {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  width: 100%;
}

.vm-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
  max-width: 36ch;
}

body[dir="rtl"] .vm-card {
  text-align: right;
  align-items: flex-end;
}

body[dir="rtl"] .vm-card__icon {
  margin-inline-start: 0;
  margin-inline-end: 0;
}

body[dir="rtl"] .vm-card__title,
body[dir="rtl"] .vm-card__text {
  text-align: right;
  width: 100%;
  max-width: none;
}

.card-oils-grid {
  list-style: none;
  margin: 0;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.card-oils-grid li {
  margin: 0;
  padding: 0.55rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  background: var(--accent-dim);
  color: var(--text-muted);
  border-radius: 10px;
  border: 1px solid rgba(184, 134, 11, 0.2);
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
}

.card--with-photo .card-oils-grid {
  padding-inline: 1.75rem !important;
}

body[dir="rtl"] .card-oils-grid li {
  text-align: center;
}

.card-oils-grid li:hover {
  background: rgba(184, 134, 11, 0.2);
  color: var(--text);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .card-oils-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .card-oils-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card--with-photo {
  padding-top: 0;
  padding-inline: 0;
  padding-bottom: 1.05rem;
}

.card--with-photo h3,
.card--with-photo p,
.card--with-photo ul {
  padding-inline: 1.75rem;
}

.card--with-photo figure + h3 {
  margin-top: 1rem;
}

.grid-products .card--with-photo h3 {
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.grid-products .card--with-photo > p {
  margin: 0 0 0.7rem;
  line-height: 1.65;
  font-size: 0.96rem;
}

.grid-products .card--with-photo ul {
  margin-bottom: 0;
  padding-bottom: 0;
}

.grid-products .card--with-photo li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.grid-products .card--with-photo li:last-child {
  margin-bottom: 0;
}

body[dir="rtl"] .grid-products .card--with-photo ul:not(.card-oils-grid) {
  padding-inline-start: 1.75rem;
  padding-inline-end: calc(1.75rem + 1.15rem);
}

.card-photo {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.card--lift:hover .card-photo img {
  transform: scale(1.04);
}

.card--lift:hover {
  border-color: var(--accent-ring);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.card-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, var(--accent-dim), rgba(255, 255, 255, 0.9));
  color: var(--accent);
  transition: transform 0.45s ease;
}

.card--lift:hover .card-ico {
  transform: rotate(-6deg) scale(1.06);
}

.card-ico svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.card ul {
  margin: 0;
  padding-inline-start: 1.25rem;
  color: var(--text-muted);
}

body[dir="rtl"] .card ul {
  padding-inline-start: 0;
  padding-inline-end: 1.25rem;
  text-align: right;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 0.55rem 0;
  padding-inline-start: 2.25rem;
  position: relative;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.25s ease;
}

.check-list li:hover {
  color: var(--text);
  transform: translateX(4px);
}

body[dir="rtl"] .check-list li:hover {
  transform: translateX(-4px);
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-ring);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b8860b'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  background: var(--accent-dim);
  color: var(--accent-hover);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: var(--accent-ring);
  box-shadow: var(--shadow);
}

.cta-banner {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.cta-banner--shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -40%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(12deg);
  animation: shine-sweep 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine-sweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-20%) rotate(12deg);
  }
  50% {
    opacity: 1;
    transform: translateX(180%) rotate(12deg);
  }
}

.cta-banner-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  animation: ico-pulse 3s ease-in-out infinite;
}

.cta-banner-ico svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.cta-banner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ——— Scroll reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Footer ——— */
.site-footer {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #e8e2d8 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.footer-brand p,
.footer-col p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-hover);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.25s ease;
  box-shadow: var(--shadow);
}

.social-links a:hover {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: var(--accent-ring);
  transform: translateY(-3px) scale(1.05);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.phone-link,
.email-link {
  color: var(--text);
  font-weight: 600;
  direction: ltr;
  unicode-bidi: embed;
}

.email-link:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .slide-bg {
    transform: none !important;
  }

  .hero-line {
    opacity: 1;
    transform: none;
  }

  .cta-banner--shine::after {
    display: none;
  }
}
