:root {
  --bg: #fff7f8;
  --bg-2: #fff;
  --text: #121426;
  --muted: #667085;
  --surface: rgba(255, 255, 255, .82);
  --surface-strong: #fff;
  --line: rgba(255, 47, 146, .16);
  --pink: #ff2f92;
  --orange: #ff6b2c;
  --purple: #8a4dff;
  --green: #12b76a;
  --shadow: 0 24px 70px rgba(242, 47, 114, .13);
  --cardGlow: rgba(255, 47, 146, .14);
  --radius: 26px;
  --container: 1180px;
}

html[data-theme="dark"] {
  --bg: #070b16;
  --bg-2: #0d1424;
  --text: #f7f7fb;
  --muted: #aeb9cc;
  --surface: rgba(15, 24, 39, .86);
  --surface-strong: #121c2f;
  --line: rgba(255, 98, 91, .22);
  --shadow: 0 24px 80px rgba(255, 47, 146, .13);
  --cardGlow: rgba(255, 107, 44, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 107, 44, .16), transparent 26rem),
    radial-gradient(circle at 5% 22%, rgba(255, 47, 146, .13), transparent 24rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 34px)); margin: 0 auto; }
.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}
.badge, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  border: 1px solid rgba(255, 47, 146, .28);
  background: rgba(255, 47, 146, .07);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 15px;
  font-weight: 850;
  transition: .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--pink), var(--orange));
  box-shadow: 0 14px 35px rgba(255, 47, 146, .28);
}
.btn-ghost {
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
html[data-theme="dark"] .btn-ghost { background: #0a1321; }
.btn-small { padding: 11px 16px; font-size: .88rem; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,47,146,.20), rgba(255,107,44,.18));
  border: 1px solid rgba(255, 47, 146, .24);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(255, 47, 146, .20);
}
.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35) translateY(4px);
}
.logo strong { display: block; font-weight: 950; line-height: 1; letter-spacing: -.035em; }
.logo small { display: block; color: var(--muted); font-weight: 700; font-size: .72rem; margin-top: 4px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 22px; font-weight: 800; font-size: .88rem; }
.nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links .active, .dropdown-trigger:hover, .dropdown-trigger.active { color: var(--pink); }
.nav-dropdown { position: relative; }
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 230px;
  display: none;
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: grid; gap: 4px; }
.dropdown-menu a {
  padding: 11px 12px;
  border-radius: 12px;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(255,47,146,.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle {
  width: 43px; height: 43px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle { display: none; }

.hero { padding: 52px 0 28px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: 26px; align-items: center; }
.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: .91;
  letter-spacing: -.075em;
}
.hero-copy h1 span { display: block; }
.hero-copy p { color: var(--muted); font-weight: 650; line-height: 1.75; max-width: 650px; font-size: 1.06rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); gap: 14px; max-width: 570px; }
.stat-card {
  padding: 18px 16px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 15px 45px rgba(0,0,0,.05);
}
.stat-card strong { color: var(--pink); font-size: 1.55rem; display: block; }
.stat-card small { color: var(--muted); font-weight: 800; }
.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.orbit {
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 35%, #ffd17b, #ff9b60 35%, #ff3f8d 72%, rgba(138, 77, 255, .65));
  box-shadow: 0 30px 100px rgba(255, 47, 146, .25), inset 0 0 80px rgba(255,255,255,.25);
  z-index: 0;
}
.hero-avatar {
  position: relative;
  z-index: 2;
  width: min(490px, 92%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(255, 107, 44, .26));
  transform: translateY(10px) scale(1.04);
}
html[data-theme="dark"] .hero-avatar {
  filter: drop-shadow(0 0 28px rgba(255, 107, 44, .34)) drop-shadow(0 20px 45px rgba(255, 47, 146, .22));
}
.float-card {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: 16px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.float-card small { display: block; color: var(--muted); font-size: .72rem; font-weight: 850; }
.float-card strong { display: block; font-size: 1.4rem; margin-top: 2px; }
.float-card .trend { color: var(--green); font-size: .72rem; font-weight: 900; }
.float-card::after {
  content: "";
  display: block;
  height: 30px;
  margin-top: 10px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,47,146,.22), rgba(255,123,34,.22)), repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,47,146,.7) 18px 21px);
}
.float-1 { top: 58px; left: 56px; }
.float-2 { top: 126px; right: 22px; }
.float-3 { bottom: 80px; left: 20px; }
.float-4 { bottom: 108px; right: 54px; min-width: 130px; }
.app-icon {
  position: absolute;
  z-index: 3;
  width: 56px; height: 56px;
  border-radius: 19px;
  display: grid; place-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--pink);
  font-size: 1.3rem;
  font-weight: 950;
}
.icon-ai { left: 120px; top: 190px; color: var(--orange); }
.icon-love { right: 90px; top: 198px; }
.icon-bot { right: 124px; bottom: 198px; color: var(--purple); }

.section { padding: 44px 0; }
.section-title { text-align: center; margin-bottom: 26px; }
.section-title h2 { margin: 12px 0 10px; font-size: clamp(1.8rem, 3.8vw, 3rem); letter-spacing: -.05em; }
.section-title p { margin: 0 auto; color: var(--muted); max-width: 760px; line-height: 1.65; font-weight: 600; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.service-card {
  grid-column: span 2;
  min-height: 292px;
  padding: 14px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,.055);
  display: grid;
  grid-template-rows: 142px auto 1fr auto;
  align-items: start;
  text-align: center;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(255,47,146,.42); box-shadow: 0 20px 48px var(--cardGlow); }
.service-card:hover .service-media img { transform: scale(1.08); filter: saturate(1.18) contrast(1.04); }
.service-media {
  position: relative;
  width: 100%;
  height: 142px;
  margin: 0 auto 16px;
  border-radius: 21px;
  overflow: hidden;
  border: 1px solid rgba(255,47,146,.24);
  background: linear-gradient(135deg, rgba(255,47,146,.22), rgba(255,123,34,.22));
  box-shadow: inset 0 0 34px rgba(255,255,255,.18), 0 18px 38px rgba(255,47,146,.12);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18,20,38,.48)), linear-gradient(135deg, rgba(255,47,146,.20), rgba(255,107,44,.10));
  pointer-events: none;
}
.service-media-shine {
  position: absolute;
  inset: 12px auto auto 12px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.26);
  filter: blur(10px);
  pointer-events: none;
}
.service-card h3 { margin: 0 0 9px; font-size: 1.04rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; font-weight: 600; }
.service-card .category { display: inline-block; margin-top: auto; padding-top: 13px; color: var(--pink); font-size: .72rem; font-weight: 900; }

.split-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-image-wrap {
  min-height: 360px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255,107,44,.22), rgba(255,47,146,.1) 45%, transparent 72%);
}
.about-avatar { width: min(360px, 100%); filter: drop-shadow(0 22px 38px rgba(255,47,146,.20)); }
html[data-theme="dark"] .about-avatar { filter: drop-shadow(0 0 26px rgba(255,107,44,.24)); }
.muted-copy { color: var(--muted); line-height: 1.75; font-weight: 600; }
.small-copy { font-size: .95rem; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 18px 0 20px; }
.feature-chip { border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: rgba(255,255,255,.08); }
.feature-chip strong { display: block; }
.feature-chip small { color: var(--muted); font-weight: 700; }
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.case-card { border: 1px solid var(--line); background: var(--surface); border-radius: 22px; padding: 20px; overflow: hidden; }
.case-card h3 { margin: 0 0 10px; font-size: .95rem; }
.case-card strong { color: var(--pink); font-size: 1.85rem; }
.case-card p { margin: 5px 0 0; color: var(--muted); font-size: .86rem; font-weight: 700; }
.spark { height: 40px; margin-top: 17px; border-radius: 14px; background: linear-gradient(135deg, rgba(255,47,146,.2), rgba(255,123,34,.12)), linear-gradient(115deg, transparent 0 20%, var(--pink) 21% 23%, transparent 24% 46%, var(--orange) 47% 49%, transparent 50%); }
.client-design-section { padding-top: 28px; }
.client-design-grid { display: grid; gap: 18px; }
.client-design-card {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,47,146,.10), rgba(255,107,44,.08)), var(--surface);
  box-shadow: var(--shadow);
}
.client-design-media {
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,47,146,.24);
  background: rgba(255,47,146,.08);
}
.client-design-media img { width: 100%; height: 100%; object-fit: cover; }
.client-design-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 8px 8px 8px 0; }
.client-status { color: var(--pink); font-size: .74rem; font-weight: 950; text-transform: uppercase; letter-spacing: .06em; }
.client-design-copy h3 { margin: 8px 0 4px; font-size: clamp(2rem, 4vw, 3.7rem); line-height: .95; letter-spacing: -.06em; }
.client-design-copy strong { color: var(--orange); font-size: .96rem; }
.client-design-copy p { color: var(--muted); line-height: 1.7; font-weight: 650; max-width: 620px; }
.client-design-copy ul { margin: 0 0 18px; padding-left: 18px; color: var(--muted); font-weight: 750; line-height: 1.65; }
.client-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.client-link-note { color: var(--muted); font-size: .82rem; font-weight: 850; padding: 12px 0; }

