:root {
  --bg: #06131f;
  --bg-elevated: #091a28;
  --surface: #0b1f2e;
  --surface-2: #102839;
  --surface-3: #163448;
  --surface-glass: rgba(11, 31, 46, 0.78);
  --text: #f6fbff;
  --text-soft: #d7e5ed;
  --muted: #9eb3c0;
  --muted-2: #738b99;
  --line: rgba(173, 216, 232, 0.13);
  --line-strong: rgba(173, 216, 232, 0.24);
  --primary: #58e0bd;
  --primary-strong: #2ecaa3;
  --secondary: #58c9ff;
  --blue: #598cff;
  --violet: #9a84ff;
  --amber: #ffc16b;
  --danger: #ff7f93;
  --whatsapp: #22c76d;
  --call: #3589ff;
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 20px 54px rgba(0, 0, 0, 0.25);
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.16);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --container: 1220px;
  --header-height: 76px;
  --section-space: clamp(4.75rem, 8.5vw, 8.5rem);
  color-scheme: dark;
}

:root[data-theme="light"] {
  --bg: #f5f8fb;
  --bg-elevated: #edf3f7;
  --surface: #ffffff;
  --surface-2: #f2f7fa;
  --surface-3: #e6f0f5;
  --surface-glass: rgba(255, 255, 255, 0.86);
  --text: #081a28;
  --text-soft: #2c4351;
  --muted: #526b79;
  --muted-2: #758b97;
  --line: rgba(18, 58, 78, 0.12);
  --line-strong: rgba(18, 58, 78, 0.22);
  --primary: #087f68;
  --primary-strong: #056651;
  --secondary: #087eaa;
  --blue: #345fcf;
  --violet: #6751c6;
  --amber: #a76000;
  --danger: #b74055;
  --whatsapp: #128c52;
  --call: #1f65cc;
  --shadow-lg: 0 30px 80px rgba(29, 68, 88, 0.14);
  --shadow-md: 0 18px 45px rgba(29, 68, 88, 0.1);
  --shadow-sm: 0 10px 24px rgba(29, 68, 88, 0.08);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background:
    radial-gradient(circle at 86% 4%, rgba(88, 201, 255, 0.1), transparent 31rem),
    radial-gradient(circle at 8% 28%, rgba(88, 224, 189, 0.065), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color 0.25s ease, color 0.25s ease;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.017) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  opacity: 0.55;
}
:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 86% 4%, rgba(8, 126, 170, 0.08), transparent 31rem),
    radial-gradient(circle at 8% 28%, rgba(8, 127, 104, 0.07), transparent 28rem),
    var(--bg);
}
:root[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(18, 58, 78, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 58, 78, 0.028) 1px, transparent 1px);
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
p, h1, h2, h3, h4, ul, ol { overflow-wrap: anywhere; }
input, textarea, select { min-width: 0; }
::selection { background: var(--primary); color: #03130f; }
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding-block: var(--section-space); }
.muted-section { position: relative; border-block: 1px solid var(--line); background: rgba(11, 31, 46, 0.48); }
:root[data-theme="light"] .muted-section { background: rgba(230, 240, 245, 0.58); }
.icon { width: 1.4rem; height: 1.4rem; flex: 0 0 auto; }
.skip-link { position: fixed; top: 8px; inset-inline-start: 8px; z-index: 1000; transform: translateY(-150%); padding: 0.7rem 1rem; border-radius: 0.65rem; background: var(--text); color: var(--bg); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(6, 19, 31, 0.5);
  backdrop-filter: blur(16px) saturate(130%);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.site-header.is-scrolled { background: rgba(6, 19, 31, 0.9); border-bottom-color: var(--line); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2); }
:root[data-theme="light"] .site-header { background: rgba(245, 248, 251, 0.72); }
:root[data-theme="light"] .site-header.is-scrolled { background: rgba(245, 248, 251, 0.94); }
.header-inner { display: flex; align-items: center; gap: 1.45rem; min-width: 0; }
.brand { display: inline-flex; align-items: center; gap: 0.72rem; flex: 0 0 auto; min-width: 0; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(88, 201, 255, 0.2)); }
.brand-copy { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.brand-copy strong { font-size: 0.91rem; white-space: nowrap; }
.brand-copy small { margin-top: 0.32rem; color: var(--muted-2); font-size: 0.61rem; font-weight: 700; letter-spacing: 0.035em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(0.95rem, 1.8vw, 1.7rem); margin-inline: auto; }
.desktop-nav a { position: relative; padding-block: 0.8rem; color: var(--muted); font-size: 0.86rem; font-weight: 750; white-space: nowrap; transition: color 0.18s ease; }
.desktop-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: 0.35rem; height: 2px; border-radius: 10px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transform-origin: center; transition: transform 0.2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); }
.header-tools { display: flex; align-items: center; gap: 0.55rem; flex: 0 0 auto; }
.language-switch, .theme-toggle, .menu-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 0.78rem; background: var(--surface-glass); color: var(--muted); cursor: pointer; font-size: 0.76rem; font-weight: 850; transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease; }
.language-switch:hover, .theme-toggle:hover, .menu-toggle:hover { color: var(--text); border-color: var(--secondary); transform: translateY(-1px); }
.theme-toggle span { grid-area: 1 / 1; transition: opacity 0.2s ease, transform 0.2s ease; }
.theme-toggle .theme-moon { opacity: 0; transform: rotate(-30deg) scale(0.65); }
:root[data-theme="light"] .theme-toggle .theme-sun { opacity: 0; transform: rotate(30deg) scale(0.65); }
:root[data-theme="light"] .theme-toggle .theme-moon { opacity: 1; transform: none; }
.theme-toggle .icon { width: 19px; height: 19px; }
.menu-toggle, .mobile-menu { display: none; }
.menu-toggle span { grid-area: 1 / 1; }
.menu-toggle .menu-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close { display: block; }

/* Controls and typography */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.76rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--primary), #8cf4d9);
  color: #031812;
  box-shadow: 0 14px 34px rgba(88, 224, 189, 0.14);
  font-size: 0.91rem;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
