:root {
  --ink: #040c1a;
  --ink-soft: #0b1a2e;
  --muted: #4e6580;
  --blue: #007aff;
  --blue-dark: #0056b3;
  --orange: #ff9500;
  --orange-dark: #e08500;
  --sky: #f2f8ff;
  --page: #f4f6fc;
  --surface: rgba(255, 255, 255, 0.44);
  --surface-strong: rgba(255, 255, 255, 0.58);
  --surface-solid: #ffffff;
  --line: rgba(0, 122, 255, 0.12);
  --line-strong: rgba(0, 122, 255, 0.2);
  --shadow-sm: 0 10px 24px rgba(4, 12, 26, 0.06);
  --shadow-lg: 0 24px 72px rgba(4, 12, 26, 0.12);
  --radius-sm: 12px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  background: var(--page);
}

body.is-ar {
  font-family: Cairo, Tahoma, Arial, sans-serif;
}

body.is-ar .eyebrow,
body.is-ar .form-badge {
  letter-spacing: 0;
}

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

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

button,
input {
  font: inherit;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #eef5fb;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.page-loader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.page-loader-inner img {
  width: min(320px, 72vw);
  height: auto;
}

.loader-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(10, 132, 255, 0.18);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 8px max(14px, calc((100% - var(--container)) / 2));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(248, 251, 255, 0.38);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: unset;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.brand-mark img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--blue-dark);
  background: rgba(10, 132, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 128px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(242, 246, 251, 0.7);
}

.lang-btn {
  min-width: 38px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

.lang-btn.active {
  color: white;
  background: var(--orange);
  box-shadow: 0 5px 14px rgba(255, 149, 0, 0.24);
}

.small-cta,
.primary-btn,
.secondary-btn,
.mobile-form-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
}

.small-cta {
  min-height: 44px;
  color: white;
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(255, 149, 0, 0.18);
}

.primary-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(255, 149, 0, 0.24);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
}

.hero {
  position: relative;
  overflow: hidden;
  background-image: url("https://images.pexels.com/photos/8363576/pexels-photo-8363576.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 35, 0.45);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  padding: 132px 0 46px;
  color: white;
}

.hero-copy-block {
  display: grid;
  align-content: center;
}

.hero-logo {
  width: min(320px, 68vw);
  height: auto;
  margin-bottom: 18px;
}

.eyebrow,
.form-badge {
  margin: 0 0 12px;
  color: rgb(0, 122, 255);;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(680px, 100%);
  margin: 0;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 24px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
}

.lead-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
}

.form-heading {
  padding: 2px 2px 4px;
}

.form-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.form-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(10, 132, 255, 0.12);
}

.field-control,
.program-control {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.field-control input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  outline: 0;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.field-control input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.14);
}

.program-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.program-picker label {
  position: relative;
  display: block;
}

.program-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.program-picker span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--blue-dark);
  background: white;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: all 0.22s ease-in-out;
  box-shadow: var(--shadow-sm);
}

.program-picker label:hover span {
  border-color: var(--blue);
  background: rgba(10, 132, 255, 0.02);
  transform: translateY(-1px);
}

.program-picker input:checked + span {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(10, 132, 255, 0.28);
}

.program-picker input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.24);
}