.career-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,47,146,.12), rgba(255,107,44,.10)), var(--surface);
  box-shadow: var(--shadow);
}
.career-intro { position: relative; padding: 22px; border-radius: 26px; overflow: hidden; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.career-intro h2 { font-size: clamp(2rem, 4vw, 4rem); margin: 12px 0 10px; letter-spacing: -.06em; }
.career-intro p { color: var(--muted); line-height: 1.7; font-weight: 650; max-width: 520px; }
.career-avatar { width: min(260px, 56%); float: right; margin: -8px -16px 12px 16px; filter: drop-shadow(0 20px 34px rgba(255,47,146,.22)); }
.benefit-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.benefit-row span { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); padding: 10px 12px; border-radius: 999px; font-weight: 850; font-size: .84rem; }
.form-card, .booking-card, .info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.form-card h3 { margin: 0 0 6px; font-size: 1.5rem; letter-spacing: -.035em; }
.form-note, .booking-note { color: var(--muted); font-size: .84rem; line-height: 1.55; font-weight: 650; }
label { display: grid; gap: 7px; font-weight: 850; font-size: .82rem; color: var(--text); margin-bottom: 13px; }
input, select, textarea {
  width: 100%;
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(255,47,146,.55); box-shadow: 0 0 0 4px rgba(255,47,146,.09); }
.limit { color: var(--pink); font-size: .78rem; font-weight: 900; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 20px; align-items: stretch; }
.location-map-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  display: grid;
  grid-template-rows: auto minmax(420px, 1fr);
  gap: 18px;
  overflow: hidden;
}
.location-info-inline {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 22px;
  padding: 4px 4px 2px !important;
}
.location-info-inline h2 { max-width: 520px; }
.location-info-inline p { max-width: 560px; }
.map-card-inline { min-height: 420px !important; }
.map-card-inline .map-frame { min-height: 420px !important; }
.info-card h2, .booking-card h2 { margin: 13px 0 12px; font-size: 1.8rem; letter-spacing: -.045em; }
.info-card p { color: var(--muted); line-height: 1.7; font-weight: 650; }
.map-card { position: relative; min-height: 620px; overflow: hidden; border-radius: 26px; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--surface); }
.map-frame { width: 100%; height: 100%; min-height: 620px; border: 0; filter: saturate(1.05); }
html[data-theme="dark"] .map-frame { filter: invert(92%) hue-rotate(180deg) saturate(.7) brightness(.78); opacity: .84; }
.map-pin { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.map-pin span { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50% 50% 50% 12px; transform: rotate(-45deg); background: linear-gradient(135deg, var(--pink), var(--orange)); color: #fff; font-size: 1.8rem; box-shadow: 0 18px 45px rgba(255,47,146,.35); }
.map-pin span::first-letter { transform: rotate(45deg); }
.booking-card form { margin-top: 16px; }
.contact-map-embed {
  margin-top: 22px;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: 0 14px 36px rgba(18,20,38,.06);
}
.contact-map-embed .map-frame {
  display: block;
  width: 100%;
  height: 300px;
  min-height: 300px !important;
}

.footer { padding: 44px 0 34px; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 58%, transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
.footer p { color: var(--muted); line-height: 1.65; max-width: 360px; }
.footer h4 { margin: 0 0 14px; }
.footer a:not(.logo) { display: block; color: var(--muted); font-weight: 700; margin: 10px 0; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 36px; height: 36px; display: grid !important; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-strong); color: var(--pink) !important; font-weight: 900 !important; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; font-size: 1.8rem; z-index: 70; box-shadow: 0 18px 45px rgba(37, 211, 102, .42); border: 4px solid rgba(255,255,255,.62); }
.whatsapp-float svg { width: 34px; height: 34px; display: block; }

@media (max-width: 1040px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: fixed;
    left: 17px;
    right: 17px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; border-radius: 14px; }
  .nav-dropdown { width: 100%; }
  .dropdown-trigger { width: 100%; padding: 12px 14px; border-radius: 14px; justify-content: flex-start; }
  .dropdown-menu { position: static; display: grid; min-width: 0; transform: none; margin-top: 6px; box-shadow: none; background: rgba(255,47,146,.05); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p, .stats { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { grid-column: span 1; }
  .client-design-card { grid-template-columns: 1fr; }
  .client-design-media { min-height: 260px; }
  .client-design-copy { padding: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-map-card { grid-template-rows: auto minmax(360px, auto); }
  .map-card, .map-frame { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--container)); }
  .header .btn-small { display: none; }
  .nav { height: 70px; }
  .logo-mark { width: 40px; height: 40px; }
  .hero { padding-top: 34px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .hero-copy p { font-size: .98rem; }
  .hero-ctas .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .hero-visual { min-height: 640px; margin-top: 8px; }
  .orbit { width: min(88vw, 360px); height: min(88vw, 360px); }
  .hero-avatar { width: min(95vw, 420px); }
  .float-card { min-width: 130px; padding: 13px; }
  .float-1 { top: 20px; left: 2px; }
  .float-2 { top: 86px; right: 0; }
  .float-3 { bottom: 112px; left: 0; }
  .float-4 { bottom: 74px; right: 4px; }
  .icon-ai { left: 18px; top: 180px; }
  .icon-love { right: 30px; top: 220px; }
  .icon-bot { right: 46px; bottom: 222px; }
  .section { padding: 34px 0; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { min-height: 230px; padding: 10px; grid-template-rows: 118px auto 1fr auto; }
  .service-media { height: 118px; border-radius: 18px; margin-bottom: 12px; }
  .service-card p, .service-card .category { display: none; }
  .split-card, .career-panel { grid-template-columns: 1fr; padding: 18px; }
  .client-design-card { padding: 14px; border-radius: 24px; }
  .client-design-media { min-height: 210px; border-radius: 18px; }
  .client-actions .btn { width: 100%; }
  .about-image-wrap { min-height: 260px; }
  .feature-list, .case-grid, .two-fields, .footer-grid { grid-template-columns: 1fr; }
  .career-avatar { width: 72%; float: none; margin: 0 auto 14px; }
  .form-actions .btn { width: 100%; }
  .location-map-card { padding: 16px; gap: 14px; }
  .map-card, .map-frame { min-height: 360px; }
  .whatsapp-float { width: 58px; height: 58px; right: 15px; bottom: 15px; }
}
@media (max-width: 420px) {
  .service-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 590px; }
  .float-card strong { font-size: 1.15rem; }
}

.client-landing-hero { padding: 54px 0 34px; }
.client-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: center;
}
.client-landing-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: -.07em;
}
.client-landing-copy h1 span { display: block; }
.client-landing-copy p { color: var(--muted); max-width: 650px; line-height: 1.75; font-weight: 650; }
.client-meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.client-meta-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--pink);
  background: rgba(255,47,146,.07);
  font-size: .8rem;
  font-weight: 900;
}
.client-landing-media {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.client-landing-media img { width: 100%; height: 520px; object-fit: cover; }
.client-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 22px;
  align-items: start;
}
.client-detail-section h2 { margin: 12px 0; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.055em; }
.client-detail-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}
.client-project-picker {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.client-project-picker h3 { margin: 0 0 14px; font-size: 1.25rem; }
.client-mini-grid { display: grid; gap: 10px; }
.client-mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  font-weight: 900;
}
.client-mini-card.active { border-color: rgba(255,47,146,.5); box-shadow: 0 10px 30px rgba(255,47,146,.12); }
.client-mini-card img { width: 74px; height: 58px; object-fit: cover; border-radius: 12px; }
@media (max-width: 1040px) {
  .client-landing-grid, .client-detail-grid { grid-template-columns: 1fr; }
  .client-landing-media { min-height: 380px; }
  .client-landing-media img { height: 380px; }
}
@media (max-width: 720px) {
  .client-landing-hero { padding: 34px 0 24px; }
  .client-landing-copy h1 { font-size: clamp(2.7rem, 14vw, 4.4rem); }
  .client-landing-media { min-height: 260px; border-radius: 24px; }
  .client-landing-media img { height: 260px; }
}

.error-page { min-height: calc(100vh - 78px); display: grid; align-items: center; padding: 54px 0; }
.error-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,47,146,.12), rgba(255,107,44,.08)), var(--surface);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.error-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: .92;
  letter-spacing: -.07em;
}
.error-copy p { color: var(--muted); max-width: 650px; line-height: 1.75; font-weight: 650; }
.error-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(255,107,44,.22), rgba(255,47,146,.10) 48%, transparent 72%);
}
.error-visual img { width: min(360px, 92%); filter: drop-shadow(0 24px 42px rgba(255,47,146,.22)); }
@media (max-width: 1040px) {
  .error-panel { grid-template-columns: 1fr; text-align: center; }
  .error-copy p, .error-panel .hero-ctas { margin-left: auto; margin-right: auto; justify-content: center; }
}
@media (max-width: 720px) {
  .error-panel { padding: 22px; border-radius: 26px; }
  .error-visual { min-height: 260px; }
}


