/* ===== Nile Theme — Main Stylesheet ===== */
/* Converted from design system: styles.css + pages.css */

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --navy:    #0A2540;
  --navy-2:  #102d4f;
  --blue:    #1E4E8C;
  --blue-2:  #2F6FB6;
  --sky:     #59BED9;
  --sky-2:   #7FD0E4;
  --ice:     #DCEFF6;
  --ice-2:   #EDF5FB;
  --mist:    #F7FBFF;
  --text:    #0E2135;
  --text-2:  #384B63;
  --muted:   #6B7B91;
  --line:    #E4ECF4;
  --line-2:  #D4E0EE;
  --white:   #FFFFFF;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-1: 0 1px 2px rgba(10,37,64,0.04), 0 2px 8px rgba(10,37,64,0.04);
  --shadow-2: 0 8px 24px rgba(10,37,64,0.08);
  --shadow-3: 0 20px 60px rgba(10,37,64,0.14);

  --font-head: "Tajawal", "Noto Kufi Arabic", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-body: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;

  --container: 1240px;
}

/* ─── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; color: var(--text-2); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }
ol { margin: 0; padding: 0; }

/* Skip to content */
.skip-to-content {
  position: absolute;
  top: -100%;
  right: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--navy);
  color: white;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top .2s;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

/* Focus styles — keyboard accessibility */
:focus-visible {
  outline: 3px solid var(--blue-2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
.h1  { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.h2  { font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; letter-spacing: -0.015em; }
.h3  { font-size: clamp(20px, 1.8vw, 24px); font-weight: 700; }
.lead { font-size: clamp(15px, 1.1vw, 17px); color: var(--text-2); line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--blue-2);
  padding: 6px 12px;
  background: var(--ice-2);
  border-radius: 999px;
  border: 1px solid var(--ice);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-2); flex-shrink: 0; }

/* ─── Section Helpers ────────────────────────────────────────────────────── */
.section        { padding: clamp(64px, 8vw, 120px) 0; }
.section-tight  { padding: clamp(48px, 6vw, 80px) 0; }
.section-head   { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head .lead    { margin-top: 16px; }
.section-head .eyebrow { margin-bottom: 16px; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: all .2s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.btn-primary:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.btn-secondary { background: var(--white); color: var(--navy); border: 1px solid var(--line-2); }
.btn-secondary:hover { border-color: var(--navy); background: var(--ice-2); }
.btn-whatsapp  { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1fb858; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.btn-lg    { padding: 18px 28px; font-size: 16px; }
.btn-ghost { padding: 10px 14px; color: var(--navy); }
.btn-ghost:hover { background: var(--ice-2); }

/* ─── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 500;
  padding: 10px 0;
  overflow: hidden;
}
.trust-bar .marquee {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-rtl 28s linear infinite;
  white-space: nowrap;
}
.trust-bar:hover .marquee { animation-play-state: paused; }
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-bar .item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .95;
  flex-shrink: 0;
}
.trust-bar svg { width: 16px; height: 16px; color: var(--sky); }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 32px;
}
.header .logo { display: flex; align-items: center; gap: 12px; }
.header .logo img { height: 78px; width: auto; display: block; }
.header .logo .site-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.menu-btn svg {
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s;
  color: var(--navy) !important;
  stroke: var(--navy) !important;
}
.menu-btn[aria-expanded="true"] svg:not(.close-icon) {
  transform: rotate(45deg) scale(.5);
  opacity: 0;
}
.menu-btn[aria-expanded="true"] .close-icon {
  transform: rotate(0deg);
  opacity: 1;
}
.menu-btn .close-icon {
  position: absolute;
  transform: rotate(-45deg) scale(.5);
  opacity: 0;
}
.menu-btn:hover { background: var(--ice-2); }


.header .nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* WordPress menu items */
.header .nav li { list-style: none; margin: 0; padding: 0; }
.header .nav a {
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .18s;
}
.header .nav a:hover { color: var(--blue); }
.header .nav .current-menu-item > a,
.header .nav a.active {
  color: var(--navy);
}
.header .nav .current-menu-item > a::after,
.header .nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--blue-2);
  border-radius: 2px;
}
.header .cta-group { display: flex; align-items: center; gap: 12px; }
.header .phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  direction: ltr;
}
.header .phone svg { color: var(--blue-2); }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0 clamp(80px, 8vw, 140px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(89,190,217,0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(47,111,182,0.10), transparent 55%),
    linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 120px;
  z-index: -1;
  opacity: .6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero-copy .h1    { margin-bottom: 20px; }
.hero-copy .lead  { margin-bottom: 32px; max-width: 560px; }
.hero-ctas        { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats .stat .lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-family: var(--font-head);
}

/* Hero Booking Form */
.hero-booking {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-2);
}
.hero-booking h2, .hero-booking h3 { margin-bottom: 4px; font-size: 22px; }
.hero-booking .sub  { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.hero-booking .field { margin-bottom: 14px; }
.hero-booking label {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-weight: 500;
}
.hero-booking select,
.hero-booking input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--mist);
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  min-height: 44px;
}
.hero-booking select:focus,
.hero-booking input:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(47,111,182,0.15);
  background: white;
}
#hero-form-status {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 500;
}
#hero-form-status.success { background: #d1fae5; color: #065f46; }
#hero-form-status.error   { background: #fee2e2; color: #991b1b; }