.form-btn {
  width: 100%;
  min-height: 56px;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.form-btn:disabled {
  cursor: wait;
  opacity: 0.78;
}

.lead-card.is-submitting {
  pointer-events: none;
}

.form-status {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.form-status.is-loading {
  color: var(--blue-dark);
  background: rgba(10, 132, 255, 0.1);
}

.form-status.is-success {
  color: #0e5f2f;
  background: rgba(25, 135, 84, 0.14);
}

.form-status.is-error {
  color: #9f2d2d;
  background: rgba(220, 53, 69, 0.12);
}

.direct-whatsapp {
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(10, 132, 255, 0.16);
  border-radius: var(--radius-sm);
  color: var(--blue-dark);
  background: rgba(10, 132, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.proof-band,
.section,
.method-section,
.video-section,
.reviews-section,
.contact-section,
.site-footer {
  width: 100%;
  margin-inline: 0;
  padding-left: max(14px, calc((100% - var(--container)) / 2)) !important;
  padding-right: max(14px, calc((100% - var(--container)) / 2)) !important;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.proof-item {
  display: grid;
  gap: 3px;
  padding: 20px 16px;
  border-inline-end: 1px solid var(--line);
  text-align: center;
}

.proof-item:last-child {
  border-inline-end: 0;
}

.proof-item strong {
  color: var(--blue-dark);
  font-size: 2.25rem;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.section {
  padding-top: 86px;
  padding-bottom: 86px;
  border-radius: 0;
}

.section:nth-of-type(odd),
.method-section,
.contact-section {
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.section:nth-of-type(even),
.video-section {
  background: rgba(10, 132, 255, 0.03);
  border-top: 1px solid rgba(10, 132, 255, 0.08);
  border-bottom: 1px solid rgba(10, 132, 255, 0.08);
}

.section-intro {
  max-width: 680px;
}

.centered {
  margin: 0 auto 30px;
  text-align: center;
}

.section-intro h2,
.contact-copy h2,
.method-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-intro p:not(.eyebrow),
.contact-copy p,
.method-copy p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps-grid,
.video-grid,
.faq-list {
  border-radius: var(--radius-lg);
}

.program-card,
.step-card,
.video-tile,
.faq-list details,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.38) !important;
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover,
.step-card:hover,
.video-tile:hover,
.faq-list details:hover,
.contact-panel:hover {
  background-color: rgba(255, 255, 255, 0.52) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.02);
}

.program-card:active,
.step-card:active,
.video-tile:active,
.primary-btn:active,
.secondary-btn:active,
.small-cta:active,
.lang-btn:active,
.faq-list details:active {
  transform: scale(0.96) !important;
  transition: transform 0.08s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.program-card {
  overflow: hidden;
}

.program-card.featured {
  border-color: rgba(10, 132, 255, 0.26);
  box-shadow: 0 18px 44px rgba(10, 132, 255, 0.12);
}

.program-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.program-card-body {
  padding: 16px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(10, 132, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
}

.program-card h3,
.step-card h3,
.video-tile h3,
.contact-panel h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.16;
}

.program-card p,
.step-card p,
.contact-panel p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.program-card small {
  display: block;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: center;
  padding-top: 82px;
  border-radius: var(--radius-lg);
}

.method-media {
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.method-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.method-copy {
  padding: 28px;
}

.method-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}

.method-list li {
  display: grid;
  gap: 3px;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(228, 228, 228, 0.52);
}

.method-list strong {
  color: var(--blue-dark);
}

.method-list span {
  color: var(--muted);
  font-weight: 650;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  padding: 20px;
}

.step-card span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.video-tile {
  display: grid;
  min-height: 100%;
  padding: 0;
  color: inherit;
  overflow: hidden;
  text-decoration: none;
}

.video-tile {
  background: rgba(255, 255, 255, 0.38) !important;
}

.video-card-media {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
}

.video-card-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.play-shape {
  position: absolute;
  inset: 18px auto auto 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scaleX(0.72);
}

.video-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.video-tile h3 {
  color: var(--ink);
}

.video-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

/* Gallery Section Styles */
.gallery-section {
  padding-top: 82px;
  padding-bottom: 82px;
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 16px;
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.reviews-section {
  padding-top: 86px;
  padding-bottom: 86px;
  background: rgba(10, 132, 255, 0.03);
  border-top: 1px solid rgba(10, 132, 255, 0.08);
  border-bottom: 1px solid rgba(10, 132, 255, 0.08);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(10, 132, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-sm);
}

.reviews-score {
  display: grid;
  gap: 4px;
}

.reviews-score strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.reviews-score span {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.reviews-meta {
  display: grid;
  gap: 4px;
  text-align: right;
}

.reviews-meta span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.reviews-meta strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 10px 24px rgba(10, 132, 255, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 132, 255, 0.08);
}

.review-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 0.82rem;
  font-weight: 900;
}

.review-top h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.review-top span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  max-width: 860px;
  gap: 10px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  min-height: 36px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  align-items: center;
  padding: 86px 0 72px;
  border-radius: var(--radius-lg);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(10, 132, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.contact-link span:last-of-type {
  grid-column: 2;
  font-weight: 900;
  line-height: 1.2;
}

.contact-link small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 20px rgba(10, 132, 255, 0.18);
}

.contact-icon svg,
.contact-panel-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-link[href^="mailto"] .contact-icon {
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(255, 149, 0, 0.18);
}

.contact-link[href*="maps.google"] .contact-icon {
  background: var(--blue-dark);
}

.contact-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.contact-panel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 149, 0, 0.2);
}

.contact-panel-head h3 {
  margin-bottom: 6px;
}

.contact-panel-head p {
  margin: 0;
}

.contact-panel {
  padding: 24px;
}

.contact-panel .full-btn {
  margin-top: 20px;
}

.full-btn {
  width: 100%;
  margin-top: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: white;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 149, 0, 0.24);
  font-weight: 900;
}

.mobile-action-bar {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}



[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 18px;
}

[dir="rtl"] .hero-overlay {
  background: rgba(8, 20, 35, 0.45);
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lead-card {
    max-width: 620px;
  }

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

  .method-section,
  .video-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  .site-header {
    top: 0;
    grid-template-columns: auto auto;
    width: 100%;
    min-height: 64px;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark img {
    height: 44px;
    width: auto;
  }

  .nav-links,
  .small-cta {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .language-switcher {
    min-width: 122px;
  }

  .hero {
    margin-top: -66px;
  }

  .hero-inner {
    width: calc(100% - 20px);
    padding: 94px 0 18px;
  }

  .hero h1 {
    font-size: 2.28rem;
    line-height: 1.04;
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: none;
  }

  .trust-row {
    gap: 12px;
    margin-top: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-item {
    font-size: 0.88rem;
    gap: 6px;
  }

  .trust-icon {
    width: 16px;
    height: 16px;
  }

  .lead-card {
    gap: 10px;
    padding: 12px;
  }

  .form-heading h2 {
    font-size: 1.2rem;
  }

  .form-heading p {
    margin-top: 5px;
    font-size: 0.84rem;
  }

  .form-badge {
    margin-bottom: 7px;
  }

  .field-control input,
  .form-btn {
    min-height: 50px;
  }

  .field-control,
  .program-control {
    gap: 6px;
    font-size: 0.86rem;
  }

  .program-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: unset;
    overflow-x: visible;
    gap: 8px;
    padding: 0;
  }

  .program-picker span {
    min-height: 48px;
    min-width: unset;
    font-size: 0.86rem;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  [dir="rtl"] .program-picker span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
  }

  .proof-item {
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(2n) {
    border-inline-end: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-item strong {
    font-size: 1.75rem;
  }

  .proof-item span {
    font-size: 0.78rem;
  }

  .section {
    padding-top: 54px;
  }

  .section-intro h2,
  .contact-copy h2,
  .method-copy h2 {
    font-size: 2rem;
  }

  .section-intro p:not(.eyebrow),
  .contact-copy p,
  .method-copy p {
    font-size: 0.98rem;
  }

  .program-grid,
  .steps-grid,
  .video-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .program-card img {
    height: 190px;
  }

  .method-section,
  .video-section {
    padding-top: 58px;
  }

  .reviews-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .method-media,
  .method-media img {
    min-height: 320px;
  }

  .method-copy,
  .contact-panel {
    padding: 18px;
  }

  .contact-section {
    padding: 64px 0;
  }

  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-meta {
    text-align: left;
  }

  .contact-link {
    padding: 13px 14px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius-sm);
    background: rgba(248, 251, 255, 0.52);
    box-shadow: 0 18px 46px rgba(20, 42, 69, 0.22);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
  }

  .mobile-form-link {
    min-height: 52px;
    padding: 0 10px;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    background: var(--orange);
  }

  .site-footer {
    display: grid;
    padding-bottom: 20px;
  }
}

@media (max-width: 390px) {
  .brand span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .language-switcher {
    min-width: 112px;
  }

  .lang-btn {
    min-width: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .loader-spinner {
    animation: none;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
