/* Global design tokens */
:root {
  --color-primary: #0d3b8e;
  --color-primary-dark: #08275e;
  --color-accent: #1db954;
  --color-accent-dark: #149143;
  --color-white: #ffffff;
  --color-ink: #10233f;
  --color-text: #43546d;
  --color-muted: #6e7f97;
  --color-border: rgba(13, 59, 142, 0.12);
  --color-surface: #f5f9ff;
  --color-surface-alt: #eaf2ff;
  --color-success-soft: rgba(29, 185, 84, 0.16);
  --shadow-soft: 0 20px 45px rgba(8, 39, 94, 0.12);
  --shadow-card: 0 16px 40px rgba(13, 59, 142, 0.1);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 86px;
  --transition: 220ms ease;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(29, 185, 84, 0.11), transparent 32%),
    radial-gradient(circle at right, rgba(13, 59, 142, 0.09), transparent 28%),
    #fbfdff;
  line-height: 1.7;
}

body[data-lang="ar"] {
  font-family: "Tajawal", "Inter", sans-serif;
}

body[data-lang="ar"] h1,
body[data-lang="ar"] h2,
body[data-lang="ar"] h3,
body[data-lang="ar"] strong,
body[data-lang="ar"] .eyebrow,
body[data-lang="ar"] .hero-kicker,
body[data-lang="ar"] .lang-link {
  font-family: "Cairo", "Poppins", sans-serif;
  letter-spacing: 0;
}

body[data-lang="ar"] .eyebrow,
body[data-lang="ar"] .hero-kicker {
  text-transform: none;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  overflow: hidden;
}

section[id],
form[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

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

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(234, 242, 255, 0.76), rgba(255, 255, 255, 0.96)),
    var(--color-white);
}

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

.eyebrow::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), #89e5ab);
  box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.14);
}

h1,
h2,
h3,
strong {
  color: var(--color-ink);
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.section-lead,
.hero-text,
.section-heading p {
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), #26c266);
  box-shadow: 0 16px 30px rgba(29, 185, 84, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--color-accent-dark), #23a755);
}

.btn-secondary,
.btn-outline {
  color: var(--color-primary);
  border: 1px solid rgba(13, 59, 142, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.btn-secondary.light {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
  border-color: rgba(13, 59, 142, 0.4);
  box-shadow: 0 10px 24px rgba(13, 59, 142, 0.12);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 1rem 0;
  background: rgba(251, 253, 255, 0.88);
  backdrop-filter: blur(16px);
  transition:
    box-shadow var(--transition),
    background-color var(--transition),
    padding var(--transition);
}

.site-header.is-scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 18px 40px rgba(8, 39, 94, 0.09);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

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

.brand img {
  height: 56px;
  width: auto;
  max-width: 150px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 1.1rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
}

.site-nav > a {
  position: relative;
  font-weight: 600;
  color: var(--color-ink);
}

.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
}

.site-nav > a.is-active {
  color: var(--color-primary);
}

.nav-cta {
  margin-left: 0.4rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.9rem;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(13, 59, 142, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.lang-link:hover,
.lang-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(13, 59, 142, 0.24);
  box-shadow: 0 10px 24px rgba(13, 59, 142, 0.1);
}

.lang-link.is-active {
  color: var(--color-white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-primary), #2d67d1);
  box-shadow: 0 14px 30px rgba(13, 59, 142, 0.22);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(13, 59, 142, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
}

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

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

/* Hero */
.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 7% 14%, rgba(105, 202, 245, 0.26), transparent 18%),
    radial-gradient(circle at 56% 10%, rgba(29, 185, 84, 0.2), transparent 10%),
    radial-gradient(circle at 96% 90%, rgba(43, 86, 219, 0.16), transparent 14%);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: center;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  gap: 0;
  align-content: center;
  max-width: 640px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(13, 59, 142, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-primary-dark);
  box-shadow: 0 14px 30px rgba(8, 39, 94, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1db954, #8bf3b2);
  box-shadow: 0 0 0 7px rgba(29, 185, 84, 0.16);
}

.hero-title {
  max-width: 10ch;
  margin-bottom: 1.35rem;
  color: #1b2c64;
  font-size: clamp(3rem, 5.4vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-description {
  margin: 0;
  max-width: 34rem;
  color: var(--color-text);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.85;
}

.hero-contact-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(100%, 36rem);
  margin-top: 2.1rem;
  padding: 0.45rem;
  border: 1px solid rgba(13, 59, 142, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 45px rgba(8, 39, 94, 0.08);
}

.hero-contact-meta {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0.85rem;
  min-width: 0;
  padding-inline: 0.4rem;
}

.hero-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43, 86, 219, 0.12), rgba(29, 185, 84, 0.16));
  color: var(--color-primary);
  flex: none;
}

.hero-contact-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.hero-contact-text {
  min-width: 0;
}

.hero-contact-label {
  display: block;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact-value {
  display: block;
  overflow: hidden;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-contact-action {
  min-height: 60px;
  padding-inline: 1.55rem;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #2b56db, #234fce);
  box-shadow: 0 16px 32px rgba(43, 86, 219, 0.2);
}

.hero-contact-action:hover,
.hero-contact-action:focus-visible {
  background: linear-gradient(135deg, #2349be, #1c43b0);
}

.hero-media {
  position: relative;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-media::before {
  top: -2.75rem;
  left: -2.75rem;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.4), rgba(29, 185, 84, 0));
  filter: blur(24px);
}

.hero-media::after {
  right: -3rem;
  bottom: -2.5rem;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(43, 86, 219, 0.22), rgba(43, 86, 219, 0));
  filter: blur(26px);
}

.hero-media-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 36px;
  background: var(--color-white);
  box-shadow: 0 34px 72px rgba(8, 39, 94, 0.14);
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.hero-media-card img {
  width: 100%;
  height: clamp(360px, 46vw, 630px);
  object-fit: cover;
  object-position: center;
}

.hero-appointment-section {
  position: relative;
  z-index: 3;
  margin-top: -3.4rem;
  padding: 0 0 1.35rem;
}

.hero-appointment-section::before {
  content: "";
  position: absolute;
  inset: 3.2rem 0 0;
  background:
    linear-gradient(180deg, rgba(229, 241, 255, 0.7), rgba(233, 247, 239, 0.5));
  pointer-events: none;
  z-index: -1;
}

.hero-appointment-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(230px, 0.92fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.97));
  box-shadow:
    0 20px 44px rgba(8, 39, 94, 0.08),
    0 44px 78px rgba(8, 39, 94, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-appointment-field {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1.75rem 2rem 1.55rem;
  background: transparent;
  transition:
    background-color var(--transition),
    box-shadow var(--transition);
}

.hero-appointment-field:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 3.1rem);
  background: linear-gradient(180deg, rgba(13, 59, 142, 0.04), rgba(13, 59, 142, 0.14), rgba(13, 59, 142, 0.04));
  transform: translateY(-50%);
}