:root[data-theme="light"] .button { color: #fff; background: linear-gradient(135deg, var(--primary), #0d9f80); }
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(88, 224, 189, 0.2); }
.button-small { min-height: 42px; padding: 0.55rem 1rem; border-radius: 0.75rem; font-size: 0.8rem; }
.button-ghost { background: rgba(255, 255, 255, 0.025); border-color: var(--line-strong); color: var(--text); box-shadow: none; }
.button-ghost:hover { border-color: var(--secondary); background: rgba(88, 201, 255, 0.06); box-shadow: none; }
.button-light { background: #fff; color: #071722; box-shadow: none; }
:root[data-theme="light"] .button-light { background: #071722; color: #fff; }
.button-icon { width: 1.12rem; height: 1.12rem; transition: transform 0.2s ease; }
[dir="rtl"] .button:hover .button-icon, [dir="rtl"] .text-link:hover .icon { transform: translateX(-3px); }
[dir="ltr"] .button:hover .button-icon, [dir="ltr"] .text-link:hover .icon { transform: translateX(3px); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--primary); font-size: 0.76rem; line-height: 1.4; letter-spacing: 0.025em; font-weight: 850; }
.eyebrow > span { width: 2rem; height: 1px; background: currentColor; flex: 0 0 auto; }
.section-heading { max-width: 820px; margin-bottom: clamp(2.4rem, 5vw, 4.25rem); }
.section-heading h2, .promise-copy h2, .faq-intro h2, .decision-copy h2, .rich-copy h2 {
  margin: 0.8rem 0 0.85rem;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.section-heading p, .promise-copy > p, .faq-intro > p, .decision-copy > p { margin: 0; color: var(--muted); font-size: clamp(0.98rem, 1.35vw, 1.08rem); max-width: 70ch; }
.section-action { display: flex; justify-content: center; margin-top: 2.8rem; }
.text-link { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--primary); font-size: 0.88rem; font-weight: 850; }
.text-link .icon { width: 1.05rem; height: 1.05rem; transition: transform 0.2s ease; }

/* Hero */
.hero { position: relative; padding-top: clamp(3.25rem, 6vw, 6.5rem); overflow: clip; }
.hero::before { content: ""; position: absolute; top: 0; inset-inline: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr); align-items: center; gap: clamp(3rem, 7vw, 6.5rem); min-height: min(690px, calc(100svh - var(--header-height) - 5rem)); }
.hero-copy h1 { margin: 1rem 0 1.25rem; max-width: 850px; font-size: clamp(2.85rem, 6.1vw, 6.15rem); line-height: 1.03; letter-spacing: -0.06em; }
.hero-copy h1 span { color: transparent; background: linear-gradient(105deg, var(--primary), var(--secondary) 58%, #b3a8ff); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 720px; margin: 0; color: var(--text-soft); font-size: clamp(1.03rem, 1.65vw, 1.27rem); line-height: 1.9; }
.hero-support { max-width: 700px; margin: 0.8rem 0 0; color: var(--muted); font-size: 0.96rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.85rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.65rem 1.2rem; margin-top: 1.45rem; color: var(--muted); font-size: 0.77rem; font-weight: 700; }
.hero-trust a, .hero-trust > span { display: inline-flex; align-items: center; gap: 0.45rem; }
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 5px rgba(88, 201, 255, 0.08); }
.trust-dot.trust-google { background: var(--amber); box-shadow: 0 0 0 5px rgba(255, 193, 107, 0.08); }
.trust-dot.trust-live { background: var(--primary); box-shadow: 0 0 0 5px rgba(88, 224, 189, 0.08); }
.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; isolation: isolate; }
.visual-glow { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(88, 201, 255, 0.18), rgba(88, 224, 189, 0.04) 52%, transparent 70%); filter: blur(12px); z-index: -2; }
.visual-shell { position: relative; width: min(100%, 480px); padding: 1.35rem; border: 1px solid var(--line-strong); border-radius: 2rem; background: linear-gradient(155deg, rgba(16, 40, 57, 0.94), rgba(7, 23, 35, 0.9)); box-shadow: var(--shadow-lg); overflow: hidden; }
.visual-shell::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0.045), transparent 35%, transparent 72%, rgba(88,201,255,0.04)); pointer-events: none; }
:root[data-theme="light"] .visual-shell { background: linear-gradient(155deg, rgba(255,255,255,0.98), rgba(237,243,247,0.94)); }
.visual-top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; }
.visual-status { display: inline-flex; align-items: center; gap: 0.42rem; }
.visual-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(88,224,189,0.08); }
.visual-core { position: relative; display: grid; grid-template-columns: 120px minmax(0, 1fr); align-items: center; gap: 1.25rem; padding-block: 1.5rem; }
.hero-logo { width: 120px; height: 120px; object-fit: contain; filter: drop-shadow(0 18px 34px rgba(88, 201, 255, 0.22)); }
.visual-core strong { display: block; font-size: clamp(1.55rem, 3vw, 2.35rem); letter-spacing: -0.04em; }
.visual-core span { display: block; margin-top: 0.35rem; color: var(--primary); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.12em; }
.visual-capabilities { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
.visual-capabilities span { min-height: 48px; display: flex; align-items: center; gap: 0.55rem; padding: 0.65rem 0.8rem; border: 1px solid var(--line); border-radius: 0.85rem; background: rgba(255, 255, 255, 0.025); color: var(--text-soft); font-size: 0.75rem; font-weight: 750; }
.visual-capabilities .icon { width: 1.05rem; height: 1.05rem; color: var(--secondary); }
.visual-metric { position: relative; margin-top: 0.8rem; display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 0.8rem; padding: 0.9rem 1rem; border-radius: 0.9rem; background: linear-gradient(100deg, rgba(88,224,189,0.1), rgba(88,201,255,0.055)); border: 1px solid rgba(88,224,189,0.15); }
.visual-metric > span { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }
.visual-metric strong { color: var(--primary); font-size: 1.45rem; }
.visual-metric p { margin: 0; color: var(--muted); font-size: 0.72rem; line-height: 1.5; }
.visual-orbit { position: absolute; border: 1px solid rgba(88,201,255,0.12); border-radius: 50%; z-index: -1; }
.orbit-a { width: 520px; height: 520px; }
.orbit-b { width: 610px; height: 610px; border-style: dashed; opacity: 0.55; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(2.5rem, 5vw, 4.5rem); border: 1px solid var(--line); border-radius: 1.4rem; background: var(--surface-glass); box-shadow: var(--shadow-sm); overflow: hidden; }
.stats-bar > div { padding: 1.35rem 1.25rem; text-align: center; }
.stats-bar > div + div { border-inline-start: 1px solid var(--line); }
.stats-bar strong { display: block; color: var(--primary); font-size: clamp(1.65rem, 3.2vw, 2.45rem); line-height: 1; }
.stats-bar span { display: block; margin-top: 0.55rem; color: var(--muted); font-size: 0.76rem; line-height: 1.55; }

/* Services */
.services-section { padding-top: calc(var(--section-space) * 0.9); }
.service-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.4rem; }
.service-filters button { min-height: 42px; padding: 0.55rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 0.77rem; font-weight: 800; cursor: pointer; transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease; }
.service-filters button:hover, .service-filters button[aria-selected="true"] { color: var(--text); border-color: rgba(88,224,189,0.35); background: rgba(88,224,189,0.09); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card { position: relative; min-height: 335px; display: flex; flex-direction: column; padding: 1.45rem; border: 1px solid var(--line); border-radius: 1.4rem; background: linear-gradient(155deg, rgba(16,40,57,0.78), rgba(9,26,40,0.88)); overflow: hidden; transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
:root[data-theme="light"] .service-card { background: linear-gradient(155deg, #fff, #f2f7fa); }
.service-card::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent); opacity: 0; transition: opacity 0.22s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card[hidden] { display: none; }
.service-card-top { display: flex; justify-content: space-between; align-items: center; }
.service-number { color: var(--muted-2); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.08em; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(88,201,255,0.16); border-radius: 0.9rem; background: rgba(88,201,255,0.07); color: var(--secondary); }
.service-icon .icon { width: 1.35rem; height: 1.35rem; }
.service-group { margin: 1.2rem 0 0.35rem !important; color: var(--primary) !important; font-size: 0.68rem !important; font-weight: 850; letter-spacing: 0.025em; }
.service-card h3 { margin: 0; font-size: 1.22rem; line-height: 1.45; }
.service-card h3 a::after { content: ""; position: absolute; inset: 0; }
.service-card > p:not(.service-group) { margin: 0.7rem 0 1.2rem; color: var(--muted); font-size: 0.85rem; line-height: 1.8; }
.service-card .text-link { position: relative; z-index: 1; margin-top: auto; width: max-content; }
.services-grid-index .service-card { min-height: 360px; }

/* Promise, principles, results */
.promise-section { border-block: 1px solid var(--line); background: linear-gradient(135deg, rgba(88,224,189,0.035), transparent 45%, rgba(88,201,255,0.035)); }
.promise-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.promise-copy { position: sticky; top: calc(var(--header-height) + 2rem); }
.promise-copy .button { margin-top: 1.55rem; }
.principles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.principle { min-height: 245px; padding: 1.35rem; border: 1px solid var(--line); border-radius: 1.3rem; background: var(--surface-glass); }
.principle > span { display: block; color: var(--muted-2); font-size: 0.72rem; font-weight: 850; }
.principle > .icon { margin-top: 2rem; color: var(--secondary); width: 1.65rem; height: 1.65rem; }
.principle h3 { margin: 0.8rem 0 0.45rem; font-size: 1.12rem; }
.principle p { margin: 0; color: var(--muted); font-size: 0.84rem; }
.result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.result-card { padding: 1.65rem; border: 1px solid var(--line); border-radius: 1.35rem; background: var(--surface); }
.result-card > .icon { width: 2rem; height: 2rem; color: var(--primary); }
.result-card h3 { margin: 1.15rem 0 0.55rem; font-size: 1.2rem; }
.result-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Projects and Maps */
.projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.projects-grid-all { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-card { border: 1px solid var(--line); border-radius: 1.45rem; background: var(--surface); overflow: hidden; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.project-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.project-visual { position: relative; min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.25rem; background:
  radial-gradient(circle at 80% 20%, rgba(88,201,255,0.2), transparent 42%),
  linear-gradient(145deg, #0d293b, #081823); overflow: hidden; }
:root[data-theme="light"] .project-visual { background: radial-gradient(circle at 80% 20%, rgba(8,126,170,0.16), transparent 42%), linear-gradient(145deg, #e8f3f8, #dcebf2); }
.project-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 32px 32px; }
.project-visual > span, .project-visual > strong { position: relative; z-index: 1; }
.project-visual > span { width: max-content; max-width: 100%; padding: 0.38rem 0.62rem; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--text-soft); background: rgba(6,19,31,0.45); font-size: 0.68rem; font-weight: 800; }
:root[data-theme="light"] .project-visual > span { background: rgba(255,255,255,0.65); }
.project-visual > strong { font-size: clamp(1.75rem, 3.5vw, 3rem); color: rgba(255,255,255,0.1); line-height: 1; letter-spacing: -0.06em; }
:root[data-theme="light"] .project-visual > strong { color: rgba(8,26,40,0.08); }
.project-visual > div { position: absolute; width: 160px; height: 160px; border: 1px solid rgba(88,201,255,0.15); border-radius: 50%; inset-inline-end: -40px; bottom: -45px; box-shadow: 0 0 0 28px rgba(88,201,255,0.03), 0 0 0 56px rgba(88,201,255,0.02); }
.project-content { padding: 1.35rem; }
.project-content h3 { margin: 0; font-size: 1.15rem; }
.project-content > p { min-height: 5.4em; margin: 0.65rem 0 1rem; color: var(--muted); font-size: 0.84rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.42rem; margin-bottom: 1rem; }
.tag-row span { padding: 0.28rem 0.5rem; border-radius: 999px; background: rgba(88,201,255,0.07); color: var(--secondary); font-size: 0.65rem; font-weight: 750; }
.maps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.map-card { display: grid; grid-template-columns: 170px minmax(0, 1fr); border: 1px solid var(--line); border-radius: 1.3rem; background: var(--surface); overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease; }
.map-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.map-visual { position: relative; min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.15rem; background: radial-gradient(circle at 50% 30%, rgba(88,224,189,0.13), transparent 55%), linear-gradient(145deg, #0b2636, #071822); }
:root[data-theme="light"] .map-visual { background: radial-gradient(circle at 50% 30%, rgba(8,127,104,0.13), transparent 55%), linear-gradient(145deg, #e5f2f4, #d8e8ef); }
.map-visual > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: rgba(88,224,189,0.1); color: var(--primary); border: 1px solid rgba(88,224,189,0.2); }
.map-visual small { display: block; color: var(--muted-2); font-size: 0.64rem; }
.map-visual strong { display: block; margin-top: 0.2rem; font-size: 0.95rem; }
.map-content { padding: 1.2rem; }
.map-category { margin: 0; color: var(--primary); font-size: 0.68rem; font-weight: 800; }
.map-content h3 { margin: 0.35rem 0 0.7rem; font-size: 1rem; line-height: 1.55; }
.map-address { display: flex; align-items: center; gap: 0.4rem; margin: 0 0 0.9rem; color: var(--muted); font-size: 0.75rem; }
.map-address .icon { width: 1rem; height: 1rem; }

/* Proof, process, blog */
.google-proof-section { padding-top: 0; }
.proof-panel { display: grid; grid-template-columns: 76px minmax(0, 1fr) auto; align-items: center; gap: 1.45rem; padding: clamp(1.5rem, 3.5vw, 2.5rem); border: 1px solid rgba(88,201,255,0.19); border-radius: 1.7rem; background: linear-gradient(120deg, rgba(88,201,255,0.09), rgba(88,224,189,0.04), var(--surface)); box-shadow: var(--shadow-sm); }
.proof-icon { width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgba(88,201,255,0.2); border-radius: 1.25rem; background: rgba(88,201,255,0.08); color: var(--secondary); }
.proof-icon .icon { width: 2rem; height: 2rem; }
.proof-panel > div:nth-child(2) > span { color: var(--primary); font-size: 0.72rem; font-weight: 850; }
.proof-panel h2 { margin: 0.35rem 0 0.45rem; font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.25; }
.proof-panel p { margin: 0; color: var(--muted); max-width: 72ch; font-size: 0.88rem; }
.proof-numbers { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin-top: 0.9rem; color: var(--muted); font-size: 0.76rem; }
.proof-numbers strong { color: var(--text); font-size: 1rem; }
.proof-actions { display: flex; flex-direction: column; gap: 0.6rem; min-width: 190px; }
.process-list { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; border-block: 1px solid var(--line); }
.process-list li { position: relative; min-height: 220px; padding: 1.6rem 1.25rem; }
.process-list li + li { border-inline-start: 1px solid var(--line); }
.process-list li > span { color: var(--primary); font-size: 0.72rem; font-weight: 850; }
.process-list h3 { margin: 2.7rem 0 0.5rem; font-size: 1.12rem; }
.process-list p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.posts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.post-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 1.45rem; background: linear-gradient(160deg, var(--surface), rgba(88,201,255,0.018)); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.post-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.post-art { position: relative; min-height: 210px; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 1.15rem; background: radial-gradient(circle at 75% 25%, rgba(88,201,255,0.22), transparent 42%), linear-gradient(145deg, #0d2a3b, #071923); overflow: hidden; isolation: isolate; }
.post-art::after { content: ""; position: absolute; z-index: -1; width: 170px; height: 170px; inset-inline-end: -48px; top: -55px; border: 1px solid rgba(255,255,255,0.09); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,0.025), 0 0 0 60px rgba(255,255,255,0.015); }
:root[data-theme="light"] .post-art { background: radial-gradient(circle at 75% 25%, rgba(8,126,170,0.16), transparent 42%), linear-gradient(145deg, #e8f3f8, #dbeaf1); }
.post-art-ai-agents, .post-art-knowledge-bases { background: radial-gradient(circle at 75% 25%, rgba(154,132,255,0.24), transparent 44%), linear-gradient(145deg, #241f4a, #0b1424); }
.post-art-google-business-profile, .post-art-google-support { background: radial-gradient(circle at 75% 25%, rgba(255,193,107,0.22), transparent 44%), linear-gradient(145deg, #35270f, #101a22); }
.post-art-web-development, .post-art-seo { background: radial-gradient(circle at 75% 25%, rgba(88,224,189,0.22), transparent 44%), linear-gradient(145deg, #0c332c, #071a22); }
.post-art-cybersecurity, .post-art-cloud-solutions { background: radial-gradient(circle at 75% 25%, rgba(88,201,255,0.24), transparent 44%), linear-gradient(145deg, #102d4b, #071722); }
.post-art-digital-advertising { background: radial-gradient(circle at 75% 25%, rgba(255,118,151,0.22), transparent 44%), linear-gradient(145deg, #3a1b31, #121423); }
.post-art > span:first-child { position: relative; z-index: 1; max-width: 75%; padding: 0.4rem 0.65rem; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(6,19,31,0.58); color: rgba(255,255,255,0.86); font-size: 0.67rem; font-weight: 850; backdrop-filter: blur(8px); }
:root[data-theme="light"] .post-art > span:first-child { border-color: rgba(8,55,78,0.1); background: rgba(255,255,255,0.76); color: #174158; }
.post-art-title { position: absolute; z-index: 1; inset-inline: 1.15rem; top: 1.15rem; max-width: 17ch; color: rgba(255,255,255,0.82); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.45; letter-spacing: -0.025em; }
:root[data-theme="light"] .post-art-title { color: rgba(12,46,64,0.76); }
.post-art-mark { position: relative; z-index: 1; width: 68px; height: 68px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,0.12); border-radius: 1.2rem; background: rgba(4,15,24,0.38); backdrop-filter: blur(10px); }
.post-icon { width: 2.5rem; height: 2.5rem; color: var(--secondary); opacity: 0.88; }
.post-card-content { min-width: 0; display: flex; flex: 1; flex-direction: column; padding: 1.2rem; }
.post-meta { display: flex; justify-content: space-between; gap: 1rem; margin: 0; color: var(--muted-2); font-size: 0.68rem; }
.post-meta span { white-space: nowrap; }
.post-card h3 { margin: 0.65rem 0 0.55rem; font-size: 1.08rem; line-height: 1.55; }
.post-card h3 a { transition: color 0.18s ease; }
.post-card h3 a:hover { color: var(--primary); }
.post-card-content > p { margin: 0 0 1rem; color: var(--muted); font-size: 0.82rem; line-height: 1.85; }
.keyword-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 1.15rem; }
.keyword-row span { padding: 0.32rem 0.5rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--bg-elevated); font-size: 0.61rem; font-weight: 750; }
.post-card-link { margin-top: auto; margin-inline-start: auto; }
.blog-featured-shell .post-card-featured { display: grid; grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); min-height: 430px; }
.post-card-featured .post-art { min-height: 100%; }
.post-card-featured .post-art-title { max-width: 12ch; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.28; }
.post-card-featured .post-card-content { justify-content: center; padding: clamp(1.5rem, 4vw, 3rem); }
.post-card-featured h3 { max-width: 780px; margin-block: 0.9rem 0.7rem; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.32; letter-spacing: -0.035em; }
.post-card-featured .post-card-content > p { max-width: 760px; font-size: 0.95rem; line-height: 1.95; }

/* FAQ and CTA */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-intro .button { margin-top: 1.5rem; }
.accordion { display: grid; gap: 0.65rem; }
.accordion details { border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); overflow: hidden; }
.accordion summary { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; cursor: pointer; list-style: none; font-size: 0.93rem; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--primary); transition: transform 0.2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details > div { padding: 0 1.1rem 1.1rem; }
.accordion p { margin: 0; padding-top: 0.9rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; line-height: 1.9; }
.final-cta { padding-top: 0; }
.cta-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2rem; padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(88,224,189,0.22); border-radius: 2rem; background: linear-gradient(125deg, #145047, #113a48 58%, #151d39); color: #fff; box-shadow: var(--shadow-lg); overflow: hidden; }
.cta-panel::after { content: ""; position: absolute; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; inset-inline-end: -170px; top: -190px; box-shadow: 0 0 0 42px rgba(255,255,255,0.025), 0 0 0 84px rgba(255,255,255,0.015); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel .eyebrow { color: #9dffe4; }
.cta-panel h2 { max-width: 780px; margin: 0.75rem 0 0.65rem; font-size: clamp(1.9rem, 4vw, 3.45rem); line-height: 1.18; letter-spacing: -0.04em; }
.cta-panel p { max-width: 690px; margin: 0; color: rgba(255,255,255,0.74); font-size: 0.94rem; }
.cta-actions { min-width: 220px; display: flex; flex-direction: column; gap: 0.65rem; align-items: stretch; }
.cta-phone { min-height: 46px; display: flex; align-items: center; justify-content: center; padding: 0.65rem 0.8rem; border: 1px solid rgba(255,255,255,0.17); border-radius: 0.8rem; color: rgba(255,255,255,0.82); font-size: 0.8rem; font-weight: 750; text-align: center; }

/* Inner pages */
.inner-hero { position: relative; padding-block: clamp(2.75rem, 6vw, 5.75rem); border-bottom: 1px solid var(--line); overflow: clip; }
.inner-hero::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(88,201,255,0.1), transparent 67%); inset-inline-end: -180px; top: -250px; pointer-events: none; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2rem; color: var(--muted-2); font-size: 0.71rem; }
.breadcrumbs .icon { width: 0.85rem; height: 0.85rem; }
[dir="rtl"] .breadcrumbs .icon { transform: rotate(180deg); }
.breadcrumbs a[aria-current="page"] { color: var(--text-soft); }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr); align-items: end; gap: clamp(2rem, 7vw, 6rem); }
.inner-hero-copy h1 { max-width: 1000px; margin: 0.9rem 0 1rem; font-size: clamp(2.45rem, 5.4vw, 5.5rem); line-height: 1.06; letter-spacing: -0.055em; }
.inner-hero-copy > p { max-width: 800px; margin: 0; color: var(--text-soft); font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.9; }
.inner-hero-aside { min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.35rem; border: 1px solid var(--line); border-radius: 1.35rem; background: var(--surface-glass); box-shadow: var(--shadow-sm); }
.inner-hero-aside .aside-kicker, .inner-hero-aside > span:not(.service-hero-number):not(.service-hero-icon) { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.inner-hero-aside > strong { display: block; margin-top: 0.5rem; font-size: 1.15rem; line-height: 1.55; }
.inner-hero-aside > p { margin: 0.65rem 0 0; color: var(--muted); font-size: 0.8rem; }
.service-hero-number { color: var(--muted-2); font-size: 0.75rem; font-weight: 850; }
.service-hero-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 1rem 0; border: 1px solid rgba(88,201,255,0.18); border-radius: 1rem; background: rgba(88,201,255,0.07); color: var(--secondary); }
.service-hero-icon .icon { width: 1.6rem; height: 1.6rem; }
.profile-logo { width: 94px; height: 94px; object-fit: contain; margin-bottom: 1rem; }
.google-mark { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 1rem; background: conic-gradient(from 20deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4); color: #fff !important; font-size: 2rem !important; font-weight: 900 !important; }

/* Service detail */
.service-intro-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.rich-copy { max-width: 780px; }
.rich-copy p { margin: 0 0 1.15rem; color: var(--text-soft); font-size: clamp(1rem, 1.3vw, 1.08rem); line-height: 2.05; }
.rich-copy p:last-child { margin-bottom: 0; }
.service-quick-card, .disclaimer-card { position: sticky; top: calc(var(--header-height) + 2rem); padding: 1.45rem; border: 1px solid var(--line); border-radius: 1.35rem; background: var(--surface); box-shadow: var(--shadow-sm); }
.service-quick-card > span, .disclaimer-card > span { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.service-quick-card h2, .disclaimer-card h2 { margin: 0.4rem 0 0.9rem; font-size: 1.25rem; line-height: 1.45; }
.disclaimer-card p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.service-quick-card .button { width: 100%; margin-top: 1.2rem; }
.check-list { list-style: none; display: grid; gap: 0.7rem; margin: 0; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--muted); font-size: 0.82rem; }
.check-list li .icon { width: 1.1rem; height: 1.1rem; margin-top: 0.25rem; color: var(--primary); }
.scope-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.85rem; }
.scope-card { min-height: 190px; padding: 1.25rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); }
.scope-card > span { color: var(--muted-2); font-size: 0.68rem; font-weight: 850; }
.scope-card > .icon { margin-top: 1.6rem; color: var(--secondary); }
.scope-card p { margin: 0.8rem 0 0; color: var(--text-soft); font-size: 0.84rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.deliverables-panel { position: relative; padding: 1rem; border: 1px solid rgba(88,224,189,0.18); border-radius: 1.5rem; background: linear-gradient(145deg, rgba(88,224,189,0.075), rgba(88,201,255,0.025) 48%, var(--surface)); box-shadow: var(--shadow-sm); overflow: hidden; }
.deliverables-panel::before { content: ""; position: absolute; width: 230px; height: 230px; inset-inline-end: -100px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(88,201,255,0.12), transparent 68%); pointer-events: none; }
.deliverables-list { position: relative; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.deliverables-list li, .deliverables-list li:last-child { min-height: 92px; align-items: flex-start; gap: 0.75rem; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(255,255,255,0.025); color: var(--text-soft); font-size: 0.88rem; line-height: 1.85; }
:root[data-theme="light"] .deliverables-list li { background: rgba(255,255,255,0.72); }
.deliverables-list li .icon { width: 2rem; height: 2rem; flex: 0 0 auto; margin-top: 0; padding: 0.42rem; border: 1px solid rgba(88,224,189,0.18); border-radius: 0.7rem; background: rgba(88,224,189,0.08); }
.deliverables-list li span { flex: 1; }
.audience-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.audience-card { min-height: 155px; padding: 1.2rem; border: 1px solid var(--line); border-radius: 1.15rem; background: var(--surface); }
.audience-card > span { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.audience-card h3 { margin: 1rem 0 0.35rem; font-size: 1rem; }
.audience-card p { margin: 1.8rem 0 0; color: var(--muted); font-size: 0.82rem; }
.audience-card h3 + p { margin-top: 0.35rem; }
.related-services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.decision-grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: clamp(2.5rem, 7vw, 6rem); }
.decision-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
.decision-steps article { padding: 1.25rem; border: 1px solid var(--line); border-radius: 1.1rem; background: var(--surface); }
.decision-steps span { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.decision-steps h3 { margin: 1.25rem 0 0.35rem; font-size: 1rem; }
.decision-steps p { margin: 0; color: var(--muted); font-size: 0.8rem; }

/* About, Google, local SEO */
.bio-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: clamp(2.5rem, 7vw, 6rem); }
.profile-facts { padding: 1.45rem; border: 1px solid var(--line); border-radius: 1.35rem; background: var(--surface); }
.profile-facts h2 { margin: 0 0 1rem; font-size: 1.2rem; }
.profile-facts .text-link { margin-top: 1rem; margin-inline-end: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.value-card { padding: 1.3rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); }
.value-card > .icon { color: var(--primary); width: 1.55rem; height: 1.55rem; }
.value-card h3 { margin: 1.6rem 0 0.45rem; font-size: 1rem; }
.value-card p { margin: 0; color: var(--muted); font-size: 0.8rem; }
.experience-grid, .google-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.google-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.experience-stat, .google-stat { min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); }
.experience-stat strong, .google-stat strong { color: var(--primary); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.experience-stat span, .google-stat span { margin-top: 0.75rem; color: var(--muted); font-size: 0.78rem; }
.local-paths { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.local-paths article { padding: 1.4rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); }
.local-paths span { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.local-paths h3 { margin: 1.4rem 0 0.45rem; font-size: 1.08rem; }
.local-paths p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.neighborhood-cloud { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.neighborhood-cloud span { padding: 0.62rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text-soft); font-size: 0.78rem; }
.case-method { display: grid; grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr) auto; align-items: center; gap: 2rem; padding: 1.75rem; border: 1px solid var(--line); border-radius: 1.4rem; background: var(--surface); }
.case-method > div > span { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.case-method h2 { margin: 0.35rem 0 0; font-size: 1.4rem; line-height: 1.35; }
.case-method > p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Blog topics and article */
.blog-hero .inner-hero-copy h1 { font-size: clamp(2.4rem, 4.8vw, 4.8rem); }
.article-hero .inner-hero-copy h1 { max-width: 920px; font-size: clamp(2.35rem, 4.25vw, 4.25rem); line-height: 1.12; }
.article-hero .inner-hero-copy > p { max-width: 880px; }
.topics-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.8rem; }
.topic-card { min-height: 190px; display: flex; flex-direction: column; padding: 1.2rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); transition: transform 0.2s ease, border-color 0.2s ease; }
.topic-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.topic-card > .icon { color: var(--secondary); }
.topic-card strong { margin-top: 2rem; font-size: 0.95rem; line-height: 1.45; }
.topic-card span { display: flex; align-items: center; gap: 0.35rem; margin-top: auto; color: var(--primary); font-size: 0.68rem; font-weight: 800; }
.topic-card span .icon { width: 0.9rem; height: 0.9rem; }
.empty-state { padding: 3rem; border: 1px dashed var(--line-strong); border-radius: 1.4rem; text-align: center; }
.empty-state h2 { margin: 0; }
.empty-state p { color: var(--muted); }
.article-meta-card { display: grid; gap: 0.42rem; }
.article-meta-card > span { color: var(--primary); font-size: 0.7rem; font-weight: 850; }
.article-meta-card strong { font-size: clamp(1.55rem, 3vw, 2.1rem); }
.article-meta-card p { margin: 0; color: var(--muted); font-size: 0.72rem; }
.article-hero-keywords { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: -1.05rem; }
.article-hero-keywords span { padding: 0.5rem 0.75rem; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface-glass); color: var(--text-soft); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); font-size: 0.68rem; font-weight: 800; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.article-content { min-width: 0; max-width: 880px; }
.article-intro { margin: 0 0 3rem !important; padding: clamp(1.2rem, 2.5vw, 1.6rem); border: 1px solid rgba(88,224,189,0.15); border-inline-start: 4px solid var(--primary); border-radius: 0.4rem 1.1rem 1.1rem 0.4rem; background: linear-gradient(145deg, rgba(88,224,189,0.07), rgba(88,201,255,0.025)); color: var(--text-soft) !important; font-size: clamp(1rem, 1.3vw, 1.08rem) !important; line-height: 2.05 !important; }
.article-content section { position: relative; padding-top: 1.35rem; margin-bottom: clamp(3rem, 7vw, 4.6rem); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-height) + 2rem); }
.article-number { display: inline-flex; align-items: center; min-height: 27px; padding-inline: 0.55rem; border: 1px solid rgba(88,224,189,0.16); border-radius: 999px; background: rgba(88,224,189,0.05); color: var(--primary); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.08em; }
.article-content h2 { max-width: 800px; margin: 0.8rem 0 1.15rem; font-size: clamp(1.65rem, 3.2vw, 2.55rem); line-height: 1.35; letter-spacing: -0.035em; }
.article-content h3 { margin: 0 0 0.35rem; font-size: 1rem; line-height: 1.55; }
.article-content p { margin: 0 0 1.15rem; color: var(--text-soft); font-size: clamp(0.98rem, 1.2vw, 1.04rem); line-height: 2.12; }
.article-content p:last-child { margin-bottom: 0; }
.article-roadmap { list-style: none; display: grid; gap: 0.8rem; margin: 1.5rem 0 0; padding: 0; }
.article-roadmap li { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 1rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: 1.1rem; background: var(--surface); }
.article-roadmap li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 0.9rem; background: rgba(88,201,255,0.08); color: var(--secondary); font-size: 0.7rem; font-weight: 900; }
.article-roadmap p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.85; }
.article-deliverables { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; margin: 1.5rem 0 0; padding: 0; }
.article-deliverables li { display: flex; align-items: flex-start; gap: 0.65rem; min-height: 88px; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); color: var(--text-soft); font-size: 0.82rem; line-height: 1.75; }
.article-deliverables .icon { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; margin-top: 0.25rem; color: var(--primary); }
.article-value-note { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; align-items: center; margin-top: 1rem; padding: 1rem 1.15rem; border: 1px solid rgba(88,201,255,0.15); border-radius: 1rem; background: rgba(88,201,255,0.04); }
.article-value-note > span { color: var(--secondary); font-size: 0.67rem; font-weight: 900; }
.article-value-note p { margin: 0; font-size: 0.86rem; line-height: 1.85; }
.article-content section.article-conclusion { padding: clamp(1.35rem, 3vw, 2rem); border: 1px solid rgba(88,224,189,0.2); border-radius: 1.35rem; background: linear-gradient(145deg, rgba(88,224,189,0.08), rgba(88,201,255,0.035), var(--surface)); }
.article-conclusion h2 { margin-top: 0.75rem; }
.article-sidebar { display: grid; gap: 1rem; }
.article-author-card, .toc-card, .related-service-card { padding: 1.15rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); box-shadow: var(--shadow-sm); }
.article-author-head { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 0.85rem; align-items: center; }
.article-author-photo { width: 64px; height: 64px; object-fit: cover; border: 2px solid rgba(88,224,189,0.28); border-radius: 1rem; background: var(--bg-elevated); }
.article-author-head span { color: var(--primary); font-size: 0.61rem; font-weight: 850; }
.article-author-head h2 { margin: 0.12rem 0; font-size: 0.96rem; line-height: 1.4; }
.article-author-head p { margin: 0; color: var(--muted); font-size: 0.62rem; line-height: 1.55; }
.article-author-card dl { display: grid; gap: 0.45rem; margin: 0.9rem 0; padding-block: 0.75rem; border-block: 1px solid var(--line); }
.article-author-card dl > div { display: flex; justify-content: space-between; gap: 0.8rem; }
.article-author-card dt { color: var(--muted-2); font-size: 0.62rem; }
.article-author-card dd { margin: 0; color: var(--text-soft); font-size: 0.62rem; font-weight: 750; text-align: end; }
.article-author-keywords { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.article-author-keywords span { padding: 0.3rem 0.45rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--bg-elevated); font-size: 0.57rem; }
.article-author-card .text-link { margin-top: 0.85rem; margin-inline-start: auto; font-size: 0.68rem; }
.toc-card > span, .related-service-card > span { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.toc-card nav { display: grid; gap: 0.25rem; margin-top: 0.8rem; }
.toc-card a { display: grid; grid-template-columns: 28px 1fr; gap: 0.55rem; align-items: start; padding-block: 0.38rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.72rem; line-height: 1.55; }
.toc-card a:last-child { border-bottom: 0; }
.toc-card a:hover { color: var(--text); }
.toc-card a span { color: var(--muted-2); font-size: 0.59rem; font-weight: 900; }
.related-service-card > div { display: flex; gap: 0.7rem; align-items: center; margin-top: 0.9rem; }
.related-service-card > div .icon { color: var(--secondary); }
.related-service-card h2 { margin: 0; font-size: 1rem; }
.related-service-card p { color: var(--muted); font-size: 0.76rem; line-height: 1.75; }
.related-service-card .button { width: 100%; }
.article-faq-section { scroll-margin-top: calc(var(--header-height) + 1rem); }
.article-faq-grid { display: grid; grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.article-faq-intro { position: sticky; top: calc(var(--header-height) + 1.5rem); }
.article-faq-intro h2 { margin: 0.7rem 0; font-size: clamp(1.8rem, 4vw, 3.35rem); line-height: 1.22; letter-spacing: -0.045em; }
.article-faq-intro > p { margin: 0; color: var(--muted); line-height: 1.9; }
.faq-count { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.faq-count strong { color: var(--primary); font-size: 2.35rem; line-height: 1; }
.faq-count span { max-width: 14ch; color: var(--muted); font-size: 0.7rem; line-height: 1.45; }
.article-faq-section .accordion { gap: 0.75rem; }
.article-faq-section .accordion summary { min-height: 74px; font-size: 0.95rem; line-height: 1.65; }
.article-faq-section .accordion p { color: var(--text-soft); font-size: 0.9rem; line-height: 2; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.business-map-section { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem); border-block: 1px solid var(--line); background: radial-gradient(circle at 12% 18%, rgba(88,224,189,0.08), transparent 27rem), linear-gradient(135deg, rgba(88,201,255,0.035), transparent 50%); overflow: hidden; }
.wide-map-container { width: min(calc(100% - 32px), 1440px); margin-inline: auto; }
.business-map-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.4rem; }
.business-map-heading h2 { margin: 0.65rem 0 0.45rem; font-size: clamp(1.9rem, 4vw, 3.35rem); line-height: 1.2; letter-spacing: -0.04em; }
.business-map-heading p { max-width: 760px; margin: 0; color: var(--muted); font-size: 0.92rem; }
.map-profile-link { flex: 0 0 auto; min-height: 44px; padding: 0.65rem 0.85rem; border: 1px solid var(--line-strong); border-radius: 0.85rem; background: var(--surface-glass); }
.business-map-frame { width: 100%; height: clamp(450px, 48vw, 640px); border: 1px solid var(--line-strong); border-radius: 1.35rem; background: var(--surface); box-shadow: var(--shadow-md); overflow: hidden; }
.business-map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.business-map-bar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 0.8rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface-glass); box-shadow: var(--shadow-sm); overflow: hidden; }
.business-map-bar > span, .business-map-bar > a { min-height: 62px; display: flex; align-items: center; justify-content: center; gap: 0.55rem; padding: 0.8rem 1rem; color: var(--muted); font-size: 0.76rem; font-weight: 750; text-align: center; }
.business-map-bar > * + * { border-inline-start: 1px solid var(--line); }
.business-map-bar .icon { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; color: var(--primary); }
.business-map-bar > a:hover { color: var(--primary); }
.contact-options { display: grid; gap: 0.8rem; }
.contact-card { display: grid; grid-template-columns: 54px minmax(0, 1fr) 24px; align-items: center; gap: 0.9rem; padding: 1rem; border: 1px solid var(--line); border-radius: 1.15rem; background: var(--surface); transition: transform 0.2s ease, border-color 0.2s ease; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.contact-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 1rem; }
.contact-whatsapp { background: rgba(34,199,109,0.09); color: var(--whatsapp); }
.contact-call { background: rgba(53,137,255,0.09); color: var(--call); }
.contact-mail { background: rgba(88,201,255,0.09); color: var(--secondary); }
.contact-card small { color: var(--muted-2); font-size: 0.65rem; }
.contact-card h2 { margin: 0.15rem 0; font-size: 1rem; }
.contact-card p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.contact-card > .icon { color: var(--muted-2); width: 1.05rem; height: 1.05rem; }
.contact-note { display: flex; gap: 0.9rem; padding: 1.1rem; border: 1px solid rgba(88,224,189,0.14); border-radius: 1.15rem; background: rgba(88,224,189,0.04); }
.contact-note > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 0.8rem; background: rgba(88,224,189,0.08); color: var(--primary); }
.contact-note h2 { margin: 0; font-size: 0.95rem; }
.contact-note p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.76rem; }
.project-form { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: 1.5rem; background: var(--surface); box-shadow: var(--shadow-md); }
.form-head { margin-bottom: 1.3rem; }
.form-head > span { color: var(--primary); font-size: 0.68rem; font-weight: 850; }
.form-head h2 { margin: 0.35rem 0 0.4rem; font-size: 1.45rem; }
.form-head p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.project-form label { display: grid; gap: 0.42rem; margin-bottom: 0.9rem; }
.project-form label > span { color: var(--text-soft); font-size: 0.76rem; font-weight: 750; }
.project-form input, .project-form textarea, .project-form select { width: 100%; border: 1px solid var(--line); border-radius: 0.85rem; background: var(--bg-elevated); padding: 0.78rem 0.9rem; outline: none; transition: border-color 0.18s ease, box-shadow 0.18s ease; }
.project-form textarea { resize: vertical; min-height: 150px; }
.project-form input:focus, .project-form textarea:focus, .project-form select:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(88,201,255,0.08); }
.project-form label small { justify-self: end; color: var(--muted-2); font-size: 0.64rem; }
.form-message { min-height: 1.5rem; margin-bottom: 0.7rem; color: var(--danger); font-size: 0.75rem; }
.project-form > .button { width: 100%; }

/* Legal and 404 */
.legal-content { max-width: 860px; }
.legal-content section { margin-bottom: 2.5rem; }
.legal-content h2 { margin: 0 0 0.65rem; font-size: 1.4rem; }
.legal-content p { margin: 0; color: var(--text-soft); line-height: 2; }
.legal-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated { padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted) !important; font-size: 0.8rem; }
.not-found { min-height: calc(100svh - var(--header-height)); display: grid; place-items: center; padding-block: 4rem; text-align: center; }
.not-found > .container { max-width: 700px; }
.not-found span { display: block; color: var(--primary); font-size: clamp(5rem, 18vw, 12rem); line-height: 0.8; font-weight: 900; letter-spacing: -0.08em; opacity: 0.16; }
.not-found h1 { margin: 1.5rem 0 0.6rem; font-size: clamp(2rem, 5vw, 4rem); }
.not-found p { margin: 0 auto; max-width: 620px; color: var(--muted); }
.not-found .hero-actions { justify-content: center; }

/* Footer and floating controls */
.site-footer { border-top: 1px solid var(--line); background: #04101a; padding-top: 4.5rem; padding-bottom: calc(1.25rem + env(safe-area-inset-bottom)); }
:root[data-theme="light"] .site-footer { background: #eaf1f5; }
.footer-grid { display: grid; grid-template-columns: minmax(250px, 1.3fr) 0.65fr 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.footer-intro > p { max-width: 390px; margin: 1.2rem 0; color: var(--muted); font-size: 0.84rem; }
.social-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 0.75rem; color: var(--muted); font-size: 0.68rem; font-weight: 900; transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease; }
.social-row a:hover { color: var(--text); border-color: var(--secondary); transform: translateY(-2px); }
.footer-column { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-column h2 { margin: 0 0 0.55rem; font-size: 0.86rem; }
.footer-column a, .footer-contact > span { color: var(--muted); font-size: 0.75rem; transition: color 0.18s ease; }
.footer-column a:hover { color: var(--primary); }
.footer-more { color: var(--primary) !important; font-weight: 800; }
.footer-contact a, .footer-contact > span { display: flex; align-items: center; gap: 0.5rem; }
.footer-contact .icon { width: 1rem; height: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; margin-top: 3rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.68rem; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.floating-contact { position: fixed; z-index: 180; inset-inline-start: max(1rem, env(safe-area-inset-left)); bottom: 1rem; display: flex; flex-direction: column; gap: 0.55rem; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; }
.floating-contact.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.floating-action { min-width: 52px; height: 52px; display: flex; align-items: center; gap: 0.55rem; padding: 0 0.85rem; border-radius: 999px; color: #fff; box-shadow: var(--shadow-md); font-size: 0.72rem; font-weight: 850; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.floating-action:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.floating-call { background: linear-gradient(135deg, #2878ed, #4d9cff); }
.floating-whatsapp { background: linear-gradient(135deg, #159c52, #29d774); }
.floating-action .icon { width: 1.2rem; height: 1.2rem; }
.mobile-bottom-nav { display: none; }
.back-to-top { position: fixed; z-index: 170; inset-inline-end: 1rem; bottom: 1rem; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-glass); color: var(--muted); box-shadow: var(--shadow-sm); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top .icon { transform: rotate(-90deg); width: 1.05rem; height: 1.05rem; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* LTR refinements */
[dir="ltr"] body { font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.65; }
[dir="ltr"] .hero-copy h1, [dir="ltr"] .inner-hero-copy h1, [dir="ltr"] .section-heading h2 { letter-spacing: -0.05em; }
[dir="ltr"] .service-card > p:not(.service-group), [dir="ltr"] .post-card > p { line-height: 1.65; }

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav { gap: 0.9rem; }
  .desktop-nav a { font-size: 0.78rem; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr); gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .projects-grid .project-card:last-child:nth-child(odd) { grid-column: span 2; }
  .posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .posts-grid .post-card:last-child:nth-child(odd) { grid-column: span 2; }
  .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.25fr 0.75fr 1fr; }
  .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, max-content)); align-items: center; gap: 0.8rem 1.5rem; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .header-inner { justify-content: space-between; gap: 0.75rem; }
  .header-tools { margin-inline-start: auto; }
  .mobile-menu { display: block; position: fixed; top: var(--header-height); inset-inline: 0; max-height: calc(100dvh - var(--header-height)); padding: 0 1rem 1rem; visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu-inner { display: grid; gap: 0.35rem; padding: 0.9rem; border: 1px solid var(--line); border-radius: 1.15rem; background: var(--bg); box-shadow: var(--shadow-lg); overflow-y: auto; }
  :root[data-theme="light"] .mobile-menu-inner { background: rgba(255,255,255,0.98); }
  .mobile-menu-inner > a:not(.button) { min-height: 46px; display: flex; align-items: center; padding: 0 0.8rem; border-radius: 0.75rem; color: var(--muted); font-size: 0.86rem; font-weight: 800; }
  .mobile-menu-inner > a.is-active { color: var(--text); background: rgba(88,201,255,0.07); }
  .mobile-language { border-top: 1px solid var(--line); margin-top: 0.35rem; padding-top: 0.5rem !important; }
  body.menu-open { overflow: hidden; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 520px; }
  .visual-shell { width: min(100%, 520px); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar > div:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--line); }
  .stats-bar > div:nth-child(4) { border-top: 1px solid var(--line); }
  .promise-grid, .faq-grid, .decision-grid, .service-intro-grid, .split-heading, .bio-grid, .contact-grid { grid-template-columns: 1fr; }
  .promise-copy, .faq-intro, .service-quick-card, .disclaimer-card { position: static; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--line); }
  .process-list li:nth-child(4) { border-top: 1px solid var(--line); }
  .proof-panel { grid-template-columns: 68px minmax(0, 1fr); }
  .proof-actions { grid-column: 1 / -1; flex-direction: row; min-width: 0; }
  .proof-actions .button { flex: 1; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero-aside { min-height: 0; max-width: 620px; }
  .maps-grid { grid-template-columns: 1fr; }
  .business-map-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .business-map-frame { height: 470px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .case-method { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .article-author-card { grid-column: 1 / -1; }
  .blog-featured-shell .post-card-featured { grid-template-columns: 1fr; min-height: 0; }
  .post-card-featured .post-art { min-height: 310px; }
  .article-faq-grid { grid-template-columns: 1fr; }
  .article-faq-intro { position: static; max-width: 720px; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-services { grid-column: auto; }
  .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  :root { --section-space: clamp(4rem, 14vw, 5.8rem); }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { padding-top: env(safe-area-inset-top); height: calc(var(--header-height) + env(safe-area-inset-top)); }
  .mobile-menu { top: calc(var(--header-height) + env(safe-area-inset-top)); max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top)); }
  .brand-logo { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 0.8rem; }
  .brand-copy small { display: none; }
  .language-switch { display: none; }
  .hero { padding-top: 3rem; }
  .hero-grid { gap: 2.4rem; }
  .hero-copy h1 { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-support { font-size: 0.88rem; }
  .hero-actions .button { flex: 1 1 180px; }
  .hero-trust { display: grid; gap: 0.65rem; }
  .hero-visual { min-height: 440px; }
  .visual-shell { padding: 1rem; border-radius: 1.4rem; }
  .visual-core { grid-template-columns: 88px 1fr; gap: 0.85rem; }
  .hero-logo { width: 88px; height: 88px; }
  .visual-core strong { font-size: 1.55rem; }
  .visual-capabilities span { min-height: 44px; padding: 0.55rem; font-size: 0.67rem; }
  .visual-metric { grid-template-columns: auto auto; }
  .visual-metric p { grid-column: 1 / -1; }
  .orbit-a { width: 400px; height: 400px; }
  .orbit-b { width: 470px; height: 470px; }
  .stats-bar { border-radius: 1.1rem; }
  .stats-bar > div { padding: 1.1rem 0.8rem; }
  .stats-bar strong { font-size: 1.8rem; }
  .stats-bar span { font-size: 0.67rem; }
  .section-heading h2, .promise-copy h2, .faq-intro h2, .decision-copy h2, .rich-copy h2 { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .service-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.45rem; scroll-snap-type: x proximity; scrollbar-width: none; }
  .service-filters::-webkit-scrollbar { display: none; }
  .service-filters button { flex: 0 0 auto; scroll-snap-align: start; }
  .services-grid, .projects-grid, .projects-grid-all, .posts-grid, .related-services, .scope-grid { grid-template-columns: 1fr; }
  .projects-grid .project-card:last-child:nth-child(odd), .posts-grid .post-card:last-child:nth-child(odd) { grid-column: auto; }
  .service-card { min-height: 0; }
  .project-content > p { min-height: 0; }
  .principles-grid, .result-grid, .decision-steps, .audience-grid, .values-grid, .local-paths, .google-stats { grid-template-columns: 1fr; }
  .principle { min-height: 210px; }
  .proof-panel { grid-template-columns: 1fr; text-align: start; }
  .proof-icon { width: 62px; height: 62px; }
  .proof-actions { grid-column: auto; flex-direction: column; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 180px; }
  .process-list li + li { border-inline-start: 0; border-top: 1px solid var(--line); }
  .faq-grid { gap: 2rem; }
  .cta-panel { grid-template-columns: 1fr; padding: 1.5rem; border-radius: 1.35rem; }
  .cta-actions { min-width: 0; }
  .inner-hero { padding-block: 2.5rem; }
  .breadcrumbs { margin-bottom: 1.4rem; }
  .inner-hero-copy h1 { font-size: clamp(2.35rem, 12vw, 4rem); }
  .blog-hero .inner-hero-copy h1 { font-size: clamp(2.2rem, 10.2vw, 3.2rem); line-height: 1.12; }
  .article-hero .inner-hero-copy h1 { font-size: clamp(2.05rem, 9.2vw, 2.8rem); line-height: 1.16; }
  .inner-hero-aside { padding: 1.15rem; }
  .map-card { grid-template-columns: 1fr; }
  .map-visual { min-height: 150px; }
  .deliverables-panel { padding: 0.75rem; border-radius: 1.2rem; }
  .deliverables-list { grid-template-columns: 1fr; gap: 0.65rem; }
  .deliverables-list li, .deliverables-list li:last-child { min-height: 0; padding: 0.9rem; font-size: 0.84rem; }
  .wide-map-container { width: min(calc(100% - 24px), 1440px); }
  .business-map-heading { margin-bottom: 1rem; }
  .business-map-heading h2 { font-size: clamp(1.7rem, 8vw, 2.45rem); }
  .map-profile-link { width: 100%; justify-content: center; }
  .business-map-frame { height: 400px; border-radius: 1rem; }
  .business-map-bar { grid-template-columns: 1fr; }
  .business-map-bar > * + * { border-inline-start: 0; border-top: 1px solid var(--line); }
  .business-map-bar > span, .business-map-bar > a { min-height: 54px; justify-content: flex-start; text-align: start; }
  .experience-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-card { min-height: 170px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-author-card { grid-column: auto; }
  .post-card-featured .post-art { min-height: 250px; }
  .post-card-featured .post-card-content { padding: 1.25rem; }
  .post-card-featured h3 { font-size: clamp(1.45rem, 7.5vw, 2.15rem); }
  .article-hero-keywords { margin-top: 0.9rem; }
  .article-layout { gap: 2.5rem; }
  .article-content section { margin-bottom: 3rem; }
  .article-deliverables { grid-template-columns: 1fr; }
  .article-deliverables li { min-height: 0; }
  .article-value-note { grid-template-columns: 1fr; gap: 0.35rem; }
  .article-roadmap li { grid-template-columns: 42px minmax(0, 1fr); gap: 0.75rem; padding: 0.9rem; }
  .article-roadmap li > span { width: 42px; height: 42px; }
  .article-faq-section .accordion summary { min-height: 68px; padding: 0.9rem; font-size: 0.88rem; }
  .article-faq-section .accordion details > div { padding-inline: 0.9rem; }
  .contact-card { grid-template-columns: 48px minmax(0, 1fr) 20px; }
  .contact-icon { width: 48px; height: 48px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.2rem; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-contact { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .site-footer { padding-bottom: calc(6.5rem + env(safe-area-inset-bottom)); }
  .mobile-bottom-nav { position: fixed; z-index: 190; inset-inline: max(0.65rem, env(safe-area-inset-left)) max(0.65rem, env(safe-area-inset-right)); bottom: max(0.55rem, env(safe-area-inset-bottom)); min-height: 62px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0.4rem; border: 1px solid var(--line-strong); border-radius: 1.15rem; background: rgba(6,19,31,0.93); backdrop-filter: blur(18px); box-shadow: var(--shadow-lg); }
  :root[data-theme="light"] .mobile-bottom-nav { background: rgba(255,255,255,0.94); }
  .mobile-bottom-nav a { min-height: 52px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.22rem; border-radius: 0.8rem; color: var(--muted); font-size: 0.58rem; font-weight: 800; }
  .mobile-bottom-nav a[aria-current="page"] { color: var(--primary); background: rgba(88,224,189,0.07); }
  .mobile-bottom-nav .icon { width: 1.15rem; height: 1.15rem; }
  .floating-contact { bottom: calc(4.9rem + env(safe-area-inset-bottom)); inset-inline-start: auto; inset-inline-end: 0.8rem; }
  .back-to-top { display: none; }
  .floating-action { width: 48px; min-width: 48px; height: 48px; padding: 0; justify-content: center; }
  .floating-action span { display: none; }
  .back-to-top { bottom: calc(5rem + env(safe-area-inset-bottom)); inset-inline-end: 0.8rem; }
}

@media (max-width: 430px) {
  .brand-copy strong { max-width: 148px; overflow: hidden; text-overflow: ellipsis; }
  .header-tools { gap: 0.4rem; }
  .theme-toggle, .menu-toggle { width: 40px; height: 40px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 12.4vw, 3.5rem); }
  .visual-capabilities { grid-template-columns: 1fr; }
  .visual-capabilities span:nth-child(n+5) { display: none; }
  .hero-visual { min-height: 460px; }
  .stats-bar span { max-width: 16ch; margin-inline: auto; }
  .service-card, .project-content, .scope-card, .audience-card { padding: 1.15rem; }
  .scope-card { min-height: 155px; }
  .scope-card > .icon { margin-top: 1rem; }
  .inner-hero-copy h1 { font-size: clamp(2.15rem, 11.5vw, 3.3rem); }
  .topics-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: 150px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
  .project-form { padding: 1rem; }
  .cta-panel h2 { font-size: 1.8rem; }
}

@media (max-width: 350px) {
  .container { width: min(calc(100% - 18px), var(--container)); }
  .brand-copy strong { max-width: 118px; font-size: 0.73rem; }
  .hero-copy h1 { font-size: 2.15rem; }
  .button { padding-inline: 0.85rem; font-size: 0.82rem; }
  .visual-core strong { font-size: 1.25rem; }
  .visual-core span { font-size: 0.58rem; }
  .stats-bar > div { padding-inline: 0.45rem; }
}

@media (hover: none) {
  .service-card:hover, .project-card:hover, .post-card:hover, .map-card:hover, .contact-card:hover, .topic-card:hover, .button:hover, .floating-action:hover { transform: none; }
}

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

@media print {
  .site-header, .site-footer, .floating-contact, .mobile-bottom-nav, .back-to-top, .hero-visual, .service-filters, .final-cta { display: none !important; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
  .section-pad { padding-block: 1.5rem; }
  .container { width: 100%; }
  a { color: #000; }
  .service-card, .project-card, .scope-card, .article-conclusion { break-inside: avoid; border-color: #bbb; background: #fff; box-shadow: none; }
}
