:root {
  --bg: #07131a;
  --bg-soft: #10202b;
  --panel: rgba(12, 27, 38, 0.82);
  --panel-strong: rgba(10, 23, 32, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f9f1e5;
  --muted: #bdd0da;
  --accent: #ff7c24;
  --accent-strong: #ff9d45;
  --accent-cool: #4cd4ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --shadow-lux:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-lux-hover:
    0 46px 110px rgba(0, 0, 0, 0.42),
    0 18px 48px rgba(255, 124, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
  --font-latin: "Sora", sans-serif;
  --font-arabic: "Cairo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-latin);
  background:
    radial-gradient(circle at top left, rgba(255, 124, 36, 0.22), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(76, 212, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #07131a 0%, #081720 38%, #0b1b25 100%);
}

html[dir="rtl"] body {
  font-family: var(--font-arabic);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -10rem;
  right: -9rem;
  background: rgba(255, 124, 36, 0.16);
}

body::after {
  bottom: -12rem;
  left: -8rem;
  background: rgba(76, 212, 255, 0.12);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
  perspective: 2200px;
  perspective-origin: center top;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  transform-style: preserve-3d;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(8, 19, 28, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lux);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.15), transparent 32%),
    linear-gradient(120deg, rgba(76, 212, 255, 0.08), transparent 38%, rgba(255, 124, 36, 0.08));
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 58px;
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
  font-weight: 700;
}

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

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

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

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-choice {
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.lang-choice.is-active {
  color: #10161d;
  background: linear-gradient(135deg, var(--accent-cool), #d8f8ff);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  gap: 22px;
  align-items: start;
  padding: 18px 0 12px;
}

.hero-copy,
.hero-panel,
.highlight-card,
.service-card,
.pricing-card,
.process-card,
.contact-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-lux);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
}

.hero-copy::before,
.hero-panel::before,
.highlight-card::before,
.service-card::before,
.pricing-card::before,
.process-card::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%, transparent 72%, rgba(76, 212, 255, 0.08)),
    radial-gradient(circle at 100% 100%, rgba(255, 124, 36, 0.12), transparent 36%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy::after,
.hero-panel::after,
.highlight-card::after,
.service-card::after,
.pricing-card::after,
.process-card::after,
.contact-section::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -34px;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(2, 8, 12, 0.56), transparent 72%);
  filter: blur(20px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

.hero-copy > *,
.hero-panel > *,
.highlight-card > *,
.service-card > *,
.pricing-card > *,
.process-card > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--accent-cool);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .section-kicker,
html[dir="rtl"] .panel-label {
  letter-spacing: 0;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .contact-copy h2,
html[dir="rtl"] .panel-card h2 {
  max-width: none;
  line-height: 1.12;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  max-width: 10ch;
  line-height: 1.08;
  font-size: clamp(1.7rem, 3.2vw, 3.25rem);
  font-weight: 800;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-text,
.section-heading p:last-child,
.service-card p,
.process-card p,
.highlight-card p:last-child,
.contact-copy p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 34ch;
  margin: 18px 0 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.location-chip,
.location-note,
.hero-media-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.84rem;
}

.location-chip {
  color: #0a1720;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #ffd39b);
}

.location-note,
.hero-media-badge {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.mini-contact:hover,
.contact-box:hover,
.floating-call:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #10161d;
  background: linear-gradient(135deg, var(--accent) 0%, #ffcb8f 100%);
  box-shadow: 0 18px 34px rgba(255, 124, 36, 0.22);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.96rem;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-cool), #d7fbff);
  box-shadow: 0 0 0 5px rgba(76, 212, 255, 0.08);
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.hero-panel::before {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 44%, rgba(76, 212, 255, 0.08)),
    radial-gradient(circle at 100% 100%, rgba(255, 124, 36, 0.18), transparent 30%);
}

.panel-card {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) - 8px);
  transform-style: preserve-3d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 60px rgba(0, 0, 0, 0.26);
}

.panel-card > * {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  aspect-ratio: 16 / 11;
  min-height: 430px;
  transform: translateZ(34px);
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 64px rgba(0, 0, 0, 0.3),
    0 10px 26px rgba(76, 212, 255, 0.08);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 30%, transparent 72%, rgba(255, 124, 36, 0.14)),
    radial-gradient(circle at top left, rgba(76, 212, 255, 0.12), transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 26, 0.9) 100%);
  pointer-events: none;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  transform: scale(1.03) translateZ(20px);
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.34));
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.hero-media-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  transform: translateZ(30px);
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.2);
}

html[dir="rtl"] .hero-media-badge {
  left: 16px;
  right: 16px;
}

.panel-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.18);
}

.mini-contact-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.mini-contact,
.contact-box {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mini-contact span,
.contact-box span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

html[dir="rtl"] .mini-contact span,
html[dir="rtl"] .contact-box span {
  letter-spacing: 0;
}

.mini-contact strong,
.contact-box strong {
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.highlights,
.services-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.highlight-card,
.service-card,
.pricing-card,
.process-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.highlight-index {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.highlight-card h3,
.service-card h3,
.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.section {
  padding-top: 78px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  scroll-margin-top: 120px;
}

.process-grid,
.pricing-grid {
  scroll-margin-top: 120px;
}

.services-section .section-heading,
.pricing-section .section-heading,
.process-section .section-heading {
  gap: 6px;
  margin-bottom: 14px;
}

.services-section .section-heading h2,
.pricing-section .section-heading h2,
.process-section .section-heading h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  line-height: 1.12;
}

.services-section .section-heading h2 {
  max-width: 18ch;
}

.pricing-section .section-heading h2 {
  max-width: none;
}

.process-section .section-heading h2 {
  max-width: 22ch;
}

.pricing-section .section-heading p:last-child {
  max-width: 64ch;
  font-size: 0.96rem;
}

.service-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--panel-strong);
}

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