.hero-appointment-field label {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
}

.hero-appointment-field input,
.hero-appointment-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 0 0.9rem;
  border: 0;
  border-bottom: 2px solid rgba(13, 59, 142, 0.12);
  border-radius: 0;
  color: var(--color-ink);
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  outline: none;
  transition:
    border-color var(--transition),
    color var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

.hero-appointment-field input::placeholder,
.hero-appointment-field select:invalid {
  color: rgba(67, 84, 109, 0.78);
}

.hero-appointment-field:hover {
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.7), rgba(255, 255, 255, 0));
}

.hero-appointment-field:focus-within {
  background: linear-gradient(180deg, rgba(234, 242, 255, 0.42), rgba(255, 255, 255, 0));
  box-shadow: inset 0 -1px 0 rgba(13, 59, 142, 0.08);
}

.hero-appointment-field input:focus,
.hero-appointment-field select:focus {
  border-bottom-color: var(--color-accent);
  transform: translateY(-1px);
}

.hero-appointment-field input:hover,
.hero-appointment-field select:hover {
  border-bottom-color: rgba(13, 59, 142, 0.28);
}

.hero-appointment-field.has-value input,
.hero-appointment-field input:not(:placeholder-shown) {
  color: #16315f;
  border-bottom-color: rgba(13, 59, 142, 0.22);
}

.hero-appointment-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 0;
  cursor: pointer;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.hero-appointment-select::before,
.hero-appointment-select::after {
  content: none;
  position: absolute;
  pointer-events: none;
}

.hero-appointment-select::before {
  right: 2.05rem;
  bottom: 1.5rem;
  width: 0.78rem;
  height: 0.78rem;
  border-right: 3px solid rgba(67, 84, 109, 0.72);
  border-bottom: 3px solid rgba(67, 84, 109, 0.72);
  transform: rotate(45deg);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.hero-appointment-select.has-value select {
  color: #16315f;
  border-bottom-color: rgba(29, 185, 84, 0.8);
}

.hero-appointment-field select option {
  color: #16315f;
  background: #ffffff;
  font-weight: 600;
}

.hero-appointment-field select option[value=""] {
  color: rgba(67, 84, 109, 0.78);
}

.hero-appointment-select.has-value::before {
  border-right-color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent-dark);
}

.hero-appointment-select:focus-within::before {
  transform: rotate(45deg) translateY(-1px);
}

.hero-appointment-field:focus-within label,
.hero-appointment-field.has-value label,
.hero-appointment-select.has-value label {
  color: var(--color-primary-dark);
}