/* Restored previous HDS portal design */
:root { --font-main: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { font-family: var(--font-main); font-weight: 500; }
.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; }
.btn-whatsapp { color:#fff; background:#18c45f; box-shadow:0 14px 32px rgba(24,196,95,.24); }
.header { background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav { height:76px; }
.nav-links { gap:20px; font-weight:800; font-size:.86rem; }
.nav-actions { gap:10px; }
.theme-switch { min-width:62px; min-height:38px; display:flex; align-items:center; justify-content:center; padding:2px; border:1px solid var(--line); border-radius:999px; background:var(--surface-strong); box-shadow:0 10px 24px rgba(255,47,146,.12); cursor:pointer; }
.theme-switch-control { position:relative; width:58px; height:32px; border-radius:999px; background:linear-gradient(135deg, rgba(255,47,146,.18), rgba(255,107,44,.14)); }
.theme-switch-thumb { position:absolute; top:3px; left:3px; width:26px; height:26px; display:grid; place-items:center; border-radius:50%; background:#fff; box-shadow:0 7px 16px rgba(18,20,38,.14); transition:.22s ease; }
html[data-theme="dark"] .theme-switch-thumb { transform:translateX(26px); }
.restored-hero { padding:32px 0 28px; }
.restored-hero-grid { grid-template-columns:minmax(0, .98fr) minmax(430px, 1fr); min-height:545px; }
.hero-offer-badge { margin-bottom: 4px; }
.restored-hero .hero-copy h1 { margin:18px 0; font-size:clamp(3.5rem, 5.9vw, 5.8rem); line-height:1.02; letter-spacing:-.045em; }
.restored-hero .hero-copy p { max-width:620px; color:var(--muted); font-weight:700; font-size:1.05rem; line-height:1.65; }
.restored-stats { grid-template-columns:repeat(4, minmax(90px,1fr)); max-width:620px; margin-top:22px; }
.restored-stats .stat-card { padding:10px 6px; text-align:center; background:transparent; border:0; box-shadow:none; }
.restored-stats .stat-card strong { color:var(--orange); font-size:1.45rem; }
.restored-stats .stat-card small { font-weight:600; color:var(--muted); }
.restored-visual { min-height:520px; }
.restored-visual .orbit { width:min(88%,460px); height:min(88%,460px); background:radial-gradient(circle at 44% 35%, #ffd97e, #ff9b60 38%, #ff66a4 73%, rgba(255,47,146,.28)); }
.restored-visual .hero-avatar { width:min(500px,95%); }
.bubble { position:absolute; z-index:5; width:58px; height:58px; display:grid; place-items:center; border-radius:18px; background:rgba(255,255,255,.9); border:1px solid var(--line); box-shadow:0 14px 34px rgba(255,47,146,.14); color:var(--pink); font-weight:900; }
.bubble-ai{left:110px;top:120px;color:var(--orange)} .bubble-wa{right:86px;top:155px} .bubble-heart{right:58px;top:70px} .bubble-chart{right:82px;top:220px} .bubble-rocket{left:78px;bottom:120px} .bubble-fb{right:118px;bottom:118px;color:#635bff} .bubble-tk{left:130px;bottom:42px;color:#111} .bubble-sheet{left:62px;top:230px;color:#12b76a}
.trusted-strip { text-align:center; margin-top:10px; }
.trusted-strip strong { display:block; margin-bottom:18px; font-size:1rem; }
.trusted-strip div { display:flex; flex-wrap:wrap; justify-content:center; gap:34px; font-size:.82rem; font-weight:800; }
.trusted-strip span { display:inline-flex; align-items:center; gap:8px; }
.trusted-strip b { width:22px; height:22px; display:grid; place-items:center; border-radius:8px; background:rgba(255,47,146,.08); }
.trusted-showcase {
  margin-top: 48px;
  padding: 20px 0 0;
}
.trusted-showcase-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}
.trusted-showcase-head h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.trusted-showcase-head p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
  font-weight: 600;
}
.trusted-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.trusted-card {
  position: relative;
  min-height: 166px;
  display: grid;
  grid-template-columns: 86px 1fr 34px;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 52px rgba(18,20,38,.06);
  overflow: hidden;
}
.trusted-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36%;
  height: 3px;
  background: var(--card-accent, var(--pink));
}
.trusted-card-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--card-accent, var(--pink)) 12%, #fff);
  font-size: 2rem;
}
.trusted-svg-icon {
  color: var(--card-accent, var(--pink));
}
.trusted-svg-icon svg {
  width: 72%;
  height: 72%;
  display: block;
}
.trusted-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}
.trusted-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .92rem;
}
.trusted-card > a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pink);
  background: #fff;
  box-shadow: 0 10px 26px rgba(255,47,146,.16);
  font-weight: 900;
}
.trusted-card-pink { --card-accent: #ff2f92; }
.trusted-card-green { --card-accent: #12b76a; }
.trusted-card-purple { --card-accent: #8a4dff; }
.trusted-card-orange { --card-accent: #ff6b2c; }
.trusted-card-blue { --card-accent: #3478f6; }
.trusted-custom-card {
  grid-template-columns: 86px 1fr;
  color: #fff;
  background: linear-gradient(120deg, var(--pink), var(--orange));
  border: 0;
}
.trusted-custom-card::after { display: none; }
.trusted-custom-card p,
.trusted-custom-card h3 { color: #fff; }
.trusted-custom-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--pink);
  background: #fff;
  font-size: 1.7rem;
}
.trusted-whatsapp {
  width: min(100%, 280px) !important;
  height: 36px !important;
  margin-top: 14px;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  color: var(--text) !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: none !important;
  font-size: .82rem;
}
.trusted-proof-panel {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 58px rgba(18,20,38,.055);
}
.trusted-proof-head {
  text-align: center;
  margin-bottom: 28px;
}
.trusted-proof-head span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--pink);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: .86rem;
}
.trusted-proof-head span::before,
.trusted-proof-head span::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
}
.trusted-proof-head h3 {
  margin: 16px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.trusted-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.trusted-proof-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 12px 22px;
  text-align: center;
}
.trusted-proof-item:not(:last-child) {
  border-right: 1px solid rgba(255,47,146,.14);
}
.trusted-proof-item span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--proof-color, var(--pink)) 14%, #fff);
  font-size: 2rem;
}
.trusted-proof-item strong,
.trusted-proof-item small {
  display: block;
}
.trusted-proof-item strong {
  font-size: 1rem;
}
.trusted-proof-item small {
  max-width: 19ch;
  margin: 8px auto 0;
  color: var(--muted);
  line-height: 1.45;
}
.trusted-proof-pink { --proof-color: #ff2f92; }
.trusted-proof-purple { --proof-color: #8a4dff; }
.trusted-proof-green { --proof-color: #12b76a; }
.trusted-proof-orange { --proof-color: #ff8a00; }
@media (max-width: 1180px) {
  .trusted-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trusted-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trusted-proof-item:nth-child(2) {
    border-right: 0;
  }
  .trusted-proof-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,47,146,.14);
  }
}
@media (max-width: 720px) {
  .trusted-showcase {
    position: relative;
    margin-top: 42px;
    padding: 12px 8px 0;
    overflow: hidden;
  }
  .trusted-showcase::before {
    content: "";
    position: absolute;
    right: -34%;
    top: 172px;
    width: 86%;
    height: 270px;
    border-radius: 999px 0 0 999px;
    background: linear-gradient(140deg, rgba(255,47,146,.11), rgba(255,107,44,.035));
    pointer-events: none;
  }
  .trusted-showcase::after {
    content: "";
    position: absolute;
    right: 38px;
    top: 320px;
    width: 52px;
    height: 52px;
    opacity: .55;
    background-image: radial-gradient(circle, var(--pink) 2px, transparent 2.5px);
    background-size: 14px 14px;
    pointer-events: none;
  }
  .trusted-showcase-head {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0 0 26px;
    text-align: left;
  }
  .trusted-showcase-head .eyebrow {
    min-height: 34px;
    padding: 0 16px;
    font-size: 0 !important;
  }
  .trusted-showcase-head .eyebrow::after {
    content: "🛡  TRUSTED BY BUSINESSES";
    font-size: .78rem;
    letter-spacing: .045em;
  }
  .trusted-showcase-head h2 {
    margin: 18px 0 18px;
    font-size: clamp(2.45rem, 10.8vw, 4rem);
    line-height: 1.03;
    letter-spacing: -.04em;
  }
  .trusted-showcase-head p {
    max-width: 34ch;
    margin: 0;
    font-size: 1.02rem !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
  }
  .trusted-card-grid {
    position: relative;
    z-index: 1;
    counter-reset: trusted-card;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .trusted-card,
  .trusted-custom-card {
    min-height: 238px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    padding: 30px 16px 18px;
    text-align: left;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(18,20,38,.08);
  }
  .trusted-card:not(.trusted-custom-card)::before {
    counter-increment: trusted-card;
    content: counter(trusted-card, decimal-leading-zero);
    position: absolute;
    top: 28px;
    right: 16px;
    min-width: 44px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--card-accent, var(--pink)) 24%, transparent);
    border-radius: 14px;
    color: var(--card-accent, var(--pink));
    background: rgba(255,255,255,.62);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
  }
  .trusted-card:not(.trusted-custom-card)::after {
    width: 40%;
    height: 5px;
    border-radius: 0 999px 999px 0;
  }
  .trusted-card-icon,
  .trusted-custom-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    border-radius: 18px;
    font-size: 1.9rem;
    justify-self: center;
    text-align: center;
  }
  .trusted-card h3 {
    max-width: 9ch;
    margin: 0 0 12px;
    font-size: 1.28rem !important;
    line-height: 1.05 !important;
    letter-spacing: -.015em;
  }
  .trusted-card p {
    font-size: .95rem !important;
    line-height: 1.38 !important;
    font-weight: 600 !important;
  }
  .trusted-card > a {
    position: absolute;
    right: 16px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    color: var(--card-accent, var(--pink));
    font-size: 1.4rem;
  }
  .trusted-card-blue {
    grid-column: 1 / -1;
    min-height: 142px;
    grid-template-columns: 72px 1fr 48px;
    align-items: center;
    padding: 18px 72px 18px 18px;
  }
  .trusted-card-blue .trusted-card-icon {
    margin: 0;
    justify-self: center;
  }
  .trusted-card-blue h3 {
    max-width: none;
    margin-bottom: 6px;
  }
  .trusted-card-blue > a {
    right: 22px;
    bottom: 24px;
  }
  .trusted-custom-card {
    grid-column: 1 / -1;
    min-height: 178px;
    grid-template-columns: 90px 1fr;
    align-items: center;
    padding: 26px 28px;
    border-radius: 20px;
    background:
      radial-gradient(circle at 95% 20%, rgba(255,255,255,.18), transparent 28%),
      linear-gradient(120deg, var(--pink), var(--orange));
  }
  .trusted-custom-card .trusted-custom-icon {
    width: 72px;
    height: 72px;
    margin: 0;
    border-radius: 999px;
    justify-self: center;
  }
  .trusted-custom-card h3 {
    max-width: none;
    font-size: 1.35rem !important;
  }
  .trusted-custom-card p {
    max-width: 26ch;
    color: #fff !important;
    font-size: 1rem !important;
  }
  .trusted-whatsapp {
    width: min(100%, 430px) !important;
    height: 52px !important;
    margin-top: 18px;
    justify-content: center;
    gap: 14px;
    border-radius: 12px;
    font-size: .94rem !important;
    font-weight: 900 !important;
  }
  .trusted-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
  }
  .trusted-proof-panel {
    margin-top: 24px;
    padding: 24px 14px;
    border-radius: 24px;
  }
  .trusted-proof-head {
    margin-bottom: 20px;
  }
  .trusted-proof-head span {
    gap: 10px;
    font-size: .72rem;
  }
  .trusted-proof-head span::before,
  .trusted-proof-head span::after {
    width: 18px;
  }
  .trusted-proof-head h3 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }
  .trusted-proof-item {
    padding: 18px 10px;
    gap: 10px;
  }
  .trusted-proof-item:nth-child(2n) {
    border-right: 0 !important;
  }
  .trusted-proof-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,47,146,.14);
  }
  .trusted-proof-item span {
    width: 66px;
    height: 66px;
    font-size: 1.6rem;
  }
  .trusted-proof-item strong { font-size: .9rem; }
  .trusted-proof-item small {
    font-size: .78rem;
    line-height: 1.4;
  }
  .contact-map-embed,
  .contact-map-embed .map-frame {
    min-height: 260px !important;
    height: 260px;
  }
  html[data-theme="dark"] .trusted-showcase-head h2,
  html[data-theme="dark"] .trusted-card h3 {
    color: #f8fbff !important;
    text-shadow: 0 2px 18px rgba(0,0,0,.34);
  }
  html[data-theme="dark"] .trusted-showcase-head p,
  html[data-theme="dark"] .trusted-card p {
    color: #d9e3f4 !important;
  }
  html[data-theme="dark"] .trusted-showcase-head .eyebrow {
    color: #ff5aa5;
    background: rgba(255,47,146,.12);
    border-color: rgba(255,47,146,.34);
  }
  html[data-theme="dark"] .trusted-card:not(.trusted-custom-card) {
    border-color: color-mix(in srgb, var(--card-accent, var(--pink)) 34%, rgba(255,255,255,.08));
    background:
      radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--card-accent, var(--pink)) 18%, transparent), transparent 44%),
      linear-gradient(160deg, rgba(15,23,42,.94), rgba(7,13,28,.94));
    box-shadow: 0 18px 48px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
  }
  html[data-theme="dark"] .trusted-card-icon {
    background:
      radial-gradient(circle at 42% 32%, rgba(255,255,255,.16), transparent 42%),
      color-mix(in srgb, var(--card-accent, var(--pink)) 24%, rgba(15,23,42,.88));
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--card-accent, var(--pink)) 35%, transparent), 0 14px 28px rgba(0,0,0,.24);
  }
  html[data-theme="dark"] .trusted-card:not(.trusted-custom-card)::before {
    color: color-mix(in srgb, var(--card-accent, var(--pink)) 82%, #fff);
    background: rgba(10,17,33,.78);
    border-color: color-mix(in srgb, var(--card-accent, var(--pink)) 42%, transparent);
  }
  html[data-theme="dark"] .trusted-card > a {
    color: color-mix(in srgb, var(--card-accent, var(--pink)) 84%, #fff);
    background: rgba(10,17,33,.82);
    border: 1px solid color-mix(in srgb, var(--card-accent, var(--pink)) 30%, transparent);
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
  }
}
@media (max-width: 380px) {
  .trusted-proof-strip {
    grid-template-columns: 1fr;
  }
  .trusted-proof-item,
  .trusted-proof-item:nth-child(2n) {
    border-right: 0 !important;
  }
  .trusted-proof-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,47,146,.14);
  }
  .trusted-card p {
    font-size: .82rem;
  }
}
.services-showcase { padding-top:38px; }
.service-help-panel { padding:30px; border:1px solid var(--line); border-radius:30px; background:linear-gradient(105deg, rgba(255,47,146,.10), rgba(255,107,44,.06)), var(--surface); box-shadow:var(--shadow); text-align:center; }
.service-help-panel h2 { margin:0 0 8px; font-size:clamp(1.8rem,3vw,2.35rem); letter-spacing:-.03em; }
.service-help-panel p { margin:0 auto 22px; color:var(--muted); font-weight:600; }
.service-quick-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:14px; }
.service-quick-card { display:flex; align-items:center; gap:12px; padding:14px; border:1px solid var(--line); border-radius:18px; background:var(--surface-strong); text-align:left; }
.service-quick-card strong { display:block; font-size:.92rem; line-height:1.15; }
.service-quick-card small { color:var(--muted); font-size:.76rem; }
.service-icon-badge { width:44px; height:44px; flex:0 0 44px; display:grid; place-items:center; border-radius:15px; border:1px solid rgba(255,47,146,.16); font-size:1.18rem; background:rgba(255,47,146,.08); }
.service-icon-social{color:#ff2f92;background:rgba(255,47,146,.12)} .service-icon-whatsapp{color:#12b76a;background:rgba(18,183,106,.12)} .service-icon-web{color:#3478f6;background:rgba(52,120,246,.12)} .service-icon-ai{color:#8a4dff;background:rgba(138,77,255,.12)} .service-icon-dashboard{color:#1f7aff;background:rgba(31,122,255,.12)} .service-icon-cloud{color:#2eaadc;background:rgba(46,170,220,.12)} .service-icon-quality{color:#f79009;background:rgba(247,144,9,.12)} .service-icon-design{color:#f044c7;background:rgba(240,68,199,.12)} .service-icon-training{color:#111;background:rgba(255,107,44,.12)}
.service-category-head { margin:42px auto 24px; display:block; max-width:760px; text-align:center; }
.service-category-head h2 { margin:14px auto 12px; font-size:clamp(2rem,4vw,3rem); line-height:1.08; letter-spacing:-.04em; }
.service-category-head p { margin:0 auto 20px; max-width:640px; color:var(--muted); font-weight:700; line-height:1.65; }
.service-category-head .btn { margin:0 auto; }
.service-category-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.service-category-card { min-height:190px; padding:20px; border:1px solid var(--line); border-radius:22px; background:var(--surface); box-shadow:0 14px 36px rgba(0,0,0,.045); display:flex; flex-direction:column; align-items:flex-start; }
.service-category-card h3 { margin:16px 0 8px; font-size:1rem; }
.service-category-card p { margin:0; color:var(--muted); line-height:1.55; }
.service-category-card a { margin-top:auto; color:var(--pink); font-size:.82rem; font-weight:900; }
.growth-engine { margin-top:34px; padding:34px; border:1px solid var(--line); border-radius:30px; background:linear-gradient(135deg, rgba(255,47,146,.08), rgba(255,107,44,.05)), var(--surface); box-shadow:var(--shadow); }
.growth-engine-head { text-align:center; margin-bottom:28px; }
.growth-engine-head h2 { margin:12px 0 8px; font-size:clamp(2rem,3.6vw,3rem); line-height:1.08; }
.growth-engine-head p { color:var(--muted); font-weight:600; }
.growth-steps { display:grid; grid-template-columns:repeat(8,minmax(0,1fr)); gap:12px; }
.growth-step { position:relative; min-height:220px; padding:18px 12px; border:1px solid var(--line); border-radius:18px; background:var(--surface-strong); text-align:center; display:flex; flex-direction:column; align-items:center; gap:9px; }
.step-num { position:absolute; top:-11px; width:28px; height:28px; display:grid; place-items:center; border-radius:999px; background:#ffe4f0; color:var(--pink); font-size:.68rem; font-weight:900; border:1px solid var(--line); }
.engine-icon { width:54px; height:54px; display:grid; place-items:center; border-radius:999px; background:rgba(255,47,146,.12); font-size:1.45rem; margin-top:22px; }
.growth-step strong { font-size:.82rem; line-height:1.2; } .growth-step small { color:var(--muted); font-size:.72rem; line-height:1.35; }
.growth-engine-cta { margin-top:26px; padding:16px; border:1px solid rgba(255,47,146,.3); border-radius:18px; display:grid; grid-template-columns:auto 1fr auto auto; gap:14px; align-items:center; background:rgba(255,255,255,.52); }
.service-avatar-icon { width:48px; height:48px; border-radius:14px; overflow:hidden; display:block; } .service-avatar-icon img{width:100%;height:100%;object-fit:cover;transform:scale(1.25) translateY(3px)}
.restored-about { margin-top:26px; padding:38px; border-radius:34px; }
.restored-about .about-avatar { width:min(380px,100%); }
.career-panel { margin-top:28px; }
.career-intro { display:grid; grid-template-columns:minmax(0,.75fr) minmax(180px,1fr); align-content:start; gap:10px; }
.career-intro .badge,.career-intro h2,.career-intro p,.career-intro .benefit-row { grid-column:1; }
.career-avatar { grid-column:2; grid-row:1 / span 5; align-self:center; width:100%; float:none; margin:0; }
.shop-page-hero { padding:52px 0 8px; } .shop-page-hero h1 { margin:14px 0 8px; font-size:clamp(2.4rem,4vw,3.4rem); letter-spacing:-.04em; } .shop-page-hero p { color:var(--muted); font-weight:600; }
.shop-filter-slider { display:grid; grid-template-columns:42px minmax(0,1fr) 42px; gap:10px; align-items:center; margin-top:24px; overflow:hidden; }
.shop-filter-row { display:flex!important; flex-wrap:nowrap!important; gap:12px; overflow-x:auto; scrollbar-width:none; scroll-behavior:smooth; padding:4px 2px 8px; } .shop-filter-row::-webkit-scrollbar{display:none}
.shop-filter-chip { flex:0 0 auto; min-height:46px; padding:0 22px; border:0; border-radius:13px; background:var(--surface-strong); color:var(--muted); font-weight:900; white-space:nowrap; cursor:pointer; box-shadow:0 10px 28px rgba(18,20,38,.04); }
.shop-filter-chip.active,.shop-filter-chip[aria-selected="true"]{color:#fff;background:linear-gradient(100deg,var(--pink),var(--orange));box-shadow:0 14px 28px rgba(255,47,146,.22)}
.shop-filter-arrow { width:42px;height:42px;border:1px solid var(--line);border-radius:14px;background:var(--surface-strong);color:var(--pink);font-size:1.45rem;cursor:pointer; }
.shop-catalog { display:grid; gap:26px; } .shop-block-head h2{margin:0;font-size:1.25rem}.shop-services-head{margin-top:8px}
.popular-package-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.shop-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.shop-package-card{position:relative;min-height:620px;padding:30px 22px 22px;border:1px solid rgba(255,47,146,.18);border-radius:18px;background:var(--surface);box-shadow:0 16px 46px rgba(18,20,38,.07);display:flex;flex-direction:column}.shop-package-card.featured{border-color:rgba(255,47,146,.42);box-shadow:0 22px 58px rgba(255,47,146,.14)}
.popular-ribbon{position:absolute;top:-12px;left:50%;transform:translateX(-50%);padding:6px 16px;border-radius:999px;color:#fff;background:linear-gradient(100deg,var(--pink),var(--orange));font-size:.66rem;font-weight:900;white-space:nowrap}.package-card-head{display:grid;grid-template-columns:74px 1fr;gap:15px;align-items:center;min-height:108px}.package-icon{width:70px;height:70px;display:grid;place-items:center;border-radius:999px;background:rgba(255,47,146,.12);font-size:1.8rem}.package-card-head h3{margin:0 0 7px}.package-card-head p,.package-suitable{margin:0;color:var(--muted);font-size:.84rem;line-height:1.45}.package-suitable{margin-top:14px;padding-top:14px;border-top:1px dashed rgba(102,112,133,.2)}.package-price{display:flex;align-items:baseline;gap:5px;margin-top:20px;padding-top:14px;border-top:1px dashed rgba(102,112,133,.18);flex-wrap:wrap}.package-price span{color:var(--pink);font-weight:900}.package-price strong{color:var(--pink);font-size:clamp(1.5rem,2.4vw,2rem);font-weight:900}.package-price small{color:var(--pink);font-weight:900}.payment-note{color:var(--muted);font-size:.76rem;font-weight:800;margin-bottom:14px}.shop-package-card ul,.shop-service-card ul{display:grid;gap:7px;margin:0 0 18px;padding:0;list-style:none;color:var(--muted);font-size:.82rem}.shop-package-card li,.shop-service-card li{position:relative;padding-left:17px}.shop-package-card li:before,.shop-service-card li:before{content:"✓";position:absolute;left:0;color:var(--orange);font-weight:900}.shop-choose-btn,.shop-service-btn{width:100%;margin-top:auto;padding:12px 16px;border:1px solid rgba(255,47,146,.22);border-radius:12px;color:var(--pink);background:transparent;box-shadow:none;font-size:.82rem}.shop-package-card.featured .shop-choose-btn,.shop-choose-btn:hover,.shop-service-btn:hover{color:#fff;border-color:transparent;background:linear-gradient(100deg,var(--pink),var(--orange))}
.shop-service-card{min-height:240px;display:grid;grid-template-columns:48px 1fr;gap:12px 14px;padding:22px;border:1px solid rgba(255,47,146,.14);border-radius:16px;background:var(--surface);box-shadow:0 14px 40px rgba(18,20,38,.055)}.shop-service-icon{width:48px;height:48px;border-radius:16px;display:grid;place-items:center;background:rgba(255,47,146,.10);font-size:1.35rem}.shop-service-group{display:block;color:var(--pink);font-size:.68rem;font-weight:900;letter-spacing:.05em;text-transform:uppercase}.shop-service-card h3{margin:4px 0 6px}.shop-service-card p{margin:0;color:var(--muted);font-size:.82rem;line-height:1.45}.shop-service-card ul,.shop-service-card strong,.shop-service-btn{grid-column:1/-1}.shop-service-card strong{color:var(--pink);font-size:.84rem}
.shop-view-all-wrap{display:flex;justify-content:center}.shop-benefit-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:18px;padding:22px;border:1px solid rgba(255,47,146,.12);border-radius:26px;background:linear-gradient(100deg,rgba(255,47,146,.06),rgba(255,107,44,.05)),var(--surface);box-shadow:0 18px 52px rgba(18,20,38,.055)}.shop-benefit-item{display:flex;align-items:center;gap:11px}.shop-benefit-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;font-size:1.2rem}.benefit-icon-secure{background:rgba(18,183,106,.12)}.benefit-icon-delivery{background:rgba(255,107,44,.12)}.benefit-icon-consult{background:rgba(138,77,255,.12)}.benefit-icon-support{background:rgba(255,47,146,.12)}.shop-benefit-item strong,.shop-benefit-item small{display:block}.shop-benefit-item small{color:var(--muted);font-size:.72rem}.nav-currency-control{width:96px;margin:0}.nav-currency-control select{height:43px;border-radius:14px;border:1px solid var(--line);background:var(--surface-strong);color:var(--text);padding:0 12px;font-weight:900}.cart-float{position:fixed;left:22px;bottom:22px;z-index:72;min-width:84px;height:54px;display:inline-flex;align-items:center;justify-content:center;gap:10px;border:0;border-radius:999px;color:#fff;background:linear-gradient(135deg,var(--pink),var(--orange));box-shadow:0 18px 45px rgba(255,47,146,.34);cursor:pointer}.cart-float[hidden],.shop-catalog [hidden],.popular-package-grid[hidden],.shop-service-grid[hidden],.shop-block-head[hidden]{display:none!important}.cart-float-count{min-width:26px;height:26px;display:grid;place-items:center;border-radius:999px;background:rgba(255,255,255,.22)}
.cart-review-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,360px);gap:18px}.cart-review-panel,.cart-summary-card,.empty-cart-card{border:1px solid var(--line);border-radius:24px;background:var(--surface);padding:22px;box-shadow:0 18px 50px rgba(0,0,0,.06)}.cart-item{display:grid;grid-template-columns:1fr auto auto auto;gap:12px;align-items:center;border-bottom:1px solid var(--line);padding:14px 0}.cart-item strong{display:block}.cart-item small,.cart-item .category{color:var(--muted);font-size:.78rem}.cart-qty{display:inline-grid;grid-template-columns:34px 34px 34px;border:1px solid var(--line);border-radius:13px;overflow:hidden}.cart-qty button{border:0;background:var(--surface-strong);cursor:pointer}.cart-remove{border:0;background:transparent;color:var(--pink);font-weight:900;cursor:pointer}.cart-total-row{display:flex;justify-content:space-between;margin:18px 0;padding-top:14px;border-top:1px solid var(--line)}.cart-total-row strong{color:var(--pink);font-size:1.45rem}.cart-checkout{width:100%;margin-top:10px}
@media (max-width: 1180px){.popular-package-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.growth-steps{grid-template-columns:repeat(4,minmax(0,1fr))}.service-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.service-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:1040px){.restored-hero-grid{grid-template-columns:1fr;text-align:center}.restored-hero .hero-copy p,.restored-stats{margin-left:auto;margin-right:auto}.hero-ctas{justify-content:center}.growth-engine-cta{grid-template-columns:auto 1fr}.growth-engine-cta .btn{grid-column:span 2}.shop-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cart-review-layout{grid-template-columns:1fr}.career-intro{grid-template-columns:1fr}.career-avatar{grid-column:1;grid-row:auto;width:min(260px,70%);margin:auto}}
@media (max-width:720px){.nav{height:70px}.logo small{display:none}.restored-hero{padding-top:24px}.restored-hero .hero-copy h1{font-size:clamp(2.7rem,12vw,4rem)}.restored-stats{grid-template-columns:repeat(2,minmax(0,1fr))}.restored-visual{min-height:470px}.bubble{width:48px;height:48px}.trusted-strip div{gap:14px}.service-help-panel,.growth-engine{padding:20px;border-radius:24px}.service-quick-grid,.popular-package-grid,.shop-service-grid,.shop-benefit-strip{grid-template-columns:1fr}.service-category-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.service-category-head{display:block}.growth-steps{grid-template-columns:1fr}.growth-engine-cta{grid-template-columns:1fr;text-align:center}.service-avatar-icon{margin:auto}.shop-filter-slider{grid-template-columns:1fr}.shop-filter-arrow{display:none}.shop-package-card{min-height:auto}.cart-item{grid-template-columns:1fr;align-items:start}.hero-ctas .btn,.form-actions .btn{width:100%}}

/* 2026 typography and navbar normalization */
:root {
  --font-main: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-height: 78px;
}

html,
body {
  font-family: var(--font-main);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
p,
li,
small,
input,
select,
textarea,
button {
  font-family: var(--font-main);
}

p,
li,
.service-card p,
.service-category-card p,
.service-help-panel p,
.growth-engine-head p,
.growth-step small,
.muted-copy,
.form-note,
.booking-note,
.info-card p,
.client-design-copy p,
.client-design-copy ul,
.career-intro p,
.shop-page-hero p,
.package-card-head p,
.package-suitable,
.payment-note,
.shop-service-card p,
.shop-package-card ul,
.shop-service-card ul,
.shop-benefit-item small,
.cart-item small,
.cart-item .category,
.footer p {
  font-weight: 400 !important;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.logo strong,
.section-title h2,
.hero-copy h1,
.restored-hero .hero-copy h1,
.service-help-panel h2,
.service-category-head h2,
.growth-engine-head h2,
.career-intro h2,
.info-card h2,
.booking-card h2,
.shop-page-hero h1,
.error-copy h1 {
  font-family: var(--font-main);
  font-weight: 700;
}

.logo strong { font-size: 1rem; font-weight: 700; letter-spacing: -.015em; }
.logo small { font-size: .78rem; font-weight: 400; letter-spacing: 0; }
.badge,
.eyebrow { font-weight: 700; }

.header {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav {
  height: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.logo {
  min-width: 0;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.55vw, 24px);
  min-width: 0;
  font-size: .88rem;
  line-height: 1;
  font-weight: 500;
}

.nav-links a,
.dropdown-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 500;
  line-height: 1;
  padding: 0 2px;
  white-space: nowrap;
}

.nav-links a.active,
.nav-links .active,
.nav-links a:hover,
.dropdown-trigger:hover,
.dropdown-trigger.active {
  color: var(--pink);
}

.dropdown-menu a {
  min-height: 38px;
  justify-content: flex-start;
  font-weight: 400;
  font-size: .9rem;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
}

.btn {
  font-weight: 700;
  letter-spacing: 0;
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: .88rem;
}

.theme-toggle,
.menu-toggle,
.theme-switch,
.nav-currency-control select {
  height: 44px;
  min-height: 44px;
  flex: 0 0 auto;
}

.theme-toggle,
.menu-toggle {
  width: 44px;
  display: inline-grid;
  place-items: center;
}

.theme-switch {
  width: 64px;
  min-width: 64px;
  padding: 3px;
}

.theme-switch-control {
  width: 58px;
  height: 32px;
}

.nav-currency-control select {
  width: 100%;
  font-weight: 500;
  font-size: .88rem;
  line-height: 1;
  text-overflow: ellipsis;
}

.nav-currency-control {
  width: 72px;
  flex: 0 0 72px;
}

.nav-currency-control select {
  padding: 0 10px;
}

.service-quick-card strong,
.service-category-card h3,
.growth-step strong,
.feature-chip strong,
.case-card h3,
.shop-block-head h2,
.package-card-head h3,
.shop-service-card h3,
.shop-benefit-item strong,
.cart-item strong {
  font-weight: 700;
}

.stat-card small,
.restored-stats .stat-card small,
.feature-chip small,
.case-card p,
.footer a:not(.logo),
label {
  font-weight: 400 !important;
}

label { font-size: .86rem; }

.shop-filter-chip {
  font-weight: 500;
  font-size: .9rem;
}

.shop-filter-chip.active,
.shop-filter-chip[aria-selected="true"] {
  font-weight: 700;
}

.shop-package-card li,
.shop-service-card li {
  font-weight: 400;
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
    gap: 16px;
  }
  .nav-links { gap: 14px; font-size: .84rem; }
  .btn-small { padding: 0 14px; }
  .nav-currency-control { width: 72px; flex-basis: 72px; }
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .nav-links {
    justify-self: stretch;
    align-items: stretch;
    gap: 6px;
    font-size: .96rem;
    line-height: 1.2;
  }
  .nav-links a,
  .dropdown-trigger {
    min-height: 44px;
    justify-content: flex-start;
    padding: 12px 14px;
  }
  .nav-actions .nav-currency-control {
    display: none;
  }
}

@media (max-width: 720px) {
  :root { --nav-height: 70px; }
  .nav { gap: 10px; }
  .logo strong { font-size: .95rem; }
  .header .btn-small { display: none; }
  .theme-switch { width: 58px; min-width: 58px; }
}

/* Desktop nav should show full menu; hamburger only appears on tablet/mobile */
.menu-toggle {
  display: none !important;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-grid !important;
    place-items: center;
  }
}

/* Colorful services and Growth Engine icons */
.growth-step {
  --step-color: var(--pink);
  --step-soft: rgba(255, 47, 146, .12);
  border-color: color-mix(in srgb, var(--step-color) 24%, transparent);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--step-color) 10%, transparent);
}