/* ─── Logo Strip ─────────────────────────────────────────────────────────── */
.logo-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.logo-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-strip .label { font-family: var(--font-head); font-size: 13px; color: var(--muted); }
.logo-strip .logos { display: flex; gap: 36px; flex-wrap: wrap; opacity: .55; }

/* ─── Services Accordion ─────────────────────────────────────────────────── */
.services-tabs-wrap { display: flex; justify-content: center; }
.services-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--ice-2);
  border-radius: 999px;
  margin: 0 auto 32px;
}
.services-tabs button {
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-2);
  transition: all .18s;
  min-height: 44px;
}
.services-tabs button .tab-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: .7;
  margin-top: 1px;
}
.services-tabs button.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-1);
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
}
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-head {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  text-align: right;
  transition: background .18s;
}
.acc-head:hover { background: var(--mist); }
.acc-head .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ice-2);
  color: var(--blue);
  display: grid; place-items: center;
  flex: 0 0 auto;
  transition: background .18s, color .18s;
}
.acc-item.open .acc-head .ico { background: var(--navy); color: white; }
.acc-head .title {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  text-align: right;
}
.acc-head .sub { font-size: 13px; color: var(--muted); margin-top: 3px; font-weight: 400; }
.acc-head .chev { color: var(--muted); transition: transform .25s cubic-bezier(.2,.8,.2,1), color .18s; }
.acc-item.open .acc-head .chev { transform: rotate(180deg); color: var(--navy); }

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s cubic-bezier(.2,.8,.2,1);
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body .inner { overflow: hidden; }
.acc-content {
  padding: 20px 24px 28px;
  border-top: 1px dashed var(--line);
  margin-top: 4px;
}
.acc-content p { margin-bottom: 18px; }
.acc-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.acc-city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .18s;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  text-decoration: none;
  min-height: 44px;
}
.acc-city:hover { border-color: var(--blue-2); background: white; box-shadow: var(--shadow-1); }
.acc-city .arrow { color: var(--blue-2); transition: transform .18s; }
.acc-city:hover .arrow { transform: translateX(-4px); }
.acc-city .city-sub { font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 2px; }
.acc-city-main { display: flex; flex-direction: column; align-items: flex-start; }