.hero-appointment-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 100%;
  padding: 1.9rem 1.8rem;
  color: var(--color-white);
  background: linear-gradient(135deg, #1fb85a, #27c866 50%, #23b55b 100%);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-align: center;
  transition:
    background-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    -16px 0 30px rgba(29, 185, 84, 0.12);
}

.hero-appointment-button:hover,
.hero-appointment-button:focus-visible {
  background: linear-gradient(135deg, var(--color-accent-dark), #1fa850 50%, #1c9848 100%);
  transform: translateY(-1px);
}

.hero-content.is-visible > * {
  animation: hero-fade-up 700ms cubic-bezier(0.2, 1, 0.22, 1) both;
}

.hero-content.is-visible > :nth-child(1) {
  animation-delay: 60ms;
}

.hero-content.is-visible > :nth-child(2) {
  animation-delay: 140ms;
}

.hero-content.is-visible > :nth-child(3) {
  animation-delay: 220ms;
}

.hero-content.is-visible > :nth-child(4) {
  animation-delay: 300ms;
}

.hero-media.is-visible {
  animation: hero-fade-up 760ms cubic-bezier(0.2, 1, 0.22, 1) 140ms both;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .skip-link {
  left: auto;
  right: 1rem;
}

html[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-nav {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .lang-switcher {
  margin-left: 0;
  margin-right: 0.9rem;
}

html[dir="rtl"] .site-nav > a:not(.btn)::after {
  left: auto;
  right: 0;
  transform-origin: right;
}

html[dir="rtl"] .nav-cta {
  margin-left: 0;
  margin-right: 0.4rem;
}

html[dir="rtl"] .hero-contact-meta {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-contact-text {
  text-align: right;
}

html[dir="rtl"] .hero-media::before {
  left: auto;
  right: -2.75rem;
}

html[dir="rtl"] .hero-media::after {
  right: auto;
  left: -3rem;
}

html[dir="rtl"] .hero-appointment-field:not(:last-of-type)::after {
  right: auto;
  left: 0;
}

html[dir="rtl"] .hero-appointment-field input,
html[dir="rtl"] .hero-appointment-field select {
  text-align: right;
}

html[dir="rtl"] .hero-appointment-field select {
  padding-right: 0;
  padding-left: 0;
}

html[dir="rtl"] .feature-item {
  grid-template-columns: 1fr auto;
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 1.25rem;
}

html[dir="rtl"] .why-band-list li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .transformation-card-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .comparison-footer {
  direction: ltr;
}

html[dir="rtl"] .services-preview-head {
  direction: rtl;
}

html[dir="rtl"] .services-carousel-counter {
  direction: ltr;
}

html[dir="rtl"] .services-carousel-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] [data-service-prev] span,
html[dir="rtl"] [data-service-next] span {
  transform: scaleX(-1);
}

html[dir="rtl"] .transformation-caption {
  direction: rtl;
  text-align: right;
  padding-left: 0;
  padding-right: 1rem;
}

html[dir="rtl"] .transformation-caption::before {
  left: auto;
  right: 0;
}

.page-hero {
  position: relative;
  padding-top: 4rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(29, 185, 84, 0.14), transparent 18%),
    radial-gradient(circle at 78% 10%, rgba(13, 59, 142, 0.11), transparent 20%);
  pointer-events: none;
}

.hero-grid,
.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-visual,
.image-card,
.map-card {
  position: relative;
  z-index: 1;
}

.hero-visual > img,
.image-card img,
.map-card img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.floating-note {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 280px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), #2d67d1);
}

.floating-note p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.metrics-grid,
.stats-row,
.panel-stats {
  display: grid;
  gap: 1rem;
}

.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
}

.metric-card,
.mini-stat {
  padding: 1.15rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(13, 59, 142, 0.07);
}

.metric-card strong,
.mini-stat strong,
.panel-stats strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 980px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-media {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-appointment-section {
    margin-top: -1.8rem;
  }

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

  .hero-appointment-button {
    min-height: 88px;
    grid-column: 1 / -1;
  }

  .services-process-section .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 3.6rem;
    padding-bottom: 4rem;
  }

  .hero-kicker {
    margin-bottom: 0.85rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: 1;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-contact-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 0.85rem;
    border-radius: 28px;
  }

  .hero-contact-meta {
    padding-inline: 0;
  }

  .hero-contact-action {
    width: 100%;
    justify-content: center;
  }

  .hero-media::before {
    top: -1.8rem;
    left: -1.5rem;
    width: 130px;
    height: 130px;
  }

  .hero-media::after {
    right: -1.5rem;
    bottom: -1.5rem;
    width: 140px;
    height: 140px;
  }

  .hero-media-card {
    border-radius: 28px;
  }

  .hero-media-card img {
    height: clamp(300px, 76vw, 420px);
  }

  .hero-appointment-section {
    margin-top: 1rem;
  }

  .hero-appointment-section::before {
    inset: 1rem 0 0;
  }

  .hero-appointment-bar {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hero-appointment-field {
    gap: 0.75rem;
    padding: 1.2rem 1.2rem 1rem;
  }

  .hero-appointment-field input,
  .hero-appointment-field select {
    min-height: 42px;
    font-size: 0.98rem;
  }

  .hero-appointment-field:not(:last-of-type)::after {
    top: auto;
    right: 1.2rem;
    bottom: 0;
    left: 1.2rem;
    width: auto;
    height: 1px;
    transform: none;
  }

  .hero-appointment-button {
    min-height: 74px;
    padding: 1.15rem 1.2rem;
  }

  .services-process-section .step-card {
    padding: 1.45rem 1.3rem 1.35rem;
    border-radius: 24px;
  }

  .services-process-section .step-card span {
    min-width: 64px;
    height: 42px;
    margin-bottom: 1rem;
    font-size: 0.96rem;
  }

  .services-process-section .step-card h3 {
    font-size: 1.4rem;
  }

  .services-process-section .step-card p {
    font-size: 0.97rem;
  }

  html[dir="rtl"] .hero-media::before {
    left: auto;
    right: -1.5rem;
  }

  html[dir="rtl"] .hero-media::after {
    right: auto;
    left: -1.5rem;
  }

  html[dir="rtl"] .hero-appointment-field:not(:last-of-type)::after {
    right: 1.2rem;
    left: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content.is-visible > *,
  .hero-media.is-visible {
    animation: none;
  }
}

/* Cards and content blocks */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.info-card,
.service-card,
.mission-card,
.value-card,
.testimonial-card,
.step-card,
.form-card,
.contact-info-card,
.map-card,
.comparison-card {
  padding: 1.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.info-card,
.service-card,
.value-card,
.testimonial-card,
.step-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.info-card:hover,
.service-card:hover,
.value-card:hover,
.testimonial-card:hover,
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 185, 84, 0.32);
  box-shadow: 0 20px 45px rgba(13, 59, 142, 0.13);
}

.services-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.services-preview-heading {
  margin-bottom: 0;
}

.services-carousel-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.services-carousel-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 52px;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(13, 59, 142, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(13, 59, 142, 0.08);
}

.services-carousel-current,
.services-carousel-total {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.services-carousel-current {
  color: var(--color-primary);
}

.services-carousel-total {
  color: var(--color-muted);
}

.services-carousel-counter-separator {
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 59, 142, 0.14), rgba(13, 59, 142, 0.38));
}