.growth-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--step-color);
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 2;
}

.step-num {
  color: var(--step-color);
  background: color-mix(in srgb, var(--step-color) 14%, #fff 86%);
  border-color: color-mix(in srgb, var(--step-color) 34%, transparent);
}

.engine-icon {
  color: var(--step-color);
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.72), transparent 42%),
    color-mix(in srgb, var(--step-color) 14%, #fff 86%);
  border: 1px solid color-mix(in srgb, var(--step-color) 28%, transparent);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--step-color) 18%, transparent);
}

.engine-step-pink { --step-color: #ff2f92; --step-soft: rgba(255,47,146,.12); }
.engine-step-purple { --step-color: #8a4dff; --step-soft: rgba(138,77,255,.12); }
.engine-step-green { --step-color: #12b76a; --step-soft: rgba(18,183,106,.12); }
.engine-step-blue { --step-color: #3478f6; --step-soft: rgba(52,120,246,.12); }
.engine-step-orange { --step-color: #ff6b2c; --step-soft: rgba(255,107,44,.12); }
.engine-step-rose { --step-color: #ff2f92; --step-soft: rgba(255,47,146,.12); }
.engine-step-violet { --step-color: #8a4dff; --step-soft: rgba(138,77,255,.12); }
.engine-step-emerald { --step-color: #20c997; --step-soft: rgba(32,201,151,.12); }

.service-icon-badge {
  border-color: color-mix(in srgb, currentColor 28%, transparent);
  box-shadow: 0 12px 28px color-mix(in srgb, currentColor 14%, transparent);
}

.service-icon-social { color: #ff2f92; background: rgba(255,47,146,.12); }
.service-icon-whatsapp { color: #12b76a; background: rgba(18,183,106,.12); }
.service-icon-web { color: #3478f6; background: rgba(52,120,246,.12); }
.service-icon-ai { color: #8a4dff; background: rgba(138,77,255,.12); }
.service-icon-dashboard { color: #3478f6; background: rgba(52,120,246,.12); }
.service-icon-cloud { color: #2eaadc; background: rgba(46,170,220,.12); }
.service-icon-quality { color: #ff8a00; background: rgba(255,138,0,.13); }
.service-icon-design { color: #f044c7; background: rgba(240,68,199,.12); }
.service-icon-training { color: #ff6b2c; background: rgba(255,107,44,.12); }

html[data-theme="dark"] .step-num,
html[data-theme="dark"] .engine-icon {
  background: color-mix(in srgb, var(--step-color) 18%, #10172a 82%);
}

@media (max-width: 1180px) {
  .growth-step:nth-child(4)::after { display: none; }
}

@media (max-width: 720px) {
  .growth-step::after { display: none !important; }
}

/* Unified typography scale across all pages */
:root {
  --type-xs: .75rem;
  --type-sm: .875rem;
  --type-base: 1rem;
  --type-md: 1.0625rem;
  --type-lg: 1.2rem;
  --type-xl: 1.55rem;
  --type-2xl: 2rem;
  --type-3xl: 2.65rem;
  --type-hero: clamp(3.25rem, 5.15vw, 5rem);
  --leading-tight: 1.12;
  --leading-title: 1.18;
  --leading-copy: 1.65;
}

body {
  font-size: var(--type-base);
  line-height: var(--leading-copy);
}

h1, h2, h3, h4, p { letter-spacing: 0; }

.hero-copy h1,
.restored-hero .hero-copy h1,
.client-landing-copy h1,
.error-copy h1 {
  font-size: var(--type-hero) !important;
  line-height: var(--leading-tight) !important;
  letter-spacing: -.025em !important;
  font-weight: 700 !important;
}

.section-title h2,
.service-category-head h2,
.growth-engine-head h2,
.client-detail-section h2,
.career-intro h2,
.shop-page-hero h1,
.info-card h2,
.booking-card h2 {
  font-size: clamp(1.9rem, 3vw, var(--type-3xl)) !important;
  line-height: var(--leading-title) !important;
  letter-spacing: -.018em !important;
  font-weight: 700 !important;
}

.service-help-panel h2,
.restored-about h2,
.form-card h3,
.empty-cart-card h2,
.cart-summary-card h2 {
  font-size: clamp(1.45rem, 2.2vw, var(--type-2xl)) !important;
  line-height: 1.22 !important;
  letter-spacing: -.012em !important;
  font-weight: 700 !important;
}

.hero-copy p,
.restored-hero .hero-copy p,
.section-title p,
.service-help-panel p,
.service-category-head p,
.growth-engine-head p,
.client-landing-copy p,
.client-detail-section p,
.client-design-copy p,
.career-intro p,
.shop-page-hero p,
.info-card p,
.booking-card p,
.footer p,
.muted-copy {
  font-size: var(--type-base) !important;
  line-height: var(--leading-copy) !important;
  font-weight: 400 !important;
  color: var(--muted);
}

.nav-links,
.nav-links a,
.dropdown-trigger,
.nav-currency-control select {
  font-size: var(--type-sm) !important;
  font-weight: 500 !important;
}

.logo strong { font-size: 1rem !important; line-height: 1.08 !important; }
.logo small { font-size: .78rem !important; line-height: 1.25 !important; }

.btn,
.btn-small,
.shop-choose-btn,
.shop-service-btn,
.cart-checkout {
  font-size: var(--type-sm) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.badge,
.eyebrow,
.client-status,
.shop-service-group,
.popular-ribbon,
.limit {
  font-size: var(--type-xs) !important;
  font-weight: 700 !important;
  letter-spacing: .045em !important;
}

.service-quick-card strong,
.service-category-card h3,
.service-card h3,
.growth-step strong,
.feature-chip strong,
.case-card h3,
.package-card-head h3,
.shop-service-card h3,
.shop-benefit-item strong,
.cart-item strong,
.client-mini-card,
.footer h4 {
  font-size: var(--type-base) !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.service-quick-card small,
.service-category-card p,
.service-card p,
.growth-step small,
.feature-chip small,
.case-card p,
.package-card-head p,
.package-suitable,
.payment-note,
.shop-package-card li,
.shop-service-card p,
.shop-service-card li,
.shop-benefit-item small,
.cart-item small,
.cart-item .category,
.footer a:not(.logo),
label,
.form-note,
.booking-note {
  font-size: var(--type-sm) !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
}

.stat-card strong,
.restored-stats .stat-card strong,
.case-card strong,
.cart-total-row strong {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem) !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
}

.stat-card small,
.restored-stats .stat-card small {
  font-size: var(--type-xs) !important;
  line-height: 1.3 !important;
  font-weight: 400 !important;
}

.package-price strong {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem) !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.package-price span,
.package-price small,
.shop-service-card strong {
  font-size: var(--type-sm) !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

input, select, textarea {
  font-size: var(--type-sm) !important;
  line-height: 1.35 !important;
}

@media (max-width: 1180px) {
  :root {
    --type-hero: clamp(2.9rem, 7vw, 4.25rem);
    --type-3xl: 2.35rem;
    --type-2xl: 1.8rem;
  }
  .nav-links,
  .nav-links a,
  .dropdown-trigger { font-size: .83rem !important; }
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-links a,
  .dropdown-trigger {
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }
  .dropdown-menu a { font-size: .95rem !important; }
}

@media (max-width: 720px) {
  :root {
    --type-base: .96rem;
    --type-md: 1rem;
    --type-lg: 1.1rem;
    --type-xl: 1.35rem;
    --type-2xl: 1.65rem;
    --type-3xl: 2rem;
    --type-hero: clamp(2.55rem, 11.5vw, 3.7rem);
  }

  .hero-copy h1,
  .restored-hero .hero-copy h1,
  .client-landing-copy h1,
  .error-copy h1 {
    line-height: 1.08 !important;
    letter-spacing: -.02em !important;
  }

  .section-title h2,
  .service-category-head h2,
  .growth-engine-head h2,
  .client-detail-section h2,
  .career-intro h2,
  .shop-page-hero h1,
  .info-card h2,
  .booking-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    line-height: 1.16 !important;
  }

  .hero-copy p,
  .restored-hero .hero-copy p,
  .section-title p,
  .service-help-panel p,
  .service-category-head p,
  .growth-engine-head p,
  .client-landing-copy p,
  .career-intro p,
  .shop-page-hero p,
  .info-card p,
  .booking-card p,
  .muted-copy {
    font-size: .95rem !important;
    line-height: 1.6 !important;
  }

  .service-quick-card strong,
  .service-category-card h3,
  .growth-step strong,
  .package-card-head h3,
  .shop-service-card h3 {
    font-size: .98rem !important;
  }

  .service-quick-card small,
  .service-category-card p,
  .growth-step small,
  .package-card-head p,
  .shop-package-card li,
  .shop-service-card p,
  .shop-service-card li,
  label,
  input,
  select,
  textarea {
    font-size: .88rem !important;
  }
}

@media (max-width: 420px) {
  :root { --type-hero: clamp(2.25rem, 12vw, 3.1rem); }
  .logo strong { font-size: .9rem !important; }
  .badge,
  .eyebrow { font-size: .68rem !important; }
}


/* Balanced header spacing across languages */
.nav {
  grid-template-columns: minmax(205px, .82fr) minmax(430px, 1.18fr) max-content;
  gap: clamp(14px, 1.6vw, 26px);
}
.logo { max-width: 250px; }
.logo small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }
.nav-links {
  gap: clamp(13px, 1.25vw, 22px);
  font-size: .84rem;
}
.nav-links a,
.dropdown-trigger { padding: 0; }
.nav-actions { gap: 8px; }
.nav-actions .btn-small {
  min-width: 116px;
  padding: 0 16px;
}
.theme-switch { width: 58px; min-width: 58px; }
.theme-switch-control { width: 52px; }
.nav-currency-control { width: 66px; flex-basis: 66px; }
.nav-currency-control select { padding: 0 8px; }

@media (max-width: 1240px) {
  .nav {
    grid-template-columns: minmax(190px, .78fr) minmax(390px, 1.1fr) max-content;
    gap: 12px;
  }
  .logo { max-width: 220px; }
  .logo small { max-width: 160px; }
  .nav-links { gap: 11px; font-size: .8rem; }
  .nav-actions { gap: 7px; }
  .nav-actions .btn-small { min-width: 104px; padding: 0 13px; font-size: .82rem; }
  .theme-switch { width: 54px; min-width: 54px; }
  .theme-switch-control { width: 48px; }
  .nav-currency-control { width: 60px; flex-basis: 60px; }
}

@media (max-width: 1120px) and (min-width: 1041px) {
  .nav {
    grid-template-columns: minmax(174px, .72fr) minmax(360px, 1fr) max-content;
  }
  .logo-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .logo strong { font-size: .9rem; }
  .logo small { font-size: .68rem; max-width: 136px; }
  .nav-links { gap: 9px; font-size: .76rem; }
  .nav-actions .btn-small { min-width: 94px; padding: 0 11px; }
  .theme-switch { width: 50px; min-width: 50px; }
  .theme-switch-control { width: 44px; }
  .nav-currency-control { width: 56px; flex-basis: 56px; }
}


/* Final mobile drawer usability override */
@media (max-width: 1040px) {
  body.menu-open { overflow: hidden; }
  .header { position: sticky; top: 0; z-index: 120; }
  .nav {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 10px !important;
    height: var(--nav-height) !important;
  }
  .logo { max-width: none !important; }
  .logo small { display: none !important; }
  .nav-actions { min-width: 0 !important; gap: 8px !important; }
  .nav-actions .btn-small,
  .nav-actions .nav-currency-control { display: none !important; }
  .theme-switch { width: 58px !important; min-width: 58px !important; }
  .theme-switch-control { width: 52px !important; }
  .menu-toggle {
    position: relative;
    z-index: 140;
    width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    display: inline-grid !important;
    place-items: center;
    border-radius: 18px;
    font-size: 1.35rem;
    font-weight: 700;
  }
  .nav-links {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: calc(var(--nav-height) + 14px) !important;
    z-index: 130 !important;
    display: none !important;
    max-height: calc(100dvh - var(--nav-height) - 28px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 18px !important;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: 0 26px 80px rgba(18, 20, 38, .2);
  }
  .nav-links.open { display: flex !important; }
  .nav-links a,
  .dropdown-trigger {
    min-height: 46px !important;
    justify-content: flex-start !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: .98rem !important;
  }
  .nav-dropdown { width: 100% !important; }
  .dropdown-menu {
    position: static !important;
    display: grid !important;
    min-width: 0 !important;
    transform: none !important;
    margin: 6px 0 4px !important;
    box-shadow: none !important;
    background: rgba(255, 47, 146, .05) !important;
  }
}


/* Tailwind-assisted motion polish */
.hds-reveal {
  transition-delay: calc(var(--motion-order, 0) * 48ms);
  will-change: opacity, transform;
}
.hds-in { will-change: auto; }
.logo-mark,
.hero-avatar,
.about-avatar,
.career-avatar,
.service-avatar-icon img,
.error-visual img {
  animation: hds-soft-float 5.5s ease-in-out infinite;
}
.bubble,
.service-icon-badge,
.package-icon,
.shop-service-icon,
.shop-benefit-icon,
.engine-icon {
  animation: hds-soft-pulse 4.2s ease-in-out infinite;
}
.bubble:nth-child(2n),
.service-category-card:nth-child(2n) .service-icon-badge,
.growth-step:nth-child(2n) .engine-icon { animation-delay: .8s; }
.bubble:nth-child(3n),
.service-category-card:nth-child(3n) .service-icon-badge,
.growth-step:nth-child(3n) .engine-icon { animation-delay: 1.4s; }
.btn,
.shop-filter-chip,
.service-category-card,
.shop-package-card,
.shop-service-card,
.growth-step,
.case-card {
  transform: translateZ(0);
}
.btn:hover,
.shop-filter-chip:hover {
  transform: translateY(-2px);
}
.service-category-card:hover,
.shop-package-card:hover,
.shop-service-card:hover,
.growth-step:hover,
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(255, 47, 146, .15);
}
.nav-links.open {
  animation: hds-menu-enter .22s cubic-bezier(.2,.8,.2,1) both;
}
.theme-switch-thumb,
.cart-float,
.whatsapp-float {
  transition: transform .24s cubic-bezier(.2,.8,.2,1), box-shadow .24s cubic-bezier(.2,.8,.2,1);
}
.theme-switch:hover .theme-switch-thumb,
.cart-float:hover,
.whatsapp-float:hover {
  transform: scale(1.06);
}
@keyframes hds-soft-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes hds-soft-pulse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -3px, 0) scale(1.035); }
}
@keyframes hds-menu-enter {
  from { opacity: 0; transform: translateY(-10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hds-reveal { opacity: 1 !important; transform: none !important; }
}


/* Global responsive stabilization across all pages */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
*,
*::before,
*::after { box-sizing: border-box; }
img,
svg,
video,
canvas,
iframe { max-width: 100%; }
.container { width: min(var(--container), calc(100% - 32px)); }
.section { overflow: clip; }
.form-card,
.booking-card,
.info-card,
.cart-review-panel,
.cart-summary-card,
.empty-cart-card,
.shop-package-card,
.shop-service-card,
.service-category-card,
.service-quick-card,
.case-card,
.feature-chip,
.client-design-card,
.client-project-picker,
.client-mini-card,
.error-panel { min-width: 0; }

@media (max-width: 1180px) {
  .container { width: min(100% - 28px, var(--container)); }
  .restored-hero-grid,
  .client-landing-grid,
  .client-detail-grid,
  .contact-grid,
  .career-panel,
  .split-card,
  .error-panel { grid-template-columns: 1fr; }
  .restored-hero-grid,
  .client-landing-grid,
  .error-panel { text-align: center; }
  .restored-hero .hero-copy p,
  .hero-copy p,
  .client-landing-copy p,
  .error-copy p { margin-left: auto; margin-right: auto; }
  .hero-ctas,
  .client-actions,
  .error-panel .hero-ctas { justify-content: center; }
  .restored-visual { min-height: 460px; order: 2; }
  .restored-visual .hero-avatar { width: min(430px, 90%); }
  .service-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-category-grid,
  .case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .growth-step:nth-child(4)::after { display: none !important; }
  .popular-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 48px 0; }
  .restored-hero { padding: 24px 0 32px; }
  .restored-hero-grid { min-height: auto; gap: 16px; }
  .restored-hero .hero-copy h1 { font-size: clamp(2.7rem, 10vw, 4.5rem) !important; }
  .restored-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 520px; margin-left: auto; margin-right: auto; }
  .trusted-strip div { display: flex; overflow-x: auto; justify-content: flex-start; gap: 14px; padding: 2px 0 8px; scroll-snap-type: x proximity; }
  .trusted-strip span { flex: 0 0 auto; scroll-snap-align: start; }
  .service-help-panel,
  .growth-engine,
  .restored-about,
  .career-panel,
  .error-panel { padding: 22px; border-radius: 26px; }
  .service-category-head { display: block; }
  .service-category-head .btn { margin-top: 16px; }
  .growth-engine-cta { grid-template-columns: 1fr; text-align: center; }
  .growth-engine-cta .btn { width: 100%; }
  .service-avatar-icon { margin: 0 auto; }
  .career-intro { grid-template-columns: 1fr; text-align: left; }
  .career-intro .badge,
  .career-intro h2,
  .career-intro p,
  .career-intro .benefit-row,
  .career-avatar { grid-column: auto; grid-row: auto; }
  .career-avatar { width: min(280px, 72%); margin: 0 auto; }
  .client-design-card { grid-template-columns: 1fr; padding: 18px; }
  .client-design-media { min-height: 260px; }
  .client-design-copy { padding: 0; }
  .client-landing-media img { height: 360px; }
  .client-landing-media { min-height: 360px; }
  .client-detail-list,
  .feature-list,
  .two-fields { grid-template-columns: 1fr; }
  .map-card,
  .map-frame,
  .map-card-inline,
  .map-card-inline .map-frame { min-height: 340px !important; }
  .shop-filter-slider { grid-template-columns: minmax(0, 1fr); }
  .shop-filter-arrow { display: none; }
  .shop-filter-row { margin-inline: -2px; padding-bottom: 10px; }
  .cart-review-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 1fr; align-items: start; }
  .cart-qty { width: 112px; }
}

@media (max-width: 720px) {
  :root { --nav-height: 74px; }
  html { scroll-padding-top: calc(var(--nav-height) + 16px); }
  body { padding-top: var(--nav-height); }
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 40px 0; }
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    min-height: var(--nav-height);
    z-index: 500;
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    box-shadow: 0 12px 30px rgba(18, 20, 38, .08);
  }
  .nav { min-height: var(--nav-height) !important; }
  .logo-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .logo strong { font-size: .96rem !important; }
  .nav-actions { gap: 8px !important; }
  .theme-switch { width: 58px !important; min-width: 58px !important; }
  .menu-toggle { width: 54px !important; height: 54px !important; }
  .nav-links {
    left: 12px !important;
    right: 12px !important;
    top: calc(var(--nav-height) + 10px) !important;
    max-height: calc(100dvh - var(--nav-height) - 22px);
    overflow-y: auto;
    padding: 16px !important;
    border-radius: 22px !important;
  }
  .hero-ctas,
  .client-actions,
  .form-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-ctas .btn,
  .client-actions .btn,
  .form-actions .btn,
  .booking-card .btn,
  .form-card .btn { width: 100%; }
  .shop-page-main .container {
    width: min(100% - 36px, var(--container));
  }
  .restored-visual { min-height: 390px; }
  .restored-visual .orbit { width: min(88vw, 330px); height: min(88vw, 330px); }
  .restored-visual .hero-avatar { width: min(360px, 96%); }
  .bubble { width: 44px !important; height: 44px !important; font-size: .9rem; }
  .bubble-ai { left: 9% !important; top: 18% !important; }
  .bubble-wa { right: 7% !important; top: 25% !important; }
  .bubble-heart { right: 9% !important; top: 8% !important; }
  .bubble-chart { right: 10% !important; top: 46% !important; }
  .bubble-rocket { left: 10% !important; bottom: 20% !important; }
  .bubble-fb { right: 18% !important; bottom: 20% !important; }
  .bubble-tk { left: 25% !important; bottom: 7% !important; }
  .bubble-sheet { left: 7% !important; top: 43% !important; }
  .service-quick-grid,
  .growth-steps,
  .case-grid,
  .popular-package-grid,
  .shop-service-grid,
  .shop-benefit-strip,
  .footer-grid { grid-template-columns: 1fr; }
  .restored-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 360px;
    width: 100%;
    margin: 20px auto 0;
  }
  .restored-stats .stat-card {
    min-height: 96px;
    padding: 16px 10px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(255, 47, 146, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 12px 34px rgba(255, 47, 146, .08);
  }
  .service-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .service-quick-card { min-height: 76px; }
  .service-category-card {
    min-height: 170px;
    padding: 14px;
    border-radius: 18px;
  }
  .service-category-card h3 {
    margin: 10px 0 6px;
    font-size: .86rem;
    line-height: 1.25;
  }
  .service-category-card p {
    font-size: .75rem;
    line-height: 1.45;
  }
  .service-category-card a {
    font-size: .74rem;
  }
  .shop-service-card,
  .shop-package-card { border-radius: 18px; }
  .growth-step { min-height: auto; }
  .growth-step::after { display: none !important; }
  .growth-engine-head { margin-bottom: 18px; }
  .package-card-head { grid-template-columns: 58px 1fr; min-height: auto; }
  .package-icon { width: 56px; height: 56px; font-size: 1.45rem; }
  .shop-package-card { min-height: auto; padding: 26px 18px 18px; }
  .shop-benefit-item { align-items: flex-start; }
  .cart-float { left: 14px; bottom: 14px; min-width: 72px; height: 50px; }
  .whatsapp-float { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  .client-landing-hero { padding: 28px 0; }
  .client-landing-media,
  .client-landing-media img { min-height: 240px; height: 240px; }
  .client-mini-card { grid-template-columns: 64px 1fr; }
  .client-mini-card img { width: 64px; height: 52px; }
  .contact-grid { gap: 16px; }
  .form-card,
  .booking-card,
  .info-card,
  .cart-review-panel,
  .cart-summary-card,
  .empty-cart-card { padding: 18px; border-radius: 22px; }
  input,
  select,
  textarea { width: 100%; min-width: 0; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 20px, var(--container)); }
  .shop-page-main .container {
    width: min(100% - 36px, var(--container));
  }
  .section { padding: 34px 0; }
  .logo { gap: 8px; }
  .logo-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .logo strong { font-size: .9rem !important; }
  .theme-switch { width: 52px !important; min-width: 52px !important; height: 50px !important; }
  .theme-switch-control { width: 46px !important; }
  .menu-toggle { width: 50px !important; height: 50px !important; min-height: 50px !important; }
  .nav-links { top: calc(var(--nav-height) + 10px) !important; max-height: calc(100dvh - var(--nav-height) - 20px); }
  .restored-hero .hero-copy h1 { font-size: clamp(2.25rem, 12vw, 3.25rem) !important; }
  .restored-hero .hero-copy p,
  .section-title p,
  .service-help-panel p,
  .service-category-head p,
  .growth-engine-head p,
  .shop-page-hero p,
  .client-landing-copy p,
  .info-card p,
  .booking-card p { font-size: .92rem !important; }
  .restored-visual { min-height: 330px; }
  .bubble { width: 38px !important; height: 38px !important; }
  .trusted-strip strong { text-align: left; }
  .service-help-panel,
  .growth-engine,
  .restored-about,
  .career-panel,
  .error-panel { padding: 18px; border-radius: 22px; }
  .service-quick-card { padding: 12px; }
  .service-icon-badge,
  .shop-service-icon,
  .shop-benefit-icon { width: 42px; height: 42px; flex-basis: 42px; }
  .shop-service-card,
  .shop-package-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .shop-filter-chip { min-height: 42px; padding: 0 16px; }
  .package-card-head { grid-template-columns: 1fr; text-align: left; }
  .package-price strong { font-size: 1.55rem !important; }
  .map-card,
  .map-frame,
  .map-card-inline,
  .map-card-inline .map-frame { min-height: 300px !important; }
  .footer .container {
    width: min(100% - 44px, var(--container));
  }
  .footer-grid {
    gap: 22px;
  }
  .footer { padding: 34px 0 88px; }
}


/* Keep navigation available on every viewport while scrolling */
html {
  scroll-padding-top: calc(var(--nav-height, 78px) + 16px);
}

body {
  padding-top: var(--nav-height, 78px);
}

.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  min-height: var(--nav-height, 78px);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  box-shadow: 0 12px 30px rgba(18, 20, 38, .08);
}

.nav-actions {
  align-items: center !important;
}

.nav-actions > * {
  align-self: center;
}

.nav-currency-control,
.nav-currency-control select {
  height: 44px !important;
  min-height: 44px !important;
}

.nav-currency-control {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
}

.nav-currency-control select {
  display: block;
  line-height: 1 !important;
  padding: 0 12px !important;
  appearance: auto;
}

.shop-page-main .shop-catalog-section,
.shop-page-main .shop-block-head,
.shop-page-main .shop-package-card,
.shop-page-main .shop-service-card,
.shop-page-main .shop-benefit-item {
  opacity: 1 !important;
  transform: none !important;
}

.service-category-card {
  align-items: stretch !important;
  justify-content: flex-start;
  text-align: center;
  min-height: 360px;
  padding: 0 !important;
  overflow: hidden;
}

.service-category-media {
  width: 100%;
  height: 50%;
  min-height: 176px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: rgba(255, 47, 146, .08);
}

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

.service-category-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 20px;
}

.service-category-card h3,
.service-category-card p,
.service-category-card a {
  text-align: center;
}

.service-category-card p {
  max-width: 28ch;
}

.service-category-card a {
  align-self: center;
}

@media (max-width: 720px) {
  .service-category-card {
    min-height: 280px;
  }
  .service-category-media {
    min-height: 128px;
  }
  .service-category-body {
    padding: 12px 10px 14px;
  }
}

@media (max-width: 1040px) {
  :root { --nav-height: 86px; }
  .logo {
    min-width: 0 !important;
    max-width: min(58vw, 360px) !important;
    gap: 10px !important;
  }
  .logo small {
    display: block !important;
    max-width: 100% !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .78rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
  }
  .logo strong {
    font-size: 1rem !important;
    line-height: 1.08 !important;
  }
  .logo-mark {
    width: 52px !important;
    height: 52px !important;
    flex-basis: 52px !important;
  }
}

@media (max-width: 420px) {
  .logo { max-width: 54vw !important; }
  .logo small { font-size: .72rem !important; }
  .logo strong { font-size: .92rem !important; }
}


/* Booking form polish and precise mobile drawer */
.booking-card form,
.form-card {
  --field-bg: color-mix(in srgb, var(--surface-strong) 72%, transparent);
}
.booking-card label,
.form-card label {
  gap: 8px;
  color: var(--text);
  font-weight: 500 !important;
}
.booking-card input,
.booking-card select,
.booking-card textarea,
.form-card input,
.form-card select,
.form-card textarea {
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border-color: rgba(255, 47, 146, .18);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.42)), var(--field-bg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 10px 28px rgba(18,20,38,.035);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.booking-card textarea,
.form-card textarea {
  min-height: 118px;
  padding-top: 14px;
  line-height: 1.55;
}
.booking-card input::placeholder,
.booking-card textarea::placeholder,
.form-card input::placeholder,
.form-card textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, white);
  opacity: 1;
}
.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus,
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: rgba(255, 47, 146, .62);
  background: var(--surface-strong);
  box-shadow: 0 0 0 4px rgba(255,47,146,.1), 0 14px 34px rgba(255,47,146,.08);
  transform: translateY(-1px);
}
html[data-theme="dark"] .booking-card input,
html[data-theme="dark"] .booking-card select,
html[data-theme="dark"] .booking-card textarea,
html[data-theme="dark"] .form-card input,
html[data-theme="dark"] .form-card select,
html[data-theme="dark"] .form-card textarea {
  background: color-mix(in srgb, var(--surface-strong) 86%, #ffffff 4%);
  border-color: rgba(255, 47, 146, .28);
}

@media (max-width: 1040px) {
  .nav-links {
    left: auto !important;
    right: 12px !important;
    width: min(360px, calc(100vw - 24px)) !important;
    max-height: min(72dvh, 560px) !important;
    padding: 12px !important;
    gap: 5px !important;
    border-radius: 22px !important;
    background: color-mix(in srgb, var(--surface-strong) 94%, transparent) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(18, 20, 38, .18), 0 0 0 1px rgba(255,47,146,.08) !important;
  }
  .nav-links a,
  .dropdown-trigger {
    min-height: 42px !important;
    padding: 10px 12px !important;
    font-size: .94rem !important;
  }
  .nav-dropdown:not(.open) .dropdown-menu {
    display: none !important;
  }
  .nav-dropdown.open .dropdown-menu {
    display: grid !important;
  }
  .dropdown-menu {
    margin: 4px 0 6px !important;
    padding: 8px !important;
    border-radius: 16px !important;
    max-height: none !important;
    background: rgba(255, 47, 146, .045) !important;
  }
  .dropdown-menu a {
    min-height: 38px !important;
    padding: 9px 10px !important;
  }
}

@media (max-width: 480px) {
  .nav-links {
    right: 10px !important;
    width: min(330px, calc(100vw - 20px)) !important;
    max-height: min(68dvh, 500px) !important;
  }
  .booking-card input,
  .booking-card select,
  .form-card input,
  .form-card select { min-height: 48px; }
  .booking-card textarea,
  .form-card textarea { min-height: 132px; }
}

/* Premium 2026 shop pricing cards */
.shop-page-main {
  overflow-x: hidden;
}

.shop-page-hero {
  padding: 44px 0 22px;
}

.shop-page-hero .container,
.shop-catalog {
  max-width: 1480px;
}

.shop-block-head {
  display: grid;
  gap: 8px;
}

.shop-block-head h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.15rem) !important;
}

.shop-block-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.popular-package-grid {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.shop-service-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.shop-pricing-card,
.shop-service-card.shop-pricing-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 0;
  padding: 30px 28px 26px;
  border: 1px solid rgba(255, 47, 146, .18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,47,146,.07), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.8));
  box-shadow: 0 20px 58px rgba(18,20,38,.065);
  overflow: visible;
}

.shop-pricing-card.featured {
  border-color: rgba(255, 47, 146, .52);
  box-shadow: 0 24px 70px rgba(255, 47, 146, .14);
}

.shop-pricing-card h3 {
  margin: 18px 0 8px;
  font-size: 1.32rem !important;
  line-height: 1.12 !important;
  letter-spacing: -.01em;
}

.package-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.package-category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 47, 146, .08);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.shop-pricing-card .package-icon {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.85), transparent 44%),
    linear-gradient(145deg, rgba(255,47,146,.14), rgba(255,107,44,.09));
  box-shadow: inset 0 0 0 1px rgba(255,47,146,.08);
  font-size: 2.3rem;
}

.popular-ribbon {
  top: -13px;
  min-width: 128px;
  text-align: center;
  padding: 8px 18px;
  box-shadow: 0 12px 28px rgba(255,47,146,.2);
}

.package-description {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

.package-suitable {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  margin: 4px 0 0;
  padding: 15px 0;
  border-top: 1px dashed rgba(102,112,133,.22);
  border-bottom: 1px dashed rgba(102,112,133,.18);
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.4;
}

.package-suitable > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,47,146,.09);
}