.pricing-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--panel-strong);
  box-shadow: var(--shadow-lux);
  backdrop-filter: blur(18px);
}

.pricing-card-head {
  display: grid;
  gap: 10px;
}

.pricing-card-head h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.pricing-tag {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[dir="rtl"] .pricing-tag {
  letter-spacing: 0;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 24px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.price-row span {
  color: var(--muted);
  line-height: 1.6;
}

.price-row strong {
  color: var(--text);
  font-size: 1rem;
  white-space: nowrap;
}

html[dir="rtl"] .price-row {
  grid-template-columns: auto minmax(0, 1fr);
}

html[dir="rtl"] .price-row span {
  order: 2;
}

html[dir="rtl"] .price-row strong {
  order: 1;
}

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

.process-card {
  position: relative;
  padding-top: 76px;
}

.process-step {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #10161d;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cool), #d6fbff);
  box-shadow:
    0 16px 28px rgba(76, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

html[dir="rtl"] .process-step {
  left: auto;
  right: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 20px;
  align-items: center;
  margin-top: 78px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--panel);
}

.contact-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.contact-copy p:last-child {
  margin-top: 18px;
  max-width: 62ch;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 34px 0 16px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.footer-inline-button {
  padding: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.footer-inline-button:hover,
.footer-credit-link:hover {
  color: var(--text);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.18);
}

.footer-credit-link {
  color: var(--accent-cool);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  color: #10161d;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd08d 100%);
  box-shadow:
    0 22px 38px rgba(255, 124, 36, 0.25),
    0 8px 16px rgba(0, 0, 0, 0.18);
}

.cookie-panel-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-panel-toggle:not(:checked) + .cookies-banner {
  display: none;
}

.cookies-banner {
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
  margin: 18px auto 0;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  text-align: start;
  background: rgba(6, 18, 26, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lux);
}

.cookies-banner p {
  text-align: start;
}

.cookies-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cookies-copy {
  display: grid;
  gap: 8px;
}

.cookies-title {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.cookies-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cookies-actions,
.cookies-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.button-ghost {
  border: 1px solid var(--line-strong);
  background: transparent;
}

.cookies-details {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 24px rgba(0, 0, 0, 0.14);
}

.cookie-option-copy {
  display: grid;
  gap: 6px;
}

.cookie-option-copy strong {
  font-size: 1rem;
}

.cookie-option-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.cookie-pill.is-active {
  color: #0a1720;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cool), #d7fbff);
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch-ui {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background 180ms ease;
}

.cookie-switch-ui::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff3e3;
  transition: transform 180ms ease;
}

.cookie-switch input:checked + .cookie-switch-ui {
  background: linear-gradient(135deg, var(--accent), #ffd08d);
}

.cookie-switch input:checked + .cookie-switch-ui::after {
  transform: translateX(24px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) translateZ(0);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (hover: hover) and (pointer: fine) {
  .site-header:hover {
    transform: translateY(-4px) rotateX(5deg);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-lux-hover);
  }

  .hero-copy:hover,
  .hero-panel:hover,
  .contact-section:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-lux-hover);
  }

  .hero-copy:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(4deg);
  }

  .hero-panel:hover {
    transform: translateY(-12px) rotateX(4deg) rotateY(-6deg);
  }

  .contact-section:hover {
    transform: translateY(-10px) rotateX(4deg);
  }

  .highlight-card:hover,
  .service-card:hover,
  .pricing-card:hover,
  .process-card:hover {
    transform: translateY(-10px) rotateX(7deg) rotateY(-6deg);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-lux-hover);
  }

  .highlights > :nth-child(even):hover,
  .services-grid > :nth-child(even):hover,
  .pricing-grid > :nth-child(even):hover,
  .process-grid > :nth-child(even):hover {
    transform: translateY(-10px) rotateX(7deg) rotateY(6deg);
  }

  .hero-panel:hover .hero-media img {
    transform: scale(1.08) translateZ(26px);
    filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.38));
  }

  .mini-contact:hover,
  .contact-box:hover,
  .price-row:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 20px 32px rgba(0, 0, 0, 0.2);
  }

  .price-row:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 30px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .cookies-main,
  .cookie-option,
  .contact-section,
  .highlights,
  .services-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding-top: 24px;
  }

  .process-step {
    position: static;
    display: grid;
    width: 38px;
    margin: 0 auto 14px 0;
  }

  html[dir="rtl"] .process-step {
    left: auto;
    right: auto;
    margin: 0 0 14px auto;
  }

  .hero h1,
  .section-heading h2,
  .contact-copy h2 {
    max-width: none;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
    min-height: 320px;
  }

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

  .cookies-actions,
  .cookies-detail-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 12px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px;
  }

  .brand {
    width: 100%;
  }

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

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

  .hero-copy,
  .hero-panel,
  .highlight-card,
  .service-card,
  .pricing-card,
  .process-card,
  .contact-section {
    padding: 22px;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-actions,
  .button,
  .cookies-actions,
  .cookies-detail-actions {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .cookies-banner {
    padding: 14px;
    border-radius: 20px;
  }

  .cookie-option {
    padding: 14px;
  }

  .floating-call {
    left: 12px;
    right: 12px;
    min-width: 0;
  }
}

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

  .reveal,
  .button,
  .hero-copy,
  .hero-panel,
  .highlight-card,
  .service-card,
  .pricing-card,
  .process-card,
  .contact-section,
  .mini-contact,
  .contact-box,
  .hero-media img,
  .floating-call,
  .lang-choice,
  .price-row {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