.services-carousel-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.services-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(13, 59, 142, 0.14);
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(13, 59, 142, 0.08);
  transition:
    transform var(--transition),
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.services-carousel-button span {
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1;
}

.services-carousel-button:hover,
.services-carousel-button:focus-visible {
  transform: translateY(-2px);
  color: var(--color-white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-primary), #2d67d1);
  box-shadow: 0 18px 32px rgba(13, 59, 142, 0.18);
}

.services-carousel-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  color: var(--color-muted);
  border-color: rgba(13, 59, 142, 0.08);
  background: rgba(244, 248, 255, 0.94);
  box-shadow: none;
}

.services-carousel {
  position: relative;
}

.services-carousel::before,
.services-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 76px;
  pointer-events: none;
}

.services-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(251, 253, 255, 0.96), rgba(251, 253, 255, 0));
}

.services-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(251, 253, 255, 0.96), rgba(251, 253, 255, 0));
}

.services-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3rem) / 3);
  gap: 1.5rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.35rem 0.15rem 0.6rem;
  margin: 0 -0.15rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.services-carousel-track::-webkit-scrollbar {
  display: none;
}

.service-slide {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.services-carousel.is-single::before,
.services-carousel.is-single::after {
  display: none;
}

.services-carousel.is-single .services-carousel-track {
  grid-auto-columns: minmax(0, 1fr);
  overflow: visible;
}

.service-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96));
  box-shadow: 0 22px 48px rgba(13, 59, 142, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #7bdba0, rgba(13, 59, 142, 0.88));
  opacity: 0.95;
  z-index: 2;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -68px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 59, 142, 0.1), rgba(13, 59, 142, 0));
  pointer-events: none;
  z-index: 0;
}

.service-card:hover {
  border-color: rgba(13, 59, 142, 0.2);
  box-shadow: 0 28px 58px rgba(13, 59, 142, 0.14);
}

.service-media {
  position: relative;
  z-index: 1;
  padding: 1rem 1rem 0;
  margin-bottom: 0;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 1rem 1rem 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 39, 94, 0) 42%, rgba(8, 39, 94, 0.18) 100%);
  pointer-events: none;
}