.package-suitable p {
  margin: 0;
}

.package-suitable strong {
  color: var(--text);
}

.package-price {
  margin: 18px 0 14px;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0;
}

.package-price span,
.package-price em {
  color: var(--pink);
  font-size: .82rem;
  font-style: normal;
  font-weight: 900;
}

.package-price strong {
  color: var(--pink);
  font-size: clamp(2rem, 3vw, 2.6rem) !important;
  line-height: 1;
  letter-spacing: -.03em;
}

.package-price small {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 900;
}

.custom-pricing-box {
  margin: 18px 0 16px;
  padding: 20px 18px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,47,146,.1), rgba(255,107,44,.08));
}

.custom-pricing-box strong {
  display: block;
  color: var(--pink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.custom-pricing-box > span {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 700;
}

.custom-quote-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px dashed rgba(102,112,133,.22);
  color: var(--text);
}

.custom-pricing-box p {
  max-width: 280px;
  margin: 7px auto 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.42;
}

.package-feature-list {
  grid-template-columns: 1fr;
  gap: 9px !important;
  margin: 0 0 22px !important;
  color: var(--muted);
}

.custom-price-card .package-feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-feature-list li {
  padding-left: 22px !important;
  line-height: 1.35;
}

.package-feature-list li::before {
  color: var(--pink) !important;
}

.shop-choose-btn,
.shop-service-card .shop-choose-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  border-radius: 12px;
  color: var(--pink);
  background: transparent;
}