/* ─── Why Us Grid ─────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .2s;
}
.why-card:hover { border-color: var(--blue-2); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.why-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ─── Process Timeline ─────────────────────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step { position: relative; text-align: center; padding: 0 12px; z-index: 1; }
.process-step .num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--blue-2);
  color: var(--blue);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
}
.process-step:first-child .num { background: var(--navy); color: white; border-color: var(--navy); }
.process-step h3, .process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p  { font-size: 14px; color: var(--text-2); }

/* ─── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-wrap { background: var(--mist); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-stars { color: #f5b400; display: flex; gap: 2px; margin-bottom: 16px; font-size: 18px; }
.testi-card blockquote, .testi-card .quote {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}
.testi-card blockquote p, .testi-card .quote p { color: var(--text); margin: 0; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-who .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-who .name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 15px; }
.testi-who .role { font-size: 13px; color: var(--muted); }
.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 500;
  padding: 4px 10px;
  background: var(--ice-2);
  border-radius: 999px;
  margin-right: auto;
}

/* ─── Coverage ─────────────────────────────────────────────────────────────── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.city-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.city-card::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,190,217,0.3), transparent 70%);
  pointer-events: none;
}
.city-card .city-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  color: white;
  letter-spacing: -0.01em;
  position: relative;
}
.city-card .city-note {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  line-height: 1.6;
  position: relative;
}
.city-card .city-meta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  font-family: var(--font-head);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.city-card .city-meta .dot {
  width: 6px; height: 6px;
  background: var(--sky);
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
}

/* ─── CTA Block ─────────────────────────────────────────────────────────────── */
.cta-block {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-block::before, .cta-block::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,190,217,0.18), transparent 70%);
  pointer-events: none;
}
.cta-block::before { width: 420px; height: 420px; top: -180px; right: -100px; }
.cta-block::after  {
  width: 320px; height: 320px; bottom: -140px; left: -80px;
  background: radial-gradient(circle, rgba(47,111,182,0.22), transparent 70%);
}
.cta-block h2 { color: white; margin-bottom: 12px; position: relative; }
.cta-block p  { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 17px; position: relative; }
.cta-block .btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; }
.cta-block .btn-primary  { background: white; color: var(--navy); }
.cta-block .btn-primary:hover { background: var(--ice); }
.cta-block .btn-secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.28); }
.cta-block .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: #061B33;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 28px;
  font-size: 14px;
}
.footer a { color: rgba(255,255,255,0.75); transition: color .15s; }
.footer a:hover { color: white; }
.footer .cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .brand .footer-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
  object-fit: contain;
}
.footer .brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer .brand .footer-brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: white;
  display: block;
  margin-bottom: 16px;
}
.footer h4 {
  color: white;
  font-size: 15px;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul li { display: flex; gap: 8px; align-items: flex-start; }
.footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer .socials { display: flex; gap: 10px; }
.footer .socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.footer .socials a:hover { background: rgba(255,255,255,0.14); }

/* ─── Sticky WhatsApp ───────────────────────────────────────────────────────── */
.sticky-wa {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 50;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  transition: transform .2s;
  text-decoration: none;
}
.sticky-wa:hover { transform: scale(1.08); }
.sticky-wa::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: .25;
  animation: wa-pulse 2s cubic-bezier(.2,.8,.2,1) infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .35; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ─── Mobile Slider ─────────────────────────────────────────────────────────── */
.mobile-slider { display: none; }
.slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-card { flex: 0 0 100%; scroll-snap-align: center; min-width: 0; }
.slider-card.process-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line-2);
  color: var(--navy);
  display: grid; place-items: center;
  transition: all .15s;
}
.slider-arrow:hover:not(:disabled) { border-color: var(--blue-2); color: var(--blue); background: var(--ice-2); }
.slider-arrow:disabled { opacity: .35; cursor: not-allowed; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  transition: all .18s;
  padding: 0;
  min-height: auto;
  min-width: auto;
}
.slider-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* ─── Pagination ────────────────────────────────────────────────────────────── */
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-2);
  border: 1px solid var(--line);
  background: white;
  transition: all .15s;
  text-decoration: none;
}
.page-numbers:hover   { border-color: var(--blue-2); color: var(--blue); }
.page-numbers.current { background: var(--navy); color: white; border-color: var(--navy); }
.page-numbers.dots    { border: none; background: none; }

/* ─── Search Form ─────────────────────────────────────────────────────────── */
.search-form { display: flex; gap: 8px; }
.search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--mist);
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  min-height: 44px;
}
.search-form .search-field:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(47,111,182,0.15);
  background: white;
}
.search-form .search-submit {
  padding: 12px 20px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s;
  min-height: 44px;
}
.search-form .search-submit:hover { background: var(--blue); }

/* ─── Widgets ───────────────────────────────────────────────────────────────── */
.widget { margin-bottom: 24px; }
.widget-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ice);
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-2); transition: color .15s; }
.widget ul li a:hover { color: var(--blue); }