.service-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 520ms ease;
}

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

.service-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  height: 100%;
  padding: 1.15rem 1.35rem 1.4rem;
}

.service-card.has-media .service-card-body {
  padding-top: 0.8rem;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card.has-media .service-card-meta {
  margin-top: -2.2rem;
}

.service-card-number {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card-number::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 59, 142, 0.08), rgba(13, 59, 142, 0.34));
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 1.38rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--color-text);
}

.services-preview-grid .service-card p {
  margin-bottom: 0;
}

.icon-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  color: var(--color-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.94));
  box-shadow:
    0 14px 30px rgba(13, 59, 142, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.service-card .btn-outline,
.service-card-link {
  align-self: flex-start;
  margin-top: auto;
  border-color: rgba(13, 59, 142, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.94));
  box-shadow: 0 12px 24px rgba(13, 59, 142, 0.08);
}

.service-card .btn-outline:hover,
.service-card .btn-outline:focus-visible,
.service-card-link:hover,
.service-card-link:focus-visible {
  color: var(--color-white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-primary), #2d67d1);
  box-shadow: 0 18px 32px rgba(13, 59, 142, 0.18);
}

.why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a2147;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 28, 61, 0.9), rgba(13, 59, 142, 0.78)),
    linear-gradient(180deg, rgba(8, 28, 61, 0.14), rgba(8, 28, 61, 0.38)),
    var(--why-background-image) center / cover no-repeat;
  transform: scale(1.03);
  z-index: -2;
  pointer-events: none;
}

.why-section::after {
  content: "";
  position: absolute;
  inset: 2rem 2rem auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 59, 142, 0.08), rgba(13, 59, 142, 0));
  pointer-events: none;
  z-index: -1;
}

.why-shell {
  position: relative;
  display: grid;
  gap: 2rem;
  z-index: 1;
}

.why-heading {
  max-width: 760px;
}

.why-section .why-heading .eyebrow {
  color: rgba(219, 255, 230, 0.92);
}

.why-section .why-heading h2 {
  color: var(--color-white);
}

.why-section .why-heading .section-lead {
  color: rgba(255, 255, 255, 0.82);
}

.why-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-reason-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid rgba(13, 59, 142, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94));
  box-shadow: 0 18px 40px rgba(13, 59, 142, 0.08);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.why-reason-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #4d86ea, #8ee6ae);
}

.why-reason-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 59, 142, 0.08), rgba(13, 59, 142, 0));
  pointer-events: none;
}

.why-reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 59, 142, 0.18);
  box-shadow: 0 24px 52px rgba(13, 59, 142, 0.12);
}

.why-reason-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 251, 245, 0.92));
}

.why-reason-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 36px;
  margin-bottom: 1.15rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--color-primary);
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(13, 59, 142, 0.08);
}

.why-reason-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  line-height: 1.22;
}

.why-reason-card p {
  margin-bottom: 0;
  color: var(--color-text);
}

.why-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.9fr);
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  border: 1px solid rgba(13, 59, 142, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96));
  box-shadow: 0 22px 52px rgba(13, 59, 142, 0.1);
}

.why-band-copy {
  display: grid;
  gap: 0.95rem;
}

.why-band-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(29, 185, 84, 0.12);
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-band-copy h3 {
  margin-bottom: 0;
  font-size: 1.65rem;
  line-height: 1.15;
}

.why-band-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-band-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(13, 59, 142, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-ink);
  font-weight: 600;
}

.why-band-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #8de6ab);
  box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.12);
  flex: 0 0 auto;
}

.why-band-actions {
  display: grid;
  gap: 0.75rem;
}

.why-band-link {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(13, 59, 142, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.why-band-link:hover,
.why-band-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(13, 59, 142, 0.18);
  box-shadow: 0 16px 32px rgba(13, 59, 142, 0.1);
}

.why-band-link span {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.why-band-link strong {
  font-size: 1rem;
  line-height: 1.35;
  word-break: break-word;
}

.why-band-button {
  width: 100%;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border);
}

.feature-number,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(13, 59, 142, 0.09);
}

.highlight-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: 0 24px 50px rgba(8, 39, 94, 0.24);
}

.highlight-panel h3,
.highlight-panel strong,
.highlight-panel .eyebrow,
.highlight-panel p,
.highlight-panel li,
.highlight-panel span {
  color: var(--color-white);
}

.panel-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.check-list li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), #70dea0);
  box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.12);
  flex: 0 0 auto;
}

.before-after-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(29, 185, 84, 0.08), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(13, 59, 142, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(245, 249, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.before-after-section::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 59, 142, 0.08), rgba(13, 59, 142, 0));
  pointer-events: none;
}

.before-after-shell {
  position: relative;
  display: grid;
  gap: 2rem;
}