.shop-choose-btn:hover,
.shop-pricing-card.featured .shop-choose-btn,
.shop-whatsapp-btn {
  color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(100deg, var(--pink), var(--orange)) !important;
}

.wa-mini {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #17b957;
}

.shop-whatsapp-btn .wa-mini {
  color: #fff;
}

.shop-benefit-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 22px 28px;
  border-radius: 20px;
}

.shop-benefit-item {
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(255,47,146,.14);
}

.shop-benefit-item:first-child {
  padding-left: 0;
}

.shop-benefit-item:last-child {
  padding-right: 0;
  border-right: 0;
}

html[data-theme="dark"] .shop-pricing-card,
html[data-theme="dark"] .shop-service-card.shop-pricing-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(255,47,146,.13), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, white 4%), var(--surface));
}

html[data-theme="dark"] .custom-pricing-box {
  background: linear-gradient(135deg, rgba(255,47,146,.18), rgba(255,107,44,.12));
}

@media (max-width: 1240px) {
  .popular-package-grid,
  .shop-service-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 720px) {
  .shop-page-hero {
    padding-top: 34px;
  }

  .popular-package-grid,
  .shop-service-grid,
  .shop-benefit-strip {
    grid-template-columns: 1fr;
  }

  .shop-pricing-card,
  .shop-service-card.shop-pricing-card {
    padding: 28px 22px 22px;
    border-radius: 20px;
  }

  .custom-price-card .package-feature-list {
    grid-template-columns: 1fr;
  }

  .shop-benefit-strip {
    gap: 16px;
    padding: 20px;
  }

  .shop-benefit-item,
  .shop-benefit-item:first-child,
  .shop-benefit-item:last-child {
    padding: 0;
    border-right: 0;
  }
}