/* ─── Page Hero ──────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .truncate {
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-2);
}

/* ─── Article / Blog ─────────────────────────────────────────────────────────── */
.article { padding: 56px 0 20px; }
.article-container { max-width: 820px; }
.article-head { margin-bottom: 32px; }
.article-hero {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}
.article-body .lead-p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article-body h2 { font-size: 26px; margin: 40px 0 16px; font-family: var(--font-head); color: var(--navy); }
.article-body p  { font-size: 16.5px; line-height: 1.9; color: var(--text-2); margin-bottom: 16px; }
.article-body ul { padding-inline-start: 22px; margin-bottom: 20px; }
.article-body ul li { font-size: 16px; line-height: 1.9; color: var(--text-2); margin-bottom: 8px; }
.article-body blockquote {
  border-inline-start: 4px solid var(--blue-2);
  background: var(--mist);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 17px;
  color: var(--text);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.8;
}
.article-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.related { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }

/* ─── Service Article Rich Content ──────────────────────────────────────────── */
.service-article .rich-content { font-size: 16.5px; line-height: 1.95; color: var(--text-2); }
.service-article .rich-content p { margin: 0 0 18px; }
.service-article .rich-content h3 {
  font-size: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  position: relative;
  padding-inline-start: 34px;
}
.service-article .rich-content h3::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ice);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E4E8C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.service-article .rich-content strong { color: var(--navy); font-weight: 600; }
.service-article .rich-content ul, .service-article .rich-content ol { margin: 0 0 20px; padding-inline-start: 22px; }
.service-article .rich-content li { margin-bottom: 8px; }

/* ─── Posts Grid ────────────────────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.post-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--ice-2);
}
.post-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.post-body h3 { font-size: 18px; margin: 0; font-family: var(--font-head); color: var(--navy); line-height: 1.4; }
.post-body h3 a { color: inherit; text-decoration: none; }
.post-body h3 a:hover { color: var(--blue); }
.post-body p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-family: var(--font-head); font-weight: 500; flex-wrap: wrap; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--ice);
  color: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background .15s;
}
.cat-pill:hover { background: var(--ice-2); }

/* ─── Blog Filters ─────────────────────────────────────────────────────────── */
.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-pill {
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  min-height: 44px;
}
.filter-pill:hover { border-color: var(--blue-2); color: var(--blue); }
.filter-pill.active { background: var(--navy); border-color: var(--navy); color: white; }
.results-count { font-size: 14px; color: var(--muted); font-family: var(--font-head); font-weight: 500; margin-bottom: 20px; padding: 0 4px; }
.results-count strong { color: var(--navy); font-weight: 700; }