.before-after-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.before-after-heading-copy {
  display: grid;
  gap: 0.85rem;
}

.before-after-heading-copy p {
  margin: 0;
}

.before-after-grid {
  align-items: stretch;
}

.transformation-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1.4rem;
  padding: 1.45rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.96));
  box-shadow: 0 22px 48px rgba(13, 59, 142, 0.1);
}

.transformation-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #4b84e9, #8ee5ab);
}

.transformation-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 59, 142, 0.07), rgba(13, 59, 142, 0));
  pointer-events: none;
}

.transformation-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.transformation-card-header h3 {
  margin-bottom: 0;
  font-size: 1.32rem;
  line-height: 1.2;
}

.transformation-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 0.95rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(13, 59, 142, 0.08);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.transformation-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(13, 59, 142, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.transformation-arrow {
  color: var(--color-primary);
  font-size: 1rem;
}

.comparison-slider {
  --comparison-position: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(223, 233, 248, 0.92), rgba(211, 224, 244, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 26px 56px rgba(13, 59, 142, 0.14);
}

.comparison-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 39, 94, 0.06), rgba(8, 39, 94, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.comparison-media {
  position: absolute;
  inset: 0;
}

.comparison-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-media-overlay {
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.comparison-slider:not(.is-dragging) .comparison-media-overlay,
.comparison-slider:not(.is-dragging) .comparison-divider-line,
.comparison-slider:not(.is-dragging) .comparison-handle {
  transition:
    clip-path 180ms ease,
    left 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.comparison-badge {
  position: absolute;
  top: 1.15rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(8, 39, 94, 0.12);
  backdrop-filter: blur(10px);
}

.comparison-badge-before {
  left: 1.15rem;
}

.comparison-badge-after {
  right: 1.15rem;
}

.comparison-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  z-index: 3;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  box-shadow:
    0 0 0 1px rgba(13, 59, 142, 0.08),
    0 0 32px rgba(255, 255, 255, 0.45);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--comparison-position);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 36px rgba(8, 39, 94, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.comparison-slider.is-dragging .comparison-handle {
  transform: translate(-50%, -50%) scale(1.03);
  box-shadow:
    0 22px 42px rgba(8, 39, 94, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.comparison-handle-grip {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #2f70dd 52%, #4fd684 100%);
  box-shadow: 0 12px 24px rgba(13, 59, 142, 0.22);
}

.comparison-handle-grip::before,
.comparison-handle-grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.96);
  border-right: 2px solid rgba(255, 255, 255, 0.96);
}

.comparison-handle-grip::before {
  left: 11px;
  transform: translateY(-50%) rotate(225deg);
}

.comparison-handle-grip::after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  background: transparent;
}

.comparison-range::-webkit-slider-thumb {
  width: 1px;
  height: 1px;
  appearance: none;
}

.comparison-range::-moz-range-thumb {
  width: 1px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.comparison-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.transformation-caption {
  position: relative;
  padding-left: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.transformation-caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(255, 195, 79, 0.9);
  box-shadow: 0 0 0 5px rgba(255, 195, 79, 0.14);
}

.transformation-caption:last-child::before {
  background: rgba(29, 185, 84, 0.9);
  box-shadow: 0 0 0 5px rgba(29, 185, 84, 0.14);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.services-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(62, 124, 255, 0.14), transparent 20%),
    radial-gradient(circle at 88% 28%, rgba(29, 185, 84, 0.12), transparent 18%),
    linear-gradient(135deg, #0e2958 0%, #163872 55%, #14315f 100%);
}

.services-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 48%);
  pointer-events: none;
}

.services-process-section .container {
  position: relative;
  z-index: 1;
}

.services-process-heading {
  max-width: 760px;
}

.services-process-heading .eyebrow {
  color: rgba(214, 240, 255, 0.9);
}

.services-process-heading h2,
.services-process-heading p {
  color: var(--color-white);
}

.services-process-heading p {
  max-width: 62ch;
  color: rgba(233, 241, 255, 0.8);
}

.services-process-section .steps-grid {
  gap: 1.35rem;
  margin-top: 2rem;
}

.services-process-section .step-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.8rem 1.75rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  box-shadow: 0 22px 48px rgba(4, 16, 38, 0.18);
}

.services-process-section .step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), #7ddfb0);
}

.services-process-section .step-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.08), rgba(29, 185, 84, 0));
  pointer-events: none;
}

.services-process-section .step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 58px rgba(4, 16, 38, 0.24);
}

.services-process-section .step-card span {
  width: auto;
  min-width: 72px;
  height: 46px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #e9f0fa, #dce6f4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.services-process-section .step-card h3 {
  margin-bottom: 0.9rem;
  color: #0f2b57;
  font-size: clamp(1.6rem, 2vw, 1.95rem);
  line-height: 1.15;
}