@media (max-width: 430px) {
  .shop-page-main .container {
    width: min(100% - 30px, var(--container));
  }

  .shop-pricing-card h3 {
    font-size: 1.18rem !important;
  }

  .shop-pricing-card .package-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    font-size: 1.85rem;
  }

  .package-category-badge {
    max-width: 170px;
  }
}

/* Dark-theme trusted section: match the premium mobile-style card layout on all widths */
html[data-theme="dark"] .trusted-showcase {
  max-width: 1060px;
  margin-top: 0;
  padding: 26px 16px 0;
}

html[data-theme="dark"] .trusted-showcase-head {
  display: none;
}

html[data-theme="dark"] .trusted-card-grid {
  counter-reset: trusted-card;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

html[data-theme="dark"] .trusted-card:not(.trusted-custom-card) {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
  padding: 42px 32px 32px;
  text-align: left;
  border-radius: 28px;
  border-color: color-mix(in srgb, var(--card-accent, var(--pink)) 38%, rgba(255,255,255,.08));
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--card-accent, var(--pink)) 18%, transparent), transparent 44%),
    linear-gradient(160deg, rgba(15,23,42,.96), rgba(7,13,28,.96));
  box-shadow: 0 24px 68px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.04);
}

html[data-theme="dark"] .trusted-card:not(.trusted-custom-card)::before {
  counter-increment: trusted-card;
  content: counter(trusted-card, decimal-leading-zero);
  position: absolute;
  top: 34px;
  right: 28px;
  min-width: 54px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--pink)) 42%, transparent);
  border-radius: 16px;
  color: color-mix(in srgb, var(--card-accent, var(--pink)) 84%, #fff);
  background: rgba(10,17,33,.78);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

html[data-theme="dark"] .trusted-card:not(.trusted-custom-card)::after {
  width: 38%;
  height: 6px;
  border-radius: 0 999px 999px 0;
}

html[data-theme="dark"] .trusted-card-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 34px;
  justify-self: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 42% 32%, rgba(255,255,255,.16), transparent 42%),
    color-mix(in srgb, var(--card-accent, var(--pink)) 24%, rgba(15,23,42,.88));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--card-accent, var(--pink)) 35%, transparent), 0 14px 28px rgba(0,0,0,.24);
  font-size: 2.45rem;
}

html[data-theme="dark"] .trusted-svg-icon svg {
  width: 72%;
  height: 72%;
}