/* ─── Service Detail Page ─────────────────────────────────────────────────── */
.service-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.service-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ice-2);
  box-shadow: var(--shadow-2);
}
.service-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.side-cta {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.feat-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.feat-item .ck {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Sidebar ────────────────────────────────────────────────────────────────── */
.sidebar { max-width: 320px; }

/* ─── About Page ──────────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-2);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.value-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ice);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; margin: 0 0 8px; }
.value-card p  { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.7; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 48px 0; }
.stat-card { text-align: center; padding: 28px 16px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.stat-card .num { font-size: 44px; font-family: var(--font-head); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 6px; }
.stat-card .lbl { font-size: 14px; color: var(--muted); font-family: var(--font-head); font-weight: 500; }
.promise-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  color: white;
  position: relative;
  overflow: hidden;
}
.promise-card::before {
  content: "";
  position: absolute;
  inset-inline-end: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(89,190,217,0.28) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .header .nav { gap: 22px; font-size: 14px; }
  .header .cta-group .phone { display: none; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-body { grid-template-columns: 1fr; gap: 32px; }
  .side-cta { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-row   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .trust-bar .marquee { animation-duration: 22s; gap: 28px; font-size: 12px; }

  .menu-btn { display: inline-flex; -webkit-tap-highlight-color: transparent; }
  .header .bar { height: 72px; gap: 12px; }
  .header .logo img { height: 58px; }
  .header .nav {
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 20px;
    gap: 0;
    display: flex;
    box-shadow: var(--shadow-2);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s cubic-bezier(.4,0,.2,1), visibility 0s .3s;
  }
  .header .nav li { width: 100%; }
  .header .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
  }
  .header .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    display: block;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s cubic-bezier(.4,0,.2,1);
  }
  .header .nav.open a {
    transform: translateY(0);
    opacity: 1;
  }
  .header .nav.open a:nth-child(1) { transition-delay: .05s; }
  .header .nav.open a:nth-child(2) { transition-delay: .08s; }
  .header .nav.open a:nth-child(3) { transition-delay: .11s; }
  .header .nav.open a:nth-child(4) { transition-delay: .14s; }
  .header .nav.open a:nth-child(5) { transition-delay: .17s; }
  .header .nav.open li:nth-child(1) a { transition-delay: .05s; }
  .header .nav.open li:nth-child(2) a { transition-delay: .08s; }
  .header .nav.open li:nth-child(3) a { transition-delay: .11s; }
  .header .nav.open li:nth-child(4) a { transition-delay: .14s; }
  .header .nav.open li:nth-child(5) a { transition-delay: .17s; }
  .header .nav .current-menu-item > a::after,
  .header .nav a.active::after { display: none; }
  .header .cta-group .btn { padding: 10px 16px; font-size: 14px; }

  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; padding-top: 20px; }
  .hero-stats .stat .num { font-size: 28px; }
  .hero-ctas .btn { padding: 14px 18px; font-size: 14px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }

  .services-tabs button { padding: 9px 16px; font-size: 13px; }
  .acc-head { padding: 18px; gap: 14px; }
  .acc-head .ico { width: 40px; height: 40px; }
  .acc-head .title { font-size: 16px; }
  .acc-content { padding: 18px 18px 22px; }
  .acc-cities { grid-template-columns: 1fr; }

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

  .process { display: none; }
  .testi-grid { display: none; }
  .mobile-slider { display: block; }

  .coverage-grid { grid-template-columns: 1fr; }
  .testi-grid { gap: 16px; }
  .testi-card { padding: 22px; }

  .cta-block { padding: 40px 24px; }
  .cta-block .btns .btn { width: 100%; justify-content: center; }
  .cta-block .btns { flex-direction: column; width: 100%; max-width: 360px; margin: 0 auto; }

  .footer { padding: 48px 0 24px; }
  .footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
  .footer .bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .posts-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .hero-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0 28px; }
  .article-body h2 { font-size: 22px; }
  .article-body .lead-p { font-size: 17px; }
  .article-cta { padding: 24px; flex-direction: column; align-items: flex-start; }
  .article-cta > div:last-child { width: 100%; }
  .article-cta .btn { flex: 1; justify-content: center; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .trust-bar { padding: 8px 0; }
  .header .bar { height: 64px; }
  .header .logo img { height: 50px; }
  .header .cta-group .btn { padding: 10px 14px; font-size: 13px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat .num { font-size: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .sticky-wa { width: 52px; height: 52px; left: 14px; bottom: 14px; }
  .footer .cols { grid-template-columns: 1fr; }
  .footer .brand .footer-logo { max-width: 130px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card .num { font-size: 34px; }
  .posts-grid { grid-template-columns: 1fr; }
  .breadcrumb .truncate { max-width: 200px; }
  .service-article .rich-content { font-size: 15.5px; }
  .service-article .rich-content h3 { font-size: 19px; }
}

/* ─── Divider ───────────────────────────────────────────────────────────────── */
.divider-wave {
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'><path d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z' fill='%23DCEFF6'/></svg>");
  background-size: cover;
}

/* ─── FluentForm inside hero ────────────────────────────────────────────────── */
.ff-hero-wrap .ff-el-group { margin-bottom: 14px; }
.ff-hero-wrap .ff-el-form-control,
.ff-hero-wrap select,
.ff-hero-wrap input[type="text"],
.ff-hero-wrap input[type="email"],
.ff-hero-wrap input[type="tel"],
.ff-hero-wrap input[type="number"],
.ff-hero-wrap textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid var(--line-2) !important;
  border-radius: 10px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  background: var(--mist) !important;
  color: var(--text) !important;
  min-height: 44px !important;
  direction: rtl;
  box-shadow: none !important;
}
.ff-hero-wrap .ff-el-form-control:focus,
.ff-hero-wrap select:focus,
.ff-hero-wrap input:focus {
  border-color: var(--blue-2) !important;
  box-shadow: 0 0 0 3px rgba(47,111,182,.15) !important;
  background: white !important;
}
.ff-hero-wrap .ff-btn-submit,
.ff-hero-wrap button[type="submit"] {
  width: 100% !important;
  padding: 14px 22px !important;
  background: var(--navy) !important;
  color: white !important;
  border-radius: 999px !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  min-height: 44px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.ff-hero-wrap .ff-btn-submit:hover,
.ff-hero-wrap button[type="submit"]:hover {
  background: var(--blue) !important;
}
.ff-hero-wrap label,
.ff-hero-wrap .ff-el-input--label label {
  font-size: 13px !important;
  color: var(--text-2) !important;
  font-family: var(--font-head) !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
  display: block !important;
}
.ff-hero-wrap .ff-message-success {
  background: #d1fae5 !important;
  color: #065f46 !important;
  border-radius: var(--radius) !important;
  padding: 12px 14px !important;
}
.ff-hero-wrap .ff-message-error,
.ff-hero-wrap .ff-el-form-control.error {
  border-color: #ef4444 !important;
}

/* ─── WordPress Alignment & Blocks ────────────────────────────────────────── */
.alignleft  { float: right; margin-left: 2em; }
.alignright { float: left; margin-right: 2em; }
.aligncenter { display: block; margin: 0 auto 1em; text-align: center; }
.alignwide  { max-width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ─── Service Archive Grid ──────────────────────────────────────────────────── */
.services-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .2s;
}
.service-card:hover { border-color: var(--blue-2); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ice-2);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.service-card h3 { font-size: 18px; color: var(--navy); margin: 0; }
.service-card-sub  { font-size: 13px; color: var(--muted); margin: 0; }
.service-card-excerpt { font-size: 14px; color: var(--text-2); line-height: 1.65; margin: 0; flex: 1; }
.service-card-cta { font-size: 13px; color: var(--blue-2); font-family: var(--font-head); font-weight: 600; margin-top: 4px; }

/* ─── Service Features List ─────────────────────────────────────────────────── */
.service-features { margin-top: 36px; }
.features-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
.feat-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Service Page Icon ─────────────────────────────────────────────────────── */
.service-page-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  display: grid; place-items: center;
  margin-bottom: 16px;
}

/* ─── Quick CTA Card (sidebar) ──────────────────────────────────────────────── */
.quick-cta-card { margin-bottom: 24px; }
.quick-cta-card h3 { margin-bottom: 10px; font-size: 20px; }
.quick-cta-card p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

/* ─── Logo fix (WordPress custom logo) ─────────────────────────────────────── */
.logo .custom-logo-link { display: flex; align-items: center; }
.logo .custom-logo-link img { height: 78px; width: auto; display: block; }
@media (max-width: 900px) {
  .logo .custom-logo-link img { height: 58px; }
}
@media (max-width: 560px) {
  .logo .custom-logo-link img { height: 50px; }
}

/* ─── Responsive new components ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-archive-grid { grid-template-columns: 1fr 1fr; }
  .features-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-archive-grid { grid-template-columns: 1fr; }
}

/* ─── Single Service Page (redesign) ────────────────────────────────────────── */

/* Hero */
.svc-hero {
  background: linear-gradient(160deg, var(--ice) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 52px 0 56px;
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  overflow: hidden;
}
.svc-hero-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.svc-hero-bc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.svc-hero-bc__item {
  font-size: 13px;
  color: var(--muted);
}
.svc-hero-bc__sep { font-size: 13px; color: var(--muted); }

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .01em;
}
.svc-tag--type { background: var(--navy); color: #fff; }
.svc-tag--city { background: var(--ice-2); color: var(--blue); border: 1px solid var(--line); }
.svc-title { margin: 14px 0 0; line-height: 1.25; font-size: clamp(24px, 2.8vw, 32px); }
.svc-subtitle { margin: 10px 0 0; color: var(--muted); max-width: 480px; overflow-wrap: break-word; word-break: break-word; }
.svc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.svc-hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 3/2;
}
.svc-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-hero-placeholder {
  background: var(--ice-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  width: 100%;
  height: 100%;
}

/* Body layout */
.svc-body { padding-top: 48px; padding-bottom: 64px; }
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  overflow: hidden;
}
.svc-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Content blocks */
.svc-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 32px;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
.svc-block-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ice-2);
}