.services-process-section .step-card p {
  margin: 0;
  color: #32527f;
  font-size: 1.02rem;
  line-height: 1.65;
}

.posts-showcase-section {
  position: relative;
}

.posts-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(29, 185, 84, 0.1), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(13, 59, 142, 0.08), transparent 20%);
  pointer-events: none;
}

.posts-showcase-section .container {
  position: relative;
  z-index: 1;
}

.posts-showcase-head {
  max-width: 760px;
}

.posts-showcase-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.posts-showcase-head p {
  max-width: 60ch;
}

.posts-carousel {
  position: relative;
}

.posts-carousel::before,
.posts-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.posts-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(251, 253, 255, 0.96), rgba(251, 253, 255, 0));
}

.posts-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(251, 253, 255, 0.96), rgba(251, 253, 255, 0));
}

.posts-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.35rem) / 2);
  gap: 1.35rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.35rem 0.15rem 0.6rem;
  margin: 0 -0.15rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.posts-carousel-track::-webkit-scrollbar {
  display: none;
}

.post-slide {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.posts-carousel.is-static::before,
.posts-carousel.is-static::after {
  display: none;
}

.posts-carousel.is-static .posts-carousel-track {
  overflow: visible;
}

.posts-carousel.is-single .posts-carousel-track {
  grid-auto-columns: minmax(0, 1fr);
}

.post-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(13, 59, 142, 0.1);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.95));
  box-shadow: 0 22px 48px rgba(8, 39, 94, 0.12);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.post-card:hover,
.post-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(13, 59, 142, 0.16);
  box-shadow: 0 28px 56px rgba(8, 39, 94, 0.16);
}

.post-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 0.86 / 1;
  padding: 0.55rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(228, 237, 251, 0.96), rgba(242, 247, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(8, 39, 94, 0.08);
}

.post-card-caption {
  position: static;
  padding: 0 0.2rem 0.1rem;
}

.post-card-caption h3 {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.35;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card p {
  font-size: 1.02rem;
  color: var(--color-ink);
}

.testimonial-card span {
  color: var(--color-muted);
}

.testimonial-rating {
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #f4b740;
}

.testimonial-meta {
  margin-top: 1.1rem;
}

.mission-card,
.value-card {
  min-height: 100%;
}

.value-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.8));
}

.cta-section {
  padding-top: 0;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: 0 24px 50px rgba(8, 39, 94, 0.24);
}

.cta-banner h2,
.cta-banner p,
.cta-banner .eyebrow {
  color: var(--color-white);
}

/* Contact */
.form-card,
.contact-info-card {
  min-height: 100%;
}

.contact-form {
  margin-top: 1.5rem;
}

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