html[data-theme="dark"] .trusted-card h3 {
  max-width: 11ch;
  margin: 0 0 18px;
  color: #f8fbff !important;
  font-size: clamp(1.75rem, 3vw, 2.35rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

html[data-theme="dark"] .trusted-card p {
  max-width: 31ch;
  color: #d9e3f4 !important;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem) !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

html[data-theme="dark"] .trusted-card > a {
  position: absolute;
  right: 32px;
  bottom: 34px;
  width: 62px;
  height: 62px;
  color: color-mix(in srgb, var(--card-accent, var(--pink)) 84%, #fff);
  background: rgba(10,17,33,.82);
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--pink)) 30%, transparent);
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  font-size: 1.75rem;
}

html[data-theme="dark"] .trusted-custom-card {
  grid-column: 1 / -1;
  min-height: 250px;
  grid-template-columns: 112px 1fr;
  align-items: center;
  padding: 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 20%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(120deg, var(--pink), var(--orange));
}

html[data-theme="dark"] .trusted-custom-card .trusted-custom-icon {
  width: 96px;
  height: 96px;
  margin: 0;
  justify-self: center;
}

html[data-theme="dark"] .trusted-custom-card h3 {
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.45rem) !important;
}

html[data-theme="dark"] .trusted-custom-card p {
  color: #fff !important;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
}

html[data-theme="dark"] .trusted-whatsapp {
  width: min(100%, 580px) !important;
  height: 58px !important;
  margin-top: 22px;
  justify-content: center;
  gap: 18px;
  border-radius: 14px;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

html[data-theme="dark"] .trusted-proof-panel {
  margin-top: 34px;
}

html[data-theme="dark"] .restored-stats .stat-card {
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,47,146,.08), transparent 62%),
    rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 14px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .restored-stats .stat-card strong {
  color: rgba(255, 107, 44, .86);
  text-shadow: 0 0 18px rgba(255,107,44,.12);
}

html[data-theme="dark"] .restored-stats .stat-card small {
  color: rgba(226, 232, 240, .48);
}

html[data-theme="dark"] .trusted-custom-card .trusted-whatsapp {
  color: #111827 !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(255,255,255,.42) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
  text-shadow: none !important;
}

html[data-theme="dark"] .trusted-custom-card .trusted-whatsapp b {
  color: var(--pink);
  font-size: 1.15rem;
}

html[data-theme="dark"] .trusted-proof-panel {
  border-color: rgba(255,47,146,.2);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,47,146,.1), transparent 38%),
    linear-gradient(160deg, rgba(15,23,42,.92), rgba(7,13,28,.96));
  box-shadow: 0 24px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.045);
}

html[data-theme="dark"] .trusted-proof-head span {
  color: rgba(255,90,165,.95);
}

html[data-theme="dark"] .trusted-proof-head h3 {
  color: #f8fbff;
  text-shadow: 0 2px 18px rgba(0,0,0,.32);
}

html[data-theme="dark"] .trusted-proof-item:not(:last-child) {
  border-color: rgba(255,47,146,.14);
}

html[data-theme="dark"] .trusted-proof-item span {
  background:
    radial-gradient(circle at 40% 28%, rgba(255,255,255,.16), transparent 44%),
    color-mix(in srgb, var(--proof-color, var(--pink)) 18%, rgba(15,23,42,.84));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--proof-color, var(--pink)) 26%, transparent);
}

html[data-theme="dark"] .trusted-proof-item strong {
  color: #f8fbff;
}

html[data-theme="dark"] .trusted-proof-item small {
  color: rgba(226,232,240,.62);
}

@media (max-width: 720px) {
  html[data-theme="dark"] .trusted-showcase {
    padding: 26px 12px 0;
  }

  html[data-theme="dark"] .trusted-card-grid {
    gap: 18px;
  }

  html[data-theme="dark"] .trusted-card:not(.trusted-custom-card) {
    min-height: 238px;
    padding: 30px 16px 18px;
    border-radius: 22px;
  }

  html[data-theme="dark"] .trusted-card:not(.trusted-custom-card)::before {
    top: 28px;
    right: 16px;
    min-width: 44px;
    height: 36px;
    font-size: 1.1rem;
    border-radius: 14px;
  }

  html[data-theme="dark"] .trusted-card-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border-radius: 18px;
    font-size: 1.9rem;
  }

  html[data-theme="dark"] .trusted-card h3 {
    max-width: 9ch;
    margin-bottom: 12px;
    font-size: 1.28rem !important;
  }

  html[data-theme="dark"] .trusted-card-blue h3 {
    max-width: none;
  }

  html[data-theme="dark"] .trusted-card p {
    font-size: .95rem !important;
    line-height: 1.38 !important;
  }

  html[data-theme="dark"] .trusted-card > a {
    right: 16px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  html[data-theme="dark"] .trusted-custom-card {
    min-height: 178px;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 18px;
    border-radius: 20px;
  }

  html[data-theme="dark"] .trusted-custom-card .trusted-custom-icon {
    width: 50px;
    height: 50px;
    grid-row: span 2;
  }

  html[data-theme="dark"] .trusted-custom-card h3 {
    max-width: none;
    margin: 0 0 4px;
    font-size: 1.05rem !important;
    line-height: 1.1 !important;
  }

  html[data-theme="dark"] .trusted-custom-card p {
    max-width: none;
    font-size: .78rem !important;
    line-height: 1.35 !important;
  }

  html[data-theme="dark"] .trusted-whatsapp {
    grid-column: 1 / -1;
    width: 100% !important;
    height: 42px !important;
    margin-top: 6px;
    padding: 0 10px !important;
    gap: 7px;
    justify-content: flex-start;
    white-space: nowrap;
    font-size: .72rem !important;
  }

  html[data-theme="dark"] .trusted-whatsapp b {
    margin-left: auto;
  }
}

/* Mobile drawer settings: theme/language live in the menu, currency stays in shop/cart navbar */
.mobile-menu-tools {
  display: none;
}

@media (max-width: 1040px) {
  .nav-actions {
    gap: 6px !important;
  }

  .nav-actions > .theme-switch,
  .nav-actions > .btn-small {
    display: none !important;
  }

  .nav-actions .nav-currency-control {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 52px !important;
    min-width: 52px !important;
    flex: 0 0 52px !important;
  }

  .nav-currency-control select {
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 6px !important;
    text-align: center;
    font-size: .76rem !important;
    font-weight: 800 !important;
  }

  .mobile-menu-tools {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(255,47,146,.13);
    border-radius: 18px;
    background: rgba(255,47,146,.045);
  }

  .mobile-menu-tools-title {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-theme-row {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 10px !important;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text);
    background: var(--surface-strong);
    box-shadow: none;
  }

  .mobile-theme-row {
    cursor: pointer;
    font: inherit;
  }

  .mobile-theme-row .theme-switch-control {
    flex: 0 0 52px;
  }

  .mobile-theme-row strong {
    margin-left: auto;
    font-size: .9rem;
  }

}

@media (max-width: 430px) {
  .nav-actions {
    gap: 5px !important;
  }

  .nav-currency-control {
    width: 48px !important;
    min-width: 48px !important;
    flex-basis: 48px !important;
  }

  .nav-currency-control select {
    font-size: .72rem !important;
  }
}

html[data-theme="dark"] .mobile-menu-tools {
  border-color: rgba(255,47,146,.2);
  background: rgba(255,47,146,.065);
}

html[data-theme="dark"] .mobile-theme-row {
  background: rgba(15,23,42,.82);
  border-color: rgba(255,255,255,.08);
}

/* Compact hero headline spacing after the longer ROI headline update */
.restored-hero .hero-copy h1 {
  margin: 12px 0 16px !important;
  line-height: 1.03 !important;
}

.restored-hero .hero-copy h1 span {
  line-height: 1.04 !important;
}

.restored-hero .hero-copy h1 .gradient-text {
  display: block;
}

.restored-hero .hero-copy h1 [data-i18n-key] {
  display: inline !important;
}

.restored-hero .hero-copy h1 .gradient-text span {
  margin-top: 0;
}

@media (max-width: 720px) {
  .restored-hero .hero-copy h1 {
    margin: 10px 0 14px !important;
    font-size: clamp(2.45rem, 11vw, 3.55rem) !important;
    line-height: 1.04 !important;
  }

  .restored-hero .hero-copy h1 span {
    line-height: 1.05 !important;
  }
}

/* Desktop trusted services: keep all five service cards in one row */
@media (min-width: 1181px) {
  .trusted-showcase {
    max-width: min(1500px, calc(100vw - 80px));
    margin-left: auto;
    margin-right: auto;
  }

  .trusted-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .trusted-card:not(.trusted-custom-card) {
    min-height: 292px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    padding: 26px 22px 24px;
    text-align: left;
  }

  .trusted-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 22px;
    justify-self: start;
  }

  .trusted-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.1rem, 1.28vw, 1.45rem);
    line-height: 1.12;
  }

  .trusted-card p {
    font-size: .92rem;
    line-height: 1.48;
  }

  .trusted-card > a {
    position: absolute;
    right: 20px;
    bottom: 22px;
    width: 44px;
    height: 44px;
  }

  .trusted-custom-card {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  html[data-theme="dark"] .trusted-showcase {
    max-width: min(1500px, calc(100vw - 80px));
  }

  html[data-theme="dark"] .trusted-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  html[data-theme="dark"] .trusted-card:not(.trusted-custom-card) {
    min-height: 330px;
    padding: 32px 24px 28px;
    border-radius: 24px;
  }

  html[data-theme="dark"] .trusted-card:not(.trusted-custom-card)::before {
    top: 26px;
    right: 22px;
    min-width: 44px;
    height: 36px;
    border-radius: 14px;
    font-size: 1rem;
  }

  html[data-theme="dark"] .trusted-card-icon {
    width: 74px;
    height: 74px;
    margin: 0 0 28px;
    justify-self: start;
    border-radius: 19px;
    font-size: 2rem;
  }

  html[data-theme="dark"] .trusted-card h3 {
    max-width: 10ch;
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 1.55vw, 1.75rem) !important;
    line-height: 1.08 !important;
  }

  html[data-theme="dark"] .trusted-card p {
    max-width: none;
    font-size: clamp(.9rem, .92vw, 1rem) !important;
    line-height: 1.46 !important;
  }

  html[data-theme="dark"] .trusted-card > a {
    right: 22px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }

  html[data-theme="dark"] .trusted-custom-card {
    grid-column: 1 / -1;
    min-height: 190px;
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 34px 38px;
  }
}

/* Responsive custom WhatsApp CTA sizing inside the trusted section */
.trusted-custom-card > div {
  min-width: 0;
}

@media (min-width: 1181px) {
  .trusted-custom-card {
    grid-template-columns: 82px minmax(260px, 1fr) minmax(280px, 390px);
    gap: 28px;
    align-items: center;
  }

  .trusted-custom-card > div {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 390px);
    gap: 24px;
    align-items: center;
  }

  .trusted-custom-card h3,
  .trusted-custom-card p {
    grid-column: 1;
  }

  .trusted-custom-card h3 {
    margin-bottom: 6px;
  }

  .trusted-custom-card p {
    margin-bottom: 0;
  }

  .trusted-whatsapp {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100% !important;
    max-width: 390px;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 18px !important;
    justify-content: center;
    white-space: nowrap;
    font-size: .92rem !important;
  }

  html[data-theme="dark"] .trusted-custom-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 28px;
  }

  html[data-theme="dark"] .trusted-custom-card .trusted-custom-icon {
    width: 74px;
    height: 74px;
  }

  html[data-theme="dark"] .trusted-custom-card h3 {
    font-size: clamp(1.45rem, 1.7vw, 2rem) !important;
    line-height: 1.08 !important;
  }

  html[data-theme="dark"] .trusted-custom-card p {
    font-size: clamp(.92rem, 1vw, 1.08rem) !important;
    line-height: 1.45 !important;
  }

  html[data-theme="dark"] .trusted-whatsapp {
    height: 54px !important;
    font-size: .92rem !important;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .trusted-custom-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 20px;
    padding: 26px;
  }

  .trusted-custom-card .trusted-custom-icon {
    width: 66px;
    height: 66px;
  }

  .trusted-whatsapp {
    width: min(100%, 390px) !important;
    height: 50px !important;
    white-space: nowrap;
    font-size: .9rem !important;
  }
}

@media (max-width: 720px) {
  .trusted-custom-card {
    min-height: 0;
    grid-template-columns: 1fr !important;
    justify-items: center;
    gap: 12px;
    padding: 22px 18px !important;
    text-align: center;
  }

  .trusted-custom-card .trusted-custom-icon {
    margin: 0 auto 4px !important;
  }

  .trusted-custom-card > div {
    width: 100%;
    display: grid;
    justify-items: center;
  }

  .trusted-custom-card h3 {
    max-width: 18ch !important;
    margin-bottom: 8px !important;
    word-break: normal;
    overflow-wrap: normal;
  }

  .trusted-custom-card p {
    max-width: 30ch !important;
    margin-bottom: 0;
  }

  .trusted-whatsapp {
    width: min(100%, 310px) !important;
    min-height: 44px !important;
    height: auto !important;
    margin-top: 14px !important;
    padding: 0 12px !important;
    justify-content: center !important;
    line-height: 1.15 !important;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .trusted-whatsapp {
    font-size: .68rem !important;
    letter-spacing: -.01em;
  }
}