/* Features 2-col grid */
.svc-features-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.svc-feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.5;
}

/* Rich content inside svc block */
.svc-rich { font-size: 15.5px; line-height: 1.9; color: var(--body); overflow-wrap: break-word; word-break: break-word; }
.svc-rich p  { margin: 0 0 16px; }
.svc-rich h3 { font-family: var(--font-head); font-size: 18px; color: var(--navy); margin: 24px 0 10px; }
.svc-rich ul, .svc-rich ol { padding-inline-start: 20px; margin: 0 0 16px; }
.svc-rich li { margin-bottom: 6px; }
.svc-rich strong { color: var(--navy); font-weight: 600; }

/* Sidebar */
.svc-sidebar { position: sticky; top: 90px; }
.svc-related {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.svc-related-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  margin: 0;
  padding: 14px 20px;
  line-height: 1.55;
}
.svc-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  text-decoration: none;
  color: var(--body);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.svc-related-link:hover { background: var(--ice); color: var(--navy); }
.svc-related-list li:last-child .svc-related-link { border-bottom: none; }
.svc-related-text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.svc-related-name { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.svc-related-sub  { font-size: 12px; color: var(--muted); font-weight: 400; }
.svc-related-arrow { color: var(--muted); flex-shrink: 0; margin-inline-start: auto; }

/* Sidebar CTA card */
.svc-cta-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 24px 22px;
  color: #fff;
  text-align: center;
}
.svc-cta-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.svc-cta-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.svc-cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin: 0 0 18px;
  line-height: 1.6;
}
.svc-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin: 10px 0 0;
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, background .15s;
  cursor: pointer;
}
.btn-outline-navy:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ─── Accordion category long-desc + features ───────────────────────────────── */
.acc-cat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 18px;
}