.field {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 600;
  color: var(--color-ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(13, 59, 142, 0.16);
  border-radius: 18px;
  background: rgba(245, 249, 255, 0.8);
  color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(29, 185, 84, 0.6);
  background: var(--color-white);
  box-shadow: 0 0 0 5px rgba(29, 185, 84, 0.12);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(13, 59, 142, 0.7) 50%),
    linear-gradient(135deg, rgba(13, 59, 142, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) calc(50% - 0.15rem),
    calc(100% - 0.8rem) calc(50% - 0.15rem);
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

html[dir="rtl"] .field select {
  background-position:
    1.2rem calc(50% - 0.15rem),
    1.6rem calc(50% - 0.15rem);
  padding-right: 1rem;
  padding-left: 3rem;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.form-feedback {
  min-height: 1.6rem;
  margin: 0.9rem 0 0;
  color: var(--color-accent-dark);
  font-weight: 600;
}

.guest-order-note {
  margin: 1rem 0 1.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(29, 185, 84, 0.24);
  border-radius: 18px;
  color: var(--color-accent-dark);
  background: rgba(29, 185, 84, 0.09);
  font-weight: 600;
}

.selected-service-chip {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.2rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 59, 142, 0.14);
  background: rgba(13, 59, 142, 0.08);
  color: var(--color-primary);
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-list article,
.contact-panel {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(245, 249, 255, 0.82);
  border: 1px solid var(--color-border);
}

.contact-list h3,
.contact-panel h3 {
  margin-bottom: 0.4rem;
}

.map-card {
  overflow: hidden;
  padding: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-caption {
  padding: 1.5rem;
}

.alert {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
}

.alert-success {
  color: var(--color-accent-dark);
  background: rgba(29, 185, 84, 0.12);
  border-color: rgba(29, 185, 84, 0.28);
}

.alert-error {
  color: #a02929;
  background: rgba(206, 59, 59, 0.1);
  border-color: rgba(206, 59, 59, 0.22);
}

.section-empty {
  width: 100%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.social-links a {
  display: inline-flex;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(13, 59, 142, 0.96), rgba(8, 39, 94, 1));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
  gap: 1.5rem;
  padding-bottom: 1.6rem;
}

.site-footer h3,
.site-footer strong,
.site-footer .brand-text small {
  color: var(--color-white);
}

.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-white);
}

.footer-bottom {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), #25d366);
  box-shadow: 0 18px 32px rgba(29, 185, 84, 0.34);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .four-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .before-after-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-preview-head {
    flex-direction: column;
    align-items: stretch;
  }

  .services-carousel-toolbar {
    justify-content: space-between;
  }

  .services-carousel-track {
    grid-auto-columns: calc((100% - 1.5rem) / 2);
  }

  .posts-carousel::before,
  .posts-carousel::after {
    width: 48px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
  }

  .lang-switcher {
    margin-left: auto;
  }

  html[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: auto;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.35rem);
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(8, 39, 94, 0.18);
    border: 1px solid rgba(13, 59, 142, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 0.8rem 0.2rem;
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 0.4rem;
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero-section,
  .page-hero,
  .section {
    padding-top: 3.4rem;
    padding-bottom: 4.3rem;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
  }

  .comparison-grid,
  .two-columns,
  .form-row,
  .steps-grid,
  .panel-stats {
    grid-template-columns: 1fr;
  }

  .posts-carousel-track {
    grid-auto-columns: calc((100% - 1rem) / 2);
    gap: 1rem;
  }

  .post-card {
    padding: 0.85rem;
    border-radius: 28px;
  }

  .post-card-media {
    border-radius: 22px;
  }

  .why-reason-grid,
  .why-contact-band {
    grid-template-columns: 1fr;
  }

  .comparison-slider {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .lang-switcher {
    gap: 0.3rem;
  }

  .lang-link {
    min-width: 38px;
    min-height: 38px;
    padding: 0.35rem 0.55rem;
  }

  .brand-text small {
    display: none;
  }

  .services-carousel-toolbar {
    flex-wrap: wrap;
  }

  .services-carousel-counter {
    min-height: 46px;
    padding: 0.7rem 0.95rem;
  }

  .services-carousel-actions {
    width: 100%;
    justify-content: space-between;
  }

  .services-carousel-button {
    width: 48px;
    height: 48px;
  }

  .services-carousel::before,
  .services-carousel::after {
    width: 36px;
  }

  .services-carousel-track {
    grid-auto-columns: 100%;
  }

  .posts-carousel::before,
  .posts-carousel::after {
    width: 24px;
  }

  .posts-carousel-track {
    grid-auto-columns: 100%;
    gap: 0.9rem;
  }

  .post-card {
    border-radius: 24px;
    padding: 0.75rem;
  }

  .post-card-media {
    border-radius: 20px;
    padding: 0.4rem;
  }

  .post-card img {
    border-radius: 18px;
  }

  .post-card-caption h3 {
    font-size: 0.96rem;
  }

  .metrics-grid,
  .four-columns,
  .three-columns,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .why-shell {
    gap: 1.6rem;
  }

  .why-reason-card,
  .why-contact-band {
    padding: 1.25rem;
    border-radius: 24px;
  }

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

  .why-reason-index {
    min-width: 52px;
    min-height: 34px;
    margin-bottom: 0.95rem;
  }

  .why-band-copy h3 {
    font-size: 1.35rem;
  }

  .why-band-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .transformation-card {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .transformation-card-header {
    flex-direction: column;
  }

  .transformation-status {
    white-space: normal;
  }

  .comparison-slider {
    min-height: 280px;
    border-radius: 22px;
  }

  .comparison-badge {
    top: 0.85rem;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
  }

  .comparison-badge-before {
    left: 0.85rem;
  }

  .comparison-badge-after {
    right: 0.85rem;
  }

  .comparison-handle {
    width: 60px;
    height: 60px;
  }

  .comparison-handle-grip {
    width: 38px;
    height: 38px;
  }

  .comparison-handle-grip::before {
    left: 9px;
  }

  .comparison-handle-grip::after {
    right: 9px;
  }

  .comparison-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .info-card,
  .service-card,
  .mission-card,
  .value-card,
  .testimonial-card,
  .step-card,
  .form-card,
  .contact-info-card,
  .comparison-card {
    padding: 1.35rem;
  }

  .service-card {
    padding: 0;
  }

  .service-media {
    padding: 0.85rem 0.85rem 0;
  }

  .service-media::after {
    inset: 0.85rem 0.85rem 0;
  }

  .service-card-body {
    padding: 1rem 1.1rem 1.2rem;
  }

  .service-card.has-media .service-card-meta {
    margin-top: -1.9rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem;
  }

  .whatsapp-float span {
    display: none;
  }
}
