:root {
  --navy-950: #07101f;
  --navy-900: #0d1728;
  --navy-850: #111d31;
  --navy-800: #16243a;
  --navy-700: #253754;
  --orange-600: #ed7514;
  --orange-500: #ff8a1c;
  --orange-400: #ffa33f;
  --gold-400: #ffc746;
  --green-500: #16a36a;
  --green-100: #e8f8f1;
  --sky-100: #eef6ff;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --surface-warm: #fff8f1;
  --text: #172235;
  --muted: #667085;
  --border: #e3e8ef;
  --shadow-sm: 0 8px 24px rgba(13, 23, 40, 0.07);
  --shadow-md: 0 18px 45px rgba(13, 23, 40, 0.12);
  --shadow-lg: 0 30px 80px rgba(7, 16, 31, 0.22);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Noto Kufi Arabic", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, p { margin-top: 0; }

::selection { background: var(--orange-500); color: #fff; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -100px;
  right: 16px;
  padding: 10px 16px;
  background: #fff;
  color: var(--navy-900);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.skip-link:focus { top: 16px; }

.topbar { background: var(--navy-950); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar__links { display: flex; align-items: center; gap: 10px; direction: ltr; }
.topbar a:hover { color: var(--orange-400); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 232, 239, .8);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: 0 10px 40px rgba(13,23,40,.08); background: rgba(255,255,255,.97); }
.header__inner { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 50px; height: 50px; border-radius: 12px; object-fit: cover; }
.brand span { display: flex; flex-direction: column; line-height: 1.25; }
.brand strong { color: var(--navy-900); font-size: 18px; }
.brand small { color: var(--orange-600); font-size: 12px; letter-spacing: .04em; }
.main-nav { margin-inline: auto; display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 9px 10px; color: #3d4b61; font-size: 14px; font-weight: 700; border-radius: 10px; transition: var(--transition); white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--orange-600); background: var(--surface-warm); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 12px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 20px; height: 2px; background: var(--navy-900); border-radius: 999px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.25;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); box-shadow: 0 12px 30px rgba(237,117,20,.25); }
.btn--primary:hover { box-shadow: 0 16px 38px rgba(237,117,20,.35); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.36); }
.btn--outline { color: var(--navy-900); border-color: var(--border); background: #fff; }
.btn--outline:hover { border-color: var(--orange-400); color: var(--orange-600); box-shadow: var(--shadow-sm); }
.btn--light { background: #fff; color: var(--navy-900); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.btn--large { min-height: 52px; padding-inline: 24px; }
.header__cta { font-size: 14px; }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,138,28,.18), transparent 27%),
    radial-gradient(circle at 12% 80%, rgba(63,102,158,.16), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #182742);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 64px; padding-block: 100px 120px; }
.hero__content { max-width: 660px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #dfe8f5; font-size: 14px; margin-bottom: 22px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-400); box-shadow: 0 0 0 6px rgba(255,138,28,.12); }
.hero h1 { font-size: clamp(38px, 5vw, 65px); line-height: 1.22; margin-bottom: 24px; letter-spacing: -.02em; }
.hero h1 span { color: var(--orange-400); font-size: .72em; }
.hero__content > p { max-width: 620px; font-size: 18px; color: #c8d3e4; line-height: 2; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 18px; color: #c8d3e4; font-size: 14px; }
.hero__trust span::first-letter { color: var(--orange-400); }
.hero__visual { display: flex; align-items: center; justify-content: center; }
.device-wrap { position: relative; width: min(100%, 500px); aspect-ratio: 1 / .95; display: grid; place-items: center; }
.device-wrap::before { content: ""; position: absolute; width: 82%; height: 82%; border-radius: 50%; background: radial-gradient(circle, rgba(255,138,28,.22), transparent 65%); filter: blur(10px); }
.device {
  position: relative;
  width: 74%;
  transform: perspective(1100px) rotateY(-10deg) rotateX(5deg) rotateZ(-2deg);
  padding: 11px;
  border-radius: 25px;
  background: linear-gradient(145deg, #34435b, #0c1424 58%, #43516a);
  box-shadow: 0 45px 90px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.18);
}
.device::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 19px; pointer-events: none; }
.device__camera { position: absolute; z-index: 3; width: 6px; height: 6px; top: 5px; left: 50%; border-radius: 50%; background: #020711; box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
.device__screen { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 17px; background: var(--navy-900); }
.device__screen img { width: 100%; height: 100%; object-fit: cover; }
.device__shine { position: absolute; inset: -30% 20% -30% 30%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; width: 190px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(14,25,43,.72); backdrop-filter: blur(14px); box-shadow: 0 18px 40px rgba(0,0,0,.25); }
.floating-card > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,138,28,.15); font-size: 21px; }
.floating-card div { display: flex; flex-direction: column; line-height: 1.45; }
.floating-card strong { font-size: 14px; }
.floating-card small { color: #aebdd2; font-size: 11px; }
.floating-card--top { top: 8%; right: -5%; animation: floatY 4.8s ease-in-out infinite; }
.floating-card--bottom { bottom: 6%; left: -7%; animation: floatY 5.4s ease-in-out infinite reverse; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18; }
.hero__glow--one { width: 350px; height: 350px; background: var(--orange-500); top: -180px; right: -100px; }
.hero__glow--two { width: 420px; height: 420px; background: #35639d; bottom: -260px; left: -120px; }
.hero__wave { position: absolute; z-index: 2; left: 0; right: 0; bottom: -1px; height: 70px; background: var(--surface); clip-path: polygon(0 58%, 10% 68%, 22% 54%, 35% 70%, 51% 52%, 67% 68%, 83% 48%, 100% 65%, 100% 100%, 0 100%); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.trust-note { background: var(--surface); padding: 22px 0; border-bottom: 1px solid var(--border); }
.trust-note__inner { display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px; border-radius: var(--radius-md); background: #fffaf4; border: 1px solid #ffe1bf; color: #604622; }
.trust-note__icon { font-size: 20px; }
.trust-note p { margin: 0; font-size: 14px; line-height: 1.8; }

.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; text-align: right; }
.section-heading h2, .about h2, .faq h2, .contact h2 { color: var(--navy-900); font-size: clamp(30px, 4vw, 46px); line-height: 1.35; margin-bottom: 14px; letter-spacing: -.02em; }
.section-heading p, .about__content > p, .faq__intro > p, .contact__info > p { color: var(--muted); font-size: 17px; margin-bottom: 0; }
.section-label { display: inline-block; margin-bottom: 10px; color: var(--orange-600); font-size: 14px; font-weight: 900; letter-spacing: .03em; }
.section-label--light { color: #ffd4ac; }

.about { background: var(--surface); }
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin: 26px 0 28px; }
.check-grid div { display: flex; align-items: center; gap: 9px; color: #344157; font-weight: 700; }
.check-grid span { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--green-500); background: var(--green-100); }
.text-link, .text-button { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-600); font-weight: 900; border: 0; padding: 0; background: transparent; }
.text-link span, .text-button span { transition: transform var(--transition); }
.text-link:hover span, .text-button:hover span { transform: translateX(-4px); }
.about__cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.metric-card { min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.metric-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #ffd8b4; }
.metric-card--accent { background: linear-gradient(145deg, var(--navy-900), var(--navy-800)); color: #fff; border-color: transparent; }
.metric-card__icon { font-size: 30px; margin-bottom: 8px; }
.metric-card strong { font-size: 38px; line-height: 1.25; color: var(--navy-900); }
.metric-card--accent strong { color: #fff; }
.metric-card small { color: var(--muted); font-size: 15px; }
.metric-card--accent small { color: #c6d1e1; }

.audience { background: var(--surface-soft); }
.audience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card { position: relative; overflow: hidden; padding: 30px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.audience-card::before { content: ""; position: absolute; width: 120px; height: 120px; top: -60px; left: -60px; border-radius: 50%; background: rgba(255,138,28,.08); }
.audience-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: #ffd8b4; }
.audience-card__icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 18px; background: var(--surface-warm); font-size: 30px; }
.audience-card h3 { font-size: 23px; margin-bottom: 10px; }
.audience-card p { color: var(--muted); margin-bottom: 18px; }
.audience-card a { color: var(--orange-600); font-weight: 900; }

.popular { background: #fff; }
.popular__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.popular-card { min-height: 170px; display: flex; flex-direction: column; align-items: flex-start; text-align: right; gap: 6px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; color: var(--text); transition: var(--transition); }
.popular-card:hover { transform: translateY(-5px); border-color: var(--orange-400); box-shadow: var(--shadow-md); background: var(--surface-warm); }
.popular-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--surface-soft); font-size: 24px; margin-bottom: 6px; }
.popular-card strong { font-size: 16px; }
.popular-card small { color: var(--muted); }

.services { background: linear-gradient(180deg, var(--surface-soft), #fff); }
.services-toolbar { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.search-box { position: relative; flex: 1; }
.search-box > span { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--orange-600); font-size: 24px; }
.search-box input { width: 100%; height: 58px; padding: 0 52px 0 50px; border: 1px solid var(--border); border-radius: 17px; background: #fff; color: var(--text); outline: none; box-shadow: var(--shadow-sm); transition: var(--transition); }
.search-box input:focus { border-color: var(--orange-400); box-shadow: 0 0 0 4px rgba(255,138,28,.12), var(--shadow-sm); }
.search-box button { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border: 0; border-radius: 50%; background: var(--surface-soft); color: var(--muted); font-size: 20px; }
.service-count { flex: 0 0 auto; padding: 13px 18px; border-radius: 14px; background: var(--navy-900); color: #fff; white-space: nowrap; }
.service-count strong { color: var(--orange-400); }
.category-chips { display: flex; gap: 9px; overflow-x: auto; padding: 4px 0 18px; scrollbar-width: thin; }
.category-chip { flex: 0 0 auto; padding: 9px 15px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: #49566a; font-size: 13px; font-weight: 800; transition: var(--transition); }
.category-chip:hover, .category-chip.active { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.services__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-category { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-category:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #ffd8b4; }
.service-category__head { display: flex; align-items: center; gap: 13px; padding: 20px 20px 16px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, #fffaf5, #fff); }
.service-category__icon { flex: 0 0 50px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: #fff0df; font-size: 25px; }
.service-category__title { flex: 1; min-width: 0; }
.service-category__title h3 { margin: 0 0 2px; font-size: 18px; }
.service-category__title small { color: var(--muted); }
.service-list { padding: 8px 14px 12px; }
.service-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; width: 100%; padding: 11px 8px; border: 0; border-bottom: 1px dashed #e9edf2; background: transparent; color: #344157; text-align: right; transition: color var(--transition), padding var(--transition), background var(--transition); }
.service-item:last-child { border-bottom: 0; }
.service-item:hover { color: var(--orange-600); background: var(--surface-warm); padding-right: 12px; }
.service-item span:first-child { flex: 1; }
.service-item .service-arrow { color: #a5afbd; transition: transform var(--transition); }
.service-item:hover .service-arrow { color: var(--orange-500); transform: translateX(-4px); }
.service-category__footer { margin-top: auto; padding: 12px 18px 17px; }
.show-more { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 9px 12px; background: var(--surface-soft); color: var(--navy-900); font-weight: 800; transition: var(--transition); }
.show-more:hover { color: var(--orange-600); border-color: var(--orange-400); background: var(--surface-warm); }
.match-highlight { color: var(--orange-600); background: #fff0dc; border-radius: 4px; padding-inline: 2px; }
.empty-state { padding: 70px 20px; text-align: center; }
.empty-state > span { display: block; font-size: 48px; margin-bottom: 10px; }
.empty-state h3 { font-size: 24px; margin-bottom: 6px; }
.empty-state p { color: var(--muted); margin-bottom: 22px; }

.featured { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.featured::before { content: ""; position: absolute; inset: 0; opacity: .16; background: radial-gradient(circle at 12% 15%, var(--orange-500), transparent 22%), radial-gradient(circle at 88% 85%, #335a90, transparent 24%); }
.featured .container { position: relative; z-index: 1; }
.featured .section-heading h2 { color: #fff; }
.featured .section-heading p { color: #b9c6d8; }
.featured__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,163,63,.6); background: rgba(255,255,255,.09); }
.feature-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 16px; background: rgba(255,138,28,.14); font-size: 29px; }
.feature-card h3 { font-size: 21px; margin-bottom: 11px; }
.feature-card p { color: #b9c6d8; margin-bottom: 22px; }
.feature-card .text-button { margin-top: auto; color: var(--orange-400); }

.process { background: #fff; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process-step { position: relative; min-height: 220px; padding: 28px 24px; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.process-step > span { display: block; color: rgba(255,138,28,.22); font-size: 52px; line-height: 1; font-weight: 900; margin-bottom: 22px; }
.process-step h3 { font-size: 20px; margin-bottom: 8px; }
.process-step p { color: var(--muted); margin-bottom: 0; }
.process-step:not(:last-child)::after { content: "←"; position: absolute; left: -18px; top: 50%; transform: translateY(-50%); z-index: 2; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-500); color: #fff; box-shadow: 0 8px 20px rgba(237,117,20,.25); }

.insights { background: var(--surface-soft); }
.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-card { min-height: 240px; padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.insight-card__tag { display: inline-block; margin-bottom: 18px; padding: 5px 10px; border-radius: 999px; background: var(--surface-warm); color: var(--orange-600); font-size: 12px; font-weight: 900; }
.insight-card h3 { font-size: 20px; line-height: 1.55; margin-bottom: 10px; }
.insight-card p { color: var(--muted); margin-bottom: 0; }

.faq { background: #fff; }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq__intro { position: sticky; top: 120px; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item { overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: #fff; transition: border-color var(--transition), box-shadow var(--transition); }
.accordion-item.open { border-color: #ffd3aa; box-shadow: var(--shadow-sm); }
.accordion-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border: 0; background: #fff; color: var(--navy-900); text-align: right; font-weight: 900; }
.accordion-button b { flex: 0 0 30px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-warm); color: var(--orange-600); font-size: 20px; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms ease; }
.accordion-panel > p { overflow: hidden; margin: 0; padding: 0 20px; color: var(--muted); }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.open .accordion-panel > p { padding-bottom: 20px; }

.cta-section { padding: 30px 0 0; background: #fff; }
.cta-section__inner { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 46px 50px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, var(--orange-600), var(--orange-500) 55%, #ff9f39); box-shadow: 0 24px 60px rgba(237,117,20,.26); }
.cta-section__inner::before, .cta-section__inner::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); }
.cta-section__inner::before { width: 250px; height: 250px; left: -90px; top: -120px; }
.cta-section__inner::after { width: 160px; height: 160px; left: 50px; bottom: -100px; }
.cta-section__inner > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 8px; }
.cta-section p { margin-bottom: 0; color: #fff2e4; }

.contact { background: linear-gradient(180deg, #fff, var(--surface-soft)); }
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-methods a { display: flex; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--border); border-radius: 16px; background: #fff; transition: var(--transition); }
.contact-methods a:hover { transform: translateX(-4px); border-color: var(--orange-400); box-shadow: var(--shadow-sm); }
.contact-methods a > span { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--surface-warm); font-size: 22px; }
.contact-methods div { min-width: 0; display: flex; flex-direction: column; }
.contact-methods small { color: var(--muted); }
.contact-methods strong { overflow-wrap: anywhere; }
.contact-form { padding: 32px; border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; color: #344157; font-size: 14px; font-weight: 800; margin-bottom: 15px; }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid var(--border); border-radius: 12px; color: var(--text); background: #fff; outline: none; transition: var(--transition); }
.contact-form input:not([type="checkbox"]), .contact-form select { height: 50px; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange-400); box-shadow: 0 0 0 4px rgba(255,138,28,.1); }
.contact-form .invalid { border-color: #d92d20 !important; box-shadow: 0 0 0 3px rgba(217,45,32,.08) !important; }
.field-error { display: block; min-height: 18px; color: #d92d20; font-size: 11px; font-weight: 700; margin-top: 3px; }
.consent { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 600 !important; color: var(--muted) !important; }
.consent input { margin-top: 7px; accent-color: var(--orange-500); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: 12px; }

.site-footer { color: #d5deea; background: var(--navy-950); padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 50px; padding-bottom: 50px; }
.brand--footer strong { color: #fff; }
.footer__brand > p { max-width: 360px; color: #9eacbf; margin: 18px 0; }
.site-footer h3 { color: #fff; font-size: 17px; margin-bottom: 18px; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a { color: #aebacd; font-size: 14px; transition: var(--transition); }
.site-footer li a:hover { color: var(--orange-400); padding-right: 4px; }
.footer-contact { direction: ltr; text-align: left; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; direction: ltr; justify-content: flex-end; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; color: #fff; font-weight: 900; transition: var(--transition); }
.social-links a:hover { background: var(--orange-500); border-color: var(--orange-500); transform: translateY(-3px); }
.footer__bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8f9eb3; font-size: 13px; }
.footer__bottom p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 900; bottom: 22px; right: 22px; display: flex; align-items: center; gap: 8px; padding: 11px 15px; border-radius: 999px; color: #fff; background: #19a968; box-shadow: 0 15px 35px rgba(25,169,104,.32); font-size: 14px; font-weight: 900; transition: var(--transition); }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(25,169,104,.42); }
.back-to-top { position: fixed; z-index: 899; bottom: 22px; left: 22px; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 13px; color: var(--navy-900); background: #fff; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.modal { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 18px; opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition); }
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3,10,21,.72); backdrop-filter: blur(5px); }
.modal__dialog { position: relative; z-index: 1; width: min(100%, 520px); max-height: min(90vh, 760px); overflow-y: auto; padding: 34px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.98); transition: transform var(--transition); }
.modal.open .modal__dialog { transform: translateY(0) scale(1); }
.modal__dialog--wide { width: min(100%, 760px); }
.modal__close { position: absolute; top: 14px; left: 14px; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 11px; background: #fff; color: var(--muted); font-size: 22px; }
.modal__icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 15px; border-radius: 18px; background: var(--surface-warm); font-size: 30px; }
.modal__label { color: var(--orange-600); font-size: 13px; font-weight: 900; }
.modal h2 { color: var(--navy-900); font-size: 28px; line-height: 1.45; margin: 6px 0; }
#serviceModalCategory { color: var(--muted); }
.modal__notice { padding: 16px; margin: 22px 0; border: 1px solid #ffe1bf; border-radius: 14px; background: #fffaf4; }
.modal__notice strong { color: #704a20; }
.modal__notice p { color: #725c42; margin: 4px 0 0; font-size: 13px; }
.policy-content { color: #455267; }
.policy-content h3 { color: var(--navy-900); margin: 24px 0 8px; }
.policy-content ul { list-style: disc; padding-right: 20px; }
.policy-content li { margin-bottom: 6px; }

.noscript { position: fixed; z-index: 9999; bottom: 0; left: 0; right: 0; padding: 12px; text-align: center; color: #fff; background: #b42318; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .main-nav a { padding-inline: 7px; font-size: 13px; }
  .header__cta { display: none; }
  .hero__grid { gap: 28px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .popular__grid { grid-template-columns: repeat(3, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .section { padding: 78px 0; }
  .topbar__inner { justify-content: center; }
  .topbar p { display: none; }
  .menu-toggle { display: flex; margin-right: auto; order: 2; }
  .brand { order: 1; }
  .main-nav { position: absolute; top: calc(100% + 8px); left: 16px; right: 16px; display: flex; flex-direction: column; align-items: stretch; gap: 3px; padding: 14px; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 11px 13px; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; padding-block: 80px 130px; }
  .hero__content { max-width: 760px; margin: 0 auto; }
  .hero__content > p { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { margin-top: 20px; }
  .device-wrap { max-width: 520px; }
  .about__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 42px; }
  .faq__intro { position: static; text-align: center; }
  .audience__grid, .featured__grid, .insights__grid { grid-template-columns: repeat(2, 1fr); }
  .popular__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section__inner { text-align: center; flex-direction: column; padding: 40px 30px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid > :last-child { grid-column: auto; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .topbar { display: none; }
  .header__inner { min-height: 68px; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 16px; }
  .hero h1 { font-size: 38px; }
  .hero h1 span { font-size: .65em; }
  .hero__content > p { font-size: 16px; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 6px; }
  .device { width: 82%; }
  .floating-card { width: 160px; padding: 10px; }
  .floating-card--top { right: 0; }
  .floating-card--bottom { left: 0; }
  .section-heading--split { align-items: stretch; flex-direction: column; text-align: center; }
  .section-heading--split .btn { align-self: center; }
  .about__cards, .audience__grid, .popular__grid, .services__grid, .featured__grid, .process__grid, .insights__grid, .form-row, .footer__grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .services-toolbar { align-items: stretch; flex-direction: column; }
  .service-count { text-align: center; }
  .contact-form { padding: 22px 16px; }
  .cta-section__inner { border-radius: 22px; }
  .footer__bottom { flex-direction: column; justify-content: center; text-align: center; padding: 18px 0; }
  .footer-contact { direction: rtl; text-align: right; }
  .social-links { direction: rtl; justify-content: flex-start; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { width: 52px; height: 52px; justify-content: center; padding: 0; }
  .modal__dialog { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Professional UI refresh: SVG icons, advanced search, and mobile polish ===== */
:root {
  --shadow-xs: 0 3px 12px rgba(13, 23, 40, 0.055);
  --shadow-search: 0 18px 55px rgba(7, 16, 31, 0.14);
  --focus-ring: 0 0 0 4px rgba(255, 138, 28, 0.14);
}

.ui-icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
}

button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, .category-chip, .service-item { touch-action: manipulation; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(255, 138, 28, .34);
  outline-offset: 3px;
}

.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust .ui-icon { width: 17px; height: 17px; color: var(--orange-400); }

.floating-card > span,
.trust-note__icon,
.metric-card__icon,
.audience-card__icon,
.popular-card > span,
.feature-card__icon,
.service-category__icon,
.modal__icon {
  color: var(--orange-600);
}

.floating-card > span .ui-icon { width: 22px; height: 22px; }
.trust-note__icon { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #fff; box-shadow: var(--shadow-xs); }
.trust-note__icon .ui-icon { width: 20px; height: 20px; }
.check-grid span .ui-icon { width: 15px; height: 15px; }
.metric-card__icon .ui-icon { width: 30px; height: 30px; }
.audience-card__icon .ui-icon { width: 31px; height: 31px; }
.popular-card > span .ui-icon { width: 25px; height: 25px; }
.feature-card__icon .ui-icon { width: 30px; height: 30px; }
.service-category__icon .ui-icon { width: 25px; height: 25px; }
.modal__icon .ui-icon { width: 31px; height: 31px; }

.popular-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.popular-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 90px;
  height: 90px;
  left: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(255, 138, 28, .07);
  transition: transform var(--transition);
}
.popular-card:hover::after { transform: scale(1.8); }

.services .section-heading { margin-bottom: 34px; }
.services-toolbar {
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 30;
  margin-bottom: 12px;
}

.search-panel { position: relative; flex: 1 1 auto; min-width: 0; }
.search-box {
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(213, 221, 231, .95);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 12px 35px rgba(13, 23, 40, .085);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.search-box:focus-within {
  border-color: var(--orange-400);
  box-shadow: var(--focus-ring), 0 20px 50px rgba(13, 23, 40, .12);
  transform: translateY(-1px);
}
.search-box > .search-box__icon {
  position: static;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 19px;
  transform: none;
  color: var(--orange-600);
  font-size: 24px;
}
.search-box__icon .ui-icon { width: 24px; height: 24px; }
.search-box input {
  flex: 1;
  min-width: 0;
  height: 62px;
  padding: 0 13px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  font-weight: 700;
}
.search-box input::placeholder { color: #98a2b3; font-weight: 600; }
.search-box input:focus { border: 0; box-shadow: none; }
.search-box input::-webkit-search-cancel-button { display: none; }
.search-shortcut {
  flex: 0 0 auto;
  min-width: 30px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-inline: 5px 3px;
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 8px;
  color: #7b8798;
  background: var(--surface-soft);
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
}
.search-box button {
  position: static;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: 11px;
  transform: none;
  border: 1px solid transparent;
  background: var(--surface-soft);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}
.search-box button:hover { color: #b42318; background: #fff1f0; border-color: #ffd5d2; transform: rotate(4deg); }
.search-box button .ui-icon { width: 18px; height: 18px; }

.search-status {
  min-height: 24px;
  margin: 7px 8px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.search-suggestions {
  position: absolute;
  z-index: 50;
  top: calc(100% - 19px);
  right: 0;
  left: 0;
  max-height: min(420px, 58vh);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .985);
  box-shadow: var(--shadow-search);
  backdrop-filter: blur(18px);
}
.search-suggestions[hidden] { display: none; }
.search-suggestion {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border: 0;
  border-radius: 13px;
  color: var(--text);
  background: transparent;
  text-align: right;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.search-suggestion:hover,
.search-suggestion.active { background: var(--surface-warm); color: var(--orange-600); }
.search-suggestion.active { transform: translateX(-2px); }
.search-suggestion__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--orange-600);
  background: #fff0df;
}
.search-suggestion__icon .ui-icon { width: 21px; height: 21px; }
.search-suggestion__text { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.45; }
.search-suggestion__text strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.search-suggestion__text small { color: var(--muted); font-size: 11px; }
.search-suggestion__arrow { width: 18px; height: 18px; color: #a8b1bf; }

.service-count {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 9px;
  padding: 9px 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(7, 16, 31, .15);
}
.service-count > .ui-icon { grid-row: 1 / 3; align-self: center; width: 22px; height: 22px; color: var(--orange-400); }
.service-count strong { align-self: end; font-size: 20px; line-height: 1.1; }
.service-count small { align-self: start; color: #c9d3e1; font-size: 10px; }

.category-chips {
  gap: 8px;
  padding: 5px 2px 20px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
}
.category-chips::-webkit-scrollbar { display: none; }
.category-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  scroll-snap-align: start;
  padding: 8px 13px;
  border-color: #dde3eb;
  box-shadow: 0 3px 10px rgba(13, 23, 40, .035);
}
.category-chip .category-chip__icon { width: 17px; height: 17px; color: var(--orange-600); }
.category-chip small { min-width: 22px; padding: 1px 6px; border-radius: 999px; background: var(--surface-soft); color: var(--muted); font-size: 10px; }
.category-chip:hover .category-chip__icon,
.category-chip.active .category-chip__icon { color: var(--orange-400); }
.category-chip.active small { background: rgba(255,255,255,.12); color: #fff; }

.service-category {
  border-radius: 24px;
  box-shadow: 0 9px 30px rgba(13, 23, 40, .065);
}
.service-category__head { min-height: 86px; }
.service-category__icon { box-shadow: inset 0 0 0 1px rgba(255, 138, 28, .1); }
.service-item { min-height: 48px; align-items: center; border-radius: 9px; }
.service-item .service-arrow { flex: 0 0 18px; width: 18px; height: 18px; }
.service-item:hover .service-arrow { transform: translateX(-4px); }

.empty-state {
  max-width: 620px;
  margin: 10px auto 0;
  padding: 62px 24px;
  border: 1px dashed #d9e0e9;
  border-radius: 26px;
  background: rgba(255,255,255,.72);
}
.empty-state > span { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 24px; color: var(--orange-600); background: var(--surface-warm); }
.empty-state > span .ui-icon { width: 36px; height: 36px; }
.empty-state__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.empty-state__actions .btn .ui-icon { width: 18px; height: 18px; }

.contact-methods a > span .ui-icon { width: 21px; height: 21px; }
.social-links a .ui-icon { width: 18px; height: 18px; }
.whatsapp-float span .ui-icon { width: 21px; height: 21px; }
.back-to-top .ui-icon { width: 20px; height: 20px; margin: auto; }

@media (hover: none) {
  .btn:hover, .popular-card:hover, .service-category:hover, .feature-card:hover, .audience-card:hover, .metric-card:hover, .insight-card:hover { transform: none; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
    padding: 10px;
    border-radius: 20px;
  }
  .main-nav a { min-height: 46px; display: flex; align-items: center; }
  .services-toolbar { position: sticky; top: 78px; }
  .search-suggestions { max-height: 48vh; }
}

@media (max-width: 650px) {
  body { line-height: 1.72; padding-bottom: env(safe-area-inset-bottom); }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .about h2, .faq h2, .contact h2 { font-size: clamp(27px, 8vw, 36px); }
  .site-header { backdrop-filter: blur(20px); }
  .header__inner { gap: 12px; }
  .menu-toggle { margin-right: auto; width: 46px; height: 46px; }
  .main-nav { top: 74px; }

  .hero__grid { padding-block: 60px 104px; gap: 16px; }
  .hero h1 { font-size: clamp(34px, 10vw, 43px); }
  .eyebrow { font-size: 12px; }
  .hero__actions { gap: 9px; }
  .hero__actions .btn { min-height: 54px; }
  .hero__visual { margin-top: 8px; }
  .device-wrap { max-width: 390px; }
  .floating-card { width: 148px; border-radius: 14px; }
  .floating-card strong { font-size: 12px; }
  .floating-card small { font-size: 10px; }

  .popular__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .popular-card { min-height: 154px; padding: 17px 14px; border-radius: 18px; }
  .popular-card > span { width: 44px; height: 44px; }
  .popular-card strong { font-size: 14px; line-height: 1.45; }
  .popular-card small { font-size: 11px; line-height: 1.55; }

  .services { overflow: visible; }
  .services-toolbar {
    top: 70px;
    margin-inline: -5px;
    padding: 7px 5px 4px;
    background: linear-gradient(180deg, rgba(247,249,252,.98) 78%, rgba(247,249,252,0));
    backdrop-filter: blur(12px);
  }
  .search-panel { width: 100%; }
  .search-box { min-height: 58px; border-radius: 17px; }
  .search-box input { height: 56px; font-size: 15px; padding-inline: 9px; }
  .search-box > .search-box__icon { margin-right: 15px; }
  .search-shortcut { display: none; }
  .search-box button { margin-left: 8px; }
  .search-status { display: none; }
  .search-suggestions { top: calc(100% + 5px); border-radius: 16px; }
  .service-count { display: none; }
  .category-chips { margin-inline: -11px; padding-inline: 11px; }
  .category-chip { min-height: 40px; padding: 7px 12px; }
  .services__grid { gap: 13px; }
  .service-category { border-radius: 19px; }
  .service-category__head { min-height: 76px; padding: 14px 15px 12px; }
  .service-category__icon { flex-basis: 45px; width: 45px; height: 45px; border-radius: 13px; }
  .service-category__title h3 { font-size: 16px; line-height: 1.45; }
  .service-list { padding: 5px 8px 9px; }
  .service-item { min-height: 51px; padding: 10px 8px; font-size: 13px; line-height: 1.6; }
  .service-item:hover { padding-right: 8px; }
  .show-more { min-height: 44px; }
  .empty-state { padding: 42px 14px; border-radius: 20px; }
  .empty-state__actions { flex-direction: column; }
  .empty-state__actions .btn { width: 100%; min-height: 50px; }

  .contact-methods a { min-height: 74px; padding: 14px; }
  .contact-methods a strong { overflow-wrap: anywhere; font-size: 13px; }
  .contact-form input:not([type="checkbox"]), .contact-form select { height: 54px; }
  .form-submit { min-height: 54px; }
  .modal { align-items: end; padding: 0; }
  .modal__dialog { width: 100%; max-height: 88dvh; padding: 30px 18px calc(24px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; }
  .modal__close { top: 12px; left: 12px; }
  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }
  .back-to-top { left: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 18px), var(--container)); }
  .brand small { display: none; }
  .hero h1 { font-size: 32px; }
  .popular__grid { grid-template-columns: 1fr; }
  .popular-card { min-height: 138px; }
  .floating-card { width: 136px; }
}

/* Small compatibility refinements */
.search-box input { width: auto; }
@media (max-width: 900px) {
  .main-nav { position: absolute; top: calc(100% + 8px); max-height: calc(100dvh - 110px); }
}
@media (max-width: 650px) {
  .main-nav { top: calc(100% + 6px); }
}