.acc-cat-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin-bottom: 22px;
}

.acc-cat-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
}

.acc-cat-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--ice);
  border-radius: 50%;
  color: var(--blue-2);
}

@media (max-width: 560px) {
  .acc-cat-features {
    grid-template-columns: 1fr;
  }
}

/* ─── Accordion service links (inside category accordion) ───────────────────── */
.acc-service-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 900px) {
  .acc-service-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .acc-service-links { grid-template-columns: 1fr; }
}
.acc-service-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--mist);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-head);
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.acc-service-link:hover {
  background: var(--ice);
  border-color: var(--blue-2);
  box-shadow: var(--shadow-1);
}
.acc-service-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.acc-service-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.acc-service-name { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.acc-service-city {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.acc-service-arrow { color: var(--blue-2); flex-shrink: 0; margin-inline-start: auto; }

/* ─── Services Archive Page ──────────────────────────────────────────────────── */
.svc-archive { padding: 60px 0 80px; }
.svc-archive-head { margin-bottom: 36px; }

/* Filters row — dropdowns */
.svc-archive-filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-filter-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .02em;
}

.svc-select-wrap {
  position: relative;
}

.svc-filter-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius, 10px);
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--navy);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  direction: rtl;
}
.svc-filter-select:focus { outline: none; border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(var(--blue-2-rgb, 0,102,204),.1); }

.svc-select-chev {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  display: flex;
}

.svc-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: opacity .2s;
}
.svc-archive-grid.loading { opacity: .45; pointer-events: none; }

.svc-no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-size: 16px;
}

/* ─── Service Card ───────────────────────────────────────────────────────────── */
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.svc-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }

.svc-card-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ice);
  flex-shrink: 0;
}
.svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  width: 100%;
  height: 100%;
}

.svc-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.35;
}
.svc-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
  flex: 1;
}

.svc-card-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.svc-card-ctas .btn:last-child { grid-column: 1 / -1; }
.svc-card-ctas .btn { justify-content: center; }

.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--blue-2); color: var(--blue-2); background: var(--ice); }

/* Responsive */
@media (max-width: 900px) {
  .svc-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-archive-filters { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-archive-grid { grid-template-columns: 1fr; }
  .svc-archive-filters { padding: 16px; }
}

/* Responsive */
@media (max-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-hero-img-wrap { order: -1; max-height: 280px; }
  .svc-hero { padding: 32px 0 36px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .svc-main { order: -1; }
}
@media (max-width: 640px) {
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-block { padding: 20px; }
  .svc-hero-ctas { flex-direction: column; }
  .svc-hero-ctas .btn { width: 100%; justify-content: center; }
  .svc-title { font-size: clamp(22px, 5.5vw, 30px); }
  .svc-subtitle { font-size: 15px; }
  .svc-hero { padding: 24px 0 28px; }
  .svc-hero-img-wrap { max-height: 220px; border-radius: 14px; }
  .svc-cta-card { padding: 20px 18px; }
  .svc-related-heading { font-size: 12px; padding: 12px 16px; }
  .svc-body { padding-top: 32px; padding-bottom: 48px; }
}

/* ============================================================================
   New Header (top bar + sticky nav) — applied site-wide
   ============================================================================ */

.hp-topbar {
  background: var(--navy);
  color: var(--ice);
  font-size: 13px;
  padding: 10px 0;
  font-family: var(--font-body);
}
.hp-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hp-topbar-left,
.hp-topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hp-topbar .sep { opacity: 0.5; }
.hp-topbar a { color: inherit; }
.hp-topbar .accent {
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hp-topbar svg { color: var(--sky); }

.hp-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  will-change: transform;
  contain: layout style;
}
.hp-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 32px;
}
.hp-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hp-nav-logo img,
.hp-nav-logo .custom-logo,
.hp-nav-logo .custom-logo-link,
.hp-nav-logo .custom-logo-link img {
  max-height: 56px;
  width: auto;
  display: block;
}
.hp-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
}
.hp-nav-links a {
  color: var(--text-2);
  transition: color 0.2s;
  text-decoration: none;
}
.hp-nav-links a:hover,
.hp-nav-links a.active {
  color: var(--text);
  font-weight: 600;
}
.hp-nav-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hp-nav-ctas .hp-btn {
  padding: 10px 18px;
  font-size: 14px;
}
.hp-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  color: var(--navy);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}
.hp-nav-toggle:hover { background: var(--mist); }

/* Header buttons */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-head);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  text-decoration: none;
}
.hp-btn:hover { transform: translateY(-1px); }
.hp-btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(10,37,64,0.4);
}
.hp-btn-primary:hover { background: var(--blue); color: #fff; }
.hp-btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,0.5);
}
.hp-btn-whatsapp:hover { background: #128C7E; color: #fff; }
.hp-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.hp-btn-ghost:hover { background: var(--mist); color: var(--text); }
.hp-btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.hp-btn-lg { padding: 18px 28px; font-size: 16px; }

/* Mobile (≤960px): hide topbar, show toggle, slide-down animated menu */
@media (max-width: 960px) {
  .hp-topbar { display: none; }
  .hp-nav .container { height: 78px; gap: 12px; padding-right: 12px; }
  .hp-nav-logo { margin-right: -4px; }
  .hp-nav-logo img,
  .hp-nav-logo .custom-logo,
  .hp-nav-logo .custom-logo-link img { max-height: 48px; }
  .hp-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    flex-direction: column;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    gap: 0;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.18s ease,
                transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                border-bottom-width 0.2s ease;
    pointer-events: none;
    border-bottom-width: 0;
  }
  .hp-nav.open .hp-nav-links {
    max-height: 80vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 16px 24px;
    border-bottom-width: 1px;
  }
  .hp-nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .hp-nav-links a:last-child { border-bottom: 0; }
  .hp-nav-toggle { display: inline-flex; }
  .hp-nav-ctas .hp-btn-ghost { display: none; }
  .hp-nav-ctas .hp-btn-whatsapp { padding: 10px 14px; font-size: 13px; }
}
/* ============================================================================
   Blog page (home.php / archive.php) — responsive fixes
   ============================================================================ */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 760px) {
  .posts-grid { grid-template-columns: 1fr; gap: 18px; }
  .post-body { padding: 18px 18px 20px; }
  .post-body h3 { font-size: 18px; line-height: 1.4; }
  .page-hero { padding: 40px 0 28px; }
  .page-hero .h2 { font-size: 28px; line-height: 1.2; }
  .page-hero .lead { font-size: 15px; }
  .blog-filters { gap: 8px; margin-bottom: 24px; padding-bottom: 18px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .blog-filters::-webkit-scrollbar { display: none; }
  .filter-pill { padding: 8px 14px; font-size: 13px; min-height: 40px; flex-shrink: 0; white-space: nowrap; }
  .article-container { padding: 0 16px; }
  .article-head, .article-body { padding: 0; }
  .article-body p, .article-body ul li { font-size: 16px; line-height: 1.85; }
  .article-body h2 { font-size: 24px; }
  .article-cta { padding: 28px 22px; }
  .article-cta > div:last-child { flex-direction: column; align-items: stretch; gap: 10px; }
  .article-cta .btn { justify-content: center; width: 100%; }
}