/* =====================================================================
   ISAVGO TECHNOLOGIES — Redesigned Stylesheet
   Brand palette (from logo):
     Deep Navy   #0F3D5C
     Mid Navy    #134E6F
     Cyan Accent #0DAFCB
     Light Cyan  #15C2E3
   Support: White / Black / Subtle Grays
===================================================================== */

/* ---------- 1. Tokens / Reset ---------- */
:root {
  --navy-900: #0A2E48;
  --navy-800: #0F3D5C;
  --navy-700: #134E6F;
  --navy-600: #1A6589;
  --cyan-500: #0DAFCB;
  --cyan-400: #15C2E3;
  --cyan-300: #57D5EC;

  --black: #0B1320;
  --white: #FFFFFF;

  --gray-50:  #F7FAFC;
  --gray-100: #EEF3F7;
  --gray-200: #DCE5EC;
  --gray-300: #BCC8D2;
  --gray-500: #6B7C8A;
  --gray-700: #38485A;
  --gray-900: #1A2330;

  --grad-primary: linear-gradient(135deg, var(--navy-800) 0%, var(--cyan-500) 100%);
  --grad-soft: linear-gradient(135deg, rgba(13,175,203,.08), rgba(15,61,92,.08));

  --shadow-sm: 0 2px 6px rgba(10, 46, 72, .06);
  --shadow-md: 0 10px 30px rgba(10, 46, 72, .08);
  --shadow-lg: 0 24px 60px rgba(10, 46, 72, .14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --container: 1200px;

  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --header-h: 78px;
  --topbar-h: 42px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-800); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--cyan-500); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 2. Reusable bits ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  font-family: var(--font-display);
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(13, 175, 203, .28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(13, 175, 203, .4);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--gray-200);
  padding: 14px 28px;
}
.btn--ghost:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-500);
  transform: translateY(-2px);
}
.btn--block { width: 100%; justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin-bottom: 16px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(13,175,203,.18);
}
.eyebrow--light { color: var(--cyan-300); }
.eyebrow--light .dot { background: var(--cyan-300); box-shadow: 0 0 0 4px rgba(87,213,236,.25); }

.section { padding: 100px 0; position: relative; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.section__title--light { color: var(--white); }
.section__sub { font-size: 17px; color: var(--gray-500); line-height: 1.7; }
.section__sub--light { color: rgba(255,255,255,.78); }

.lead { font-size: 18px; color: var(--gray-700); line-height: 1.7; margin-bottom: 16px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--navy-800); font-size: 14px;
  font-family: var(--font-display);
}
.link-arrow i { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--cyan-500); }
.link-arrow:hover i { transform: translateX(4px); }

.grad {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.under { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 3. Topbar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact i { color: var(--cyan-400); margin-right: 6px; }
.topbar__contact a { color: rgba(255,255,255,.85); }
.topbar__contact a:hover { color: var(--cyan-300); }

.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  transition: all .25s var(--ease);
}
.topbar__social a:hover {
  background: var(--cyan-500);
  color: var(--white);
}

/* ---------- 4. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: all .3s var(--ease);
}
.header.is-scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, .98);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 52px; width: auto; }

.primary-nav { display: flex; align-items: center; }
.nav { display: flex; gap: 2px; align-items: center; }
.nav > li { position: relative; }
.nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  position: relative;
}
.nav > li > a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--cyan-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav > li > a:hover::after,
.nav > li > a.active::after { transform: scaleX(1); }
.nav > li > a:hover { color: var(--cyan-500); }
.nav > li > a .fa-chevron-down {
  font-size: 10px;
  transition: transform .3s var(--ease);
}
.nav > li.has-mega:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Mega menu */
.mega {
  position: fixed;
  left: 0; right: 0;
  top: calc(var(--topbar-h) + var(--header-h));
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  padding: 36px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .3s var(--ease);
  z-index: 99;
}
.has-mega:hover > .mega,
.has-mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.mega__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--cyan-500);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.mega ul li a {
  display: block;
  padding: 7px 0;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s var(--ease);
  position: relative;
  padding-left: 0;
}
.mega ul li a:hover {
  color: var(--cyan-500);
  padding-left: 8px;
}

.header__cta { padding: 12px 22px; font-size: 14px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy-900);
  transition: all .3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(13,175,203,.12), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(15,61,92,.06), transparent 60%),
    linear-gradient(180deg, #FAFCFE 0%, #F2F8FB 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.hero__bg span:nth-child(1) {
  width: 320px; height: 320px;
  background: var(--cyan-400);
  top: -80px; right: -80px;
  animation: float 9s ease-in-out infinite;
}
.hero__bg span:nth-child(2) {
  width: 260px; height: 260px;
  background: var(--navy-700);
  bottom: 5%; left: -60px;
  opacity: .18;
  animation: float 12s ease-in-out infinite 1s;
}
.hero__bg span:nth-child(3) {
  width: 200px; height: 200px;
  background: var(--cyan-500);
  top: 45%; left: 40%;
  opacity: .12;
  animation: float 15s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -30px); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
  font-weight: 800;
}
.hero__sub {
  font-size: 18px;
  max-width: 540px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.hero__stats li { text-align: left; }
.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stats strong::after { content: '+'; color: var(--cyan-500); }
.hero__stats span { font-size: 13px; color: var(--gray-500); }

/* Hero visual (pure CSS) */
.hero__visual {
  position: relative;
  height: 520px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.orb--1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(13,175,203,.45), transparent 70%);
  top: 30px; left: 60px;
}
.orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(15,61,92,.35), transparent 70%);
  bottom: 40px; right: 30px;
}

.device {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 440px;
  max-width: 90%;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 61, 92, .25);
  border: 1px solid var(--gray-100);
  animation: gentleSway 8s ease-in-out infinite;
}
@keyframes gentleSway {
  0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); }
  50%      { transform: translate(-50%, -52%) rotate(-2deg); }
}
.device__bar {
  background: var(--navy-900);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.device__bar i {
  width: 10px; height: 10px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
}
.device__bar i:nth-child(1) { background: #FF5F57; }
.device__bar i:nth-child(2) { background: #FEBC2E; }
.device__bar i:nth-child(3) { background: #28C840; }
.device__bar span {
  margin-left: auto;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-family: monospace;
}
.device__screen { padding: 28px 24px; }
.line {
  height: 14px;
  background: linear-gradient(90deg, var(--gray-100), var(--gray-50));
  border-radius: 6px;
  margin-bottom: 12px;
}
.line--w70 { width: 70%; }
.line--w50 { width: 50%; background: linear-gradient(90deg, var(--cyan-400), var(--cyan-300)); opacity: .8; }
.line--w90 { width: 90%; }
.bars {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 110px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: var(--grad-primary);
  border-radius: 6px 6px 0 0;
  animation: rise 1.4s var(--ease) backwards;
}
.bar:nth-child(1) { animation-delay: .1s; }
.bar:nth-child(2) { animation-delay: .2s; }
.bar:nth-child(3) { animation-delay: .3s; }
.bar:nth-child(4) { animation-delay: .4s; }
.bar:nth-child(5) { animation-delay: .5s; }
.bar:nth-child(6) { animation-delay: .6s; }
@keyframes rise {
  from { height: 0; opacity: 0; }
  to   { height: var(--h); opacity: 1; }
}

.float-card {
  position: absolute;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  border: 1px solid var(--gray-100);
  animation: bob 5s ease-in-out infinite;
}
.float-card i {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  color: var(--white);
  font-size: 17px;
}
.float-card strong { display: block; font-size: 17px; color: var(--navy-900); }
.float-card span { font-size: 12px; color: var(--gray-500); }
.float-card--top { top: 8%; right: -10px; animation-delay: .5s; }
.float-card--bot { bottom: 6%; left: -10px; animation-delay: 1.5s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- 6. Ticker ---------- */
.ticker {
  background: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.ticker__group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
}
.ticker__group span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-300);
  letter-spacing: 0.5px;
  transition: color .25s var(--ease);
  white-space: nowrap;
}
.ticker__group span:hover { color: var(--cyan-500); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 7. About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__media {
  position: relative;
  min-height: 480px;
}
.about__square {
  position: absolute;
  inset: 30px 30px 30px 30px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about__square::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(400px 180px at 80% 80%, rgba(255,255,255,.12), transparent 60%);
}
.about__square::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about__card {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gray-100);
  z-index: 2;
}
.about__big {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  color: var(--cyan-500);
  line-height: 1;
}
.about__small {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  font-family: var(--font-display);
}

.about__bullets {
  position: absolute;
  top: 60px; left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  z-index: 2;
}
.about__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  font-family: var(--font-display);
  padding: 6px 0;
}
.about__bullets i {
  width: 22px; height: 22px;
  background: var(--cyan-500);
  color: var(--white);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 10px;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0 32px;
}
.about__features > div {
  padding: 22px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all .3s var(--ease);
}
.about__features > div:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about__features i {
  width: 44px; height: 44px;
  background: var(--grad-primary);
  color: var(--white);
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 12px;
}
.about__features h4 { font-size: 16px; color: var(--navy-900); margin-bottom: 4px; }
.about__features p { font-size: 14px; color: var(--gray-500); }

/* ---------- 8. Services ---------- */
.services { background: var(--gray-50); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13,175,203,.12), rgba(15,61,92,.08));
  color: var(--cyan-500);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
  transition: all .35s var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--grad-primary);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ---------- 9. Why Choose Us ---------- */
.why {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(13,175,203,.18), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.why__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.why__head { text-align: left; }
.why__list { display: grid; gap: 20px; }
.why__list li {
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  transition: all .35s var(--ease);
  backdrop-filter: blur(6px);
}
.why__list li:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--cyan-500);
  transform: translateX(6px);
}
.why__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan-400);
  line-height: 1;
  min-width: 60px;
}
.why__list h4 { color: var(--white); font-size: 18px; margin-bottom: 6px; }
.why__list p  { color: rgba(255,255,255,.72); font-size: 14.5px; }

/* ---------- 10. Process ---------- */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200), var(--gray-200), transparent);
}
.process__steps li {
  position: relative;
  text-align: center;
  padding: 28px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all .3s var(--ease);
}
.process__steps li:hover {
  border-color: var(--cyan-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process__num {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cyan-500);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  margin: 0 auto 16px;
  z-index: 2;
}
.process__steps h4 { font-size: 17px; margin-bottom: 6px; color: var(--navy-900); }
.process__steps p  { font-size: 14px; color: var(--gray-500); }

/* ---------- 11. Portfolio ---------- */
.portfolio { background: var(--gray-50); }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
}
.case:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.case__media {
  height: 200px;
  position: relative;
  display: grid; place-items: flex-end;
  padding: 18px;
  color: var(--white);
  background: var(--grad-primary);
}
.case__media span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255,255,255,.2);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  align-self: flex-end;
}
.case__media--1 { background: linear-gradient(135deg, #0F3D5C, #15C2E3); }
.case__media--2 { background: linear-gradient(135deg, #134E6F, #0DAFCB); }
.case__media--3 { background: linear-gradient(135deg, #0A2E48, #1A6589); }
.case__media--4 { background: linear-gradient(135deg, #134E6F, #57D5EC); }
.case__media--5 { background: linear-gradient(135deg, #0F3D5C, #1A6589); }
.case__media--6 { background: linear-gradient(135deg, #0A2E48, #15C2E3); }
.case__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
}

.case__body { padding: 22px 24px 26px; }
.case__body h4 { font-size: 19px; margin-bottom: 8px; }
.case__body p { font-size: 14.5px; color: var(--gray-500); margin-bottom: 12px; }

/* ---------- 12. Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi {
  position: relative;
  background: var(--white);
  padding: 36px 32px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi__q {
  font-size: 30px;
  color: var(--cyan-500);
  opacity: .25;
  margin-bottom: 12px;
}
.testi blockquote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 22px;
}
.testi figcaption strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 16px;
}
.testi figcaption span {
  font-size: 13px;
  color: var(--gray-500);
}
.stars {
  margin-top: 8px;
  color: #F5B82E;
  letter-spacing: 2px;
  font-size: 14px;
}

/* ---------- 13. FAQ ---------- */
.faq { background: var(--gray-50); }
.faq__grid {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.faq__head { padding-top: 8px; }
.faq__head .section__title { text-align: left; }
.faq__head .section__sub { text-align: left; }

.faq__list { display: grid; gap: 14px; }
.faq__list details {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all .3s var(--ease);
}
.faq__list details[open] {
  border-color: var(--cyan-500);
  box-shadow: var(--shadow-md);
}
.faq__list summary {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--cyan-500);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list p {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- 14. Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__info .section__title { text-align: left; }
.contact__list { display: grid; gap: 22px; margin-top: 30px; }
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact__list i {
  width: 48px; height: 48px;
  background: var(--grad-primary);
  color: var(--white);
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 17px;
  flex-shrink: 0;
}
.contact__list strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 15px;
  margin-bottom: 2px;
}
.contact__list span,
.contact__list a {
  font-size: 15px;
  color: var(--gray-500);
}
.contact__list a:hover { color: var(--cyan-500); }

.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.contact__form h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--navy-900);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy-900);
  background: var(--white);
  transition: all .25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(13,175,203,.12);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-status { margin-top: 14px; font-size: 14px; }
.form-status.success { color: #2BA85F; }
.form-status.error { color: #D24A4A; }

/* ---------- 15. Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
}
.logo--footer img {
  height: 64px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer__brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  transition: all .3s var(--ease);
}
.footer__social a:hover {
  background: var(--cyan-500);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--cyan-500);
}
.footer__links li,
.footer__contact li { margin-bottom: 10px; font-size: 14.5px; line-height: 1.6; }
.footer__links a {
  color: rgba(255,255,255,.65);
  transition: all .25s var(--ease);
}
.footer__links a:hover {
  color: var(--cyan-400);
  padding-left: 6px;
}
.footer__contact li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,.65);
}
.footer__contact i { color: var(--cyan-400); margin-top: 4px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,.65); }
.footer__contact a:hover { color: var(--cyan-400); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.65); }
.footer__bottom a:hover { color: var(--cyan-400); }

/* ---------- 16. Floating bits ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
  z-index: 95;
  transition: all .3s var(--ease);
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  color: var(--white);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37, 211, 102, .55); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0); }
}

.top-btn {
  position: fixed;
  bottom: 92px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  z-index: 94;
}
.top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.top-btn:hover { background: var(--cyan-500); }

/* ---------- 17. Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================================
   18. RESPONSIVE
==================================================================== */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { gap: 40px; }
}

@media (max-width: 980px) {
  .hero__inner,
  .about__grid,
  .why__grid,
  .faq__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }

  .hero__visual { height: 420px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid,
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .about__media { min-height: 420px; }
}

@media (max-width: 820px) {
  .topbar { display: none; }

  .nav-toggle { display: flex; z-index: 1002; }

  /* Right-side drawer */
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 84vw;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -16px 0 50px rgba(10, 46, 72, .22);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(var(--header-h) + 8px) 0 40px;
    z-index: 1001;
    display: block;
  }
  .primary-nav.is-open { transform: translateX(0); }

  /* Backdrop (added by JS as <div class="nav-backdrop">) */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 46, 72, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
    z-index: 1000;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .nav { flex-direction: column; width: 100%; gap: 0; }
  .nav > li { width: 100%; }
  .nav > li > a {
    padding: 15px 26px;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }
  .nav > li > a::after { display: none; }

  .has-mega > .mega {
    position: static;
    box-shadow: none;
    background: var(--gray-50);
    padding: 0 26px;
    border-top: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .3s var(--ease);
    width: 100%;
  }
  .has-mega.is-expanded > .mega {
    max-height: 1600px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mega__grid { grid-template-columns: 1fr; gap: 18px; padding: 0; }
  .mega__title { font-size: 12px; }
  .mega ul li a { font-size: 14px; }

  .header__cta { display: none; }

  .hero { padding: 40px 0 60px; }
  .hero__title { letter-spacing: -.5px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); padding: 22px; }

  .section { padding: 60px 0; }
  .section__head { margin-bottom: 40px; }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .services__grid,
  .portfolio__grid,
  .testimonials__grid,
  .process__steps,
  .about__features,
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }

  .hero__visual { height: 360px; }
  .device { width: 320px; }
  .float-card { padding: 10px 14px; }
  .float-card i { width: 36px; height: 36px; font-size: 14px; }
  .float-card strong { font-size: 15px; }

  .contact__form { padding: 28px 22px; }
  .top-btn { right: 18px; bottom: 84px; }
  .wa-float { right: 18px; bottom: 18px; width: 50px; height: 50px; font-size: 22px; }

  .footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- 19. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   INNER PAGE STYLES (added for multipage redesign)
===================================================================== */

/* Light gradient variant for use inside dark hero */
.grad-light {
  background: linear-gradient(135deg, var(--cyan-300), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Inner Page Hero ---------- */
.page-hero {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(13,175,203,.22), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .25;
}
.page-hero__bg span:nth-child(1) {
  width: 320px; height: 320px;
  background: var(--cyan-400);
  top: -80px; right: -60px;
}
.page-hero__bg span:nth-child(2) {
  width: 260px; height: 260px;
  background: var(--cyan-300);
  bottom: -80px; left: 10%;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.page-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* Breadcrumbs */
.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 500;
}
.breadcrumbs a { color: rgba(255,255,255,.8); }
.breadcrumbs a:hover { color: var(--cyan-300); }
.breadcrumbs span { color: var(--cyan-300); font-weight: 600; }
.breadcrumbs i { font-size: 10px; color: rgba(255,255,255,.4); }

/* ---------- Section title — left aligned variant ---------- */
.section__title--left { text-align: left; }
.sub-h {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 40px 0 22px;
  color: var(--navy-900);
}

/* ---------- Service detail layout ---------- */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: flex-start;
}

/* Feature cards (grid of 4) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 36px 0 12px;
}
.feature-card {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,175,203,.12), rgba(15,61,92,.08));
  color: var(--cyan-500);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all .3s var(--ease);
}
.feature-card:hover .feature-card__icon {
  background: var(--grad-primary);
  color: var(--white);
}
.feature-card h3 { font-size: 17px; margin-bottom: 6px; color: var(--navy-900); }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* Benefit list */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin-bottom: 24px;
}
.benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-list i {
  color: var(--cyan-500);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.benefit-list strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 15.5px;
  margin-bottom: 3px;
}
.benefit-list span {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* Inline CTA inside detail page */
.inline-cta {
  margin-top: 42px;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.inline-cta h4 {
  font-size: 19px;
  color: var(--navy-900);
}

/* Sidebar */
.service-detail__sidebar { display: grid; gap: 22px; position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.sidebar-card h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--navy-900);
}
.sidebar-card--related ul li {
  border-bottom: 1px dashed var(--gray-200);
  padding: 11px 0;
}
.sidebar-card--related ul li:last-child { border-bottom: 0; }
.sidebar-card--related a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .25s var(--ease);
}
.sidebar-card--related a i {
  color: var(--cyan-500);
  font-size: 12px;
  transition: transform .25s var(--ease);
}
.sidebar-card--related a:hover { color: var(--cyan-500); padding-left: 4px; }
.sidebar-card--related a:hover i { transform: translateX(3px); }

.sidebar-card--contact {
  text-align: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border: none;
}
.sidebar-card--contact i {
  font-size: 30px;
  color: var(--cyan-300);
  margin-bottom: 10px;
}
.sidebar-card--contact h4 { color: var(--white); }
.sidebar-card--contact p { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 16px; }
.sidebar-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan-300);
  margin-bottom: 16px;
}
.sidebar-phone:hover { color: var(--cyan-400); }
.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  width: 100%;
  justify-content: center;
}
.btn--white-outline:hover {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}

.sidebar-card--whatsapp {
  text-align: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
}
.sidebar-card--whatsapp i { font-size: 32px; margin-bottom: 8px; }
.sidebar-card--whatsapp h4 { color: var(--white); }
.sidebar-card--whatsapp p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 14px; }
.btn--whatsapp {
  background: var(--white);
  color: #128C7E;
  width: 100%;
  justify-content: center;
}
.btn--whatsapp:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.15); color: #128C7E; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.1), transparent 50%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 6px;
}
.cta-band p { color: rgba(255,255,255,.85); font-size: 16px; }
.cta-band__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--white {
  background: var(--white);
  color: var(--navy-800);
}
.btn--white:hover { background: var(--white); color: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Pricing page ---------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--popular {
  border-color: var(--cyan-500);
  box-shadow: 0 20px 50px rgba(13,175,203,.18);
  transform: scale(1.03);
}
.price-card--popular:hover { transform: scale(1.03) translateY(-6px); }
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card__name {
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.price-card__sub { font-size: 13px; color: var(--gray-500); margin-bottom: 18px; }
.price-card__price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}
.price-card__price small { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.price-card__highlights {
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px dashed var(--gray-200);
}
.price-card__highlights li {
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 600;
  margin-bottom: 6px;
}
.price-card__features {
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--gray-200);
}
.price-card__features h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--cyan-500);
  margin-bottom: 12px;
}
.price-card__features li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 5px 0;
  display: flex;
  gap: 8px;
}
.price-card__features li::before {
  content: '✓';
  color: var(--cyan-500);
  font-weight: 700;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- Blog page ---------- */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: flex-start;
}
.blog__posts {
  display: grid;
  gap: 30px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all .35s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__media {
  height: 220px;
  background: var(--grad-primary);
  position: relative;
  color: var(--white);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
}
.post-card__cat {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.post-card__date {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  opacity: .9;
}
.post-card__body { padding: 26px 28px 30px; }
.post-card__meta { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; }
.post-card__meta i { color: var(--cyan-500); margin-right: 4px; }
.post-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.post-card h3 a { color: var(--navy-900); transition: color .25s var(--ease); }
.post-card h3 a:hover { color: var(--cyan-500); }
.post-card p { font-size: 15px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.65; }

.blog__sidebar { display: grid; gap: 26px; position: sticky; top: 90px; }
.widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.widget h4 {
  font-size: 17px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  color: var(--navy-900);
}
.widget__cats li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-200);
}
.widget__cats li:last-child { border-bottom: 0; }
.widget__cats a { font-size: 14.5px; color: var(--gray-700); font-weight: 500; }
.widget__cats a:hover { color: var(--cyan-500); }
.widget__cats span {
  font-size: 12px;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: 2px 10px;
  border-radius: 999px;
}
.widget__recent li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-200);
}
.widget__recent li:last-child { border-bottom: 0; padding-bottom: 0; }
.widget__recent .mini {
  width: 60px; height: 60px;
  background: var(--grad-primary);
  border-radius: 8px;
  flex-shrink: 0;
}
.widget__recent .body strong {
  display: block;
  font-size: 14px;
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 4px;
}
.widget__recent .body span { font-size: 12px; color: var(--gray-500); }

/* ---------- Blog single ---------- */
.blog-single__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: flex-start;
}
.blog-single article {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.blog-single__cover {
  height: 320px;
  background: var(--grad-primary);
  position: relative;
}
.blog-single__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.blog-single__body { padding: 40px 48px; }
.blog-single__body .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 20px;
}
.blog-single__body .meta i { color: var(--cyan-500); margin-right: 4px; }
.blog-single__body h1 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.blog-single__body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--gray-700);
}
.blog-single__body h2 {
  font-size: 24px;
  margin: 32px 0 14px;
  color: var(--navy-900);
}
.blog-single__body h3 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--navy-900);
}
.blog-single__body ul, .blog-single__body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.blog-single__body ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--gray-700);
  line-height: 1.7;
}
.blog-single__body blockquote {
  margin: 28px 0;
  padding: 22px 28px;
  background: var(--gray-50);
  border-left: 4px solid var(--cyan-500);
  border-radius: 8px;
  font-style: italic;
  color: var(--navy-900);
  font-size: 17px;
}

/* ---------- About page ---------- */
.about-mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.about-mission > div {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all .3s var(--ease);
}
.about-mission > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.about-mission i {
  width: 64px; height: 64px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 26px;
  margin: 0 auto 18px;
}
.about-mission h4 { font-size: 19px; margin-bottom: 10px; }
.about-mission p { color: var(--gray-500); font-size: 14.5px; line-height: 1.6; }

/* ---------- Contact page ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: all .3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.contact-card__icon {
  width: 60px; height: 60px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 24px;
  margin: 0 auto 18px;
}
.contact-card h4 { font-size: 18px; margin-bottom: 8px; }
.contact-card p { color: var(--gray-500); font-size: 14.5px; margin-bottom: 12px; }
.contact-card a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-800);
}
.contact-card a:hover { color: var(--cyan-500); }

.map-embed {
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
}

/* ---------- 404 page ---------- */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(13,175,203,.10), transparent 60%),
    var(--gray-50);
}
.error-page__num {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy-800), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.error-page h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 16px;
}
.error-page p {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto 30px;
}
.error-page__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Services overview page ---------- */
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.services-overview .service-card { padding: 32px 26px; }
.services-overview .service-card h3 { font-size: 18px; }

/* ---------- Hide on small screens ---------- */
.hide-sm { display: inline-block; }
@media (max-width: 720px) { .hide-sm { display: none; } }

/* =====================================================================
   RESPONSIVE — inner page additions
===================================================================== */
@media (max-width: 1100px) {
  .services-overview__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .service-detail__grid,
  .blog__grid,
  .blog-single__grid { grid-template-columns: 1fr; }
  .service-detail__sidebar,
  .blog__sidebar { position: relative; top: 0; }

  .services-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .about-mission,
  .contact-cards { grid-template-columns: 1fr; }

  .cta-band__inner { justify-content: center; text-align: center; }
}
@media (max-width: 720px) {
  .feature-grid,
  .benefit-list { grid-template-columns: 1fr; }
  .blog-single__body { padding: 30px 26px; }
  .blog-single__cover { height: 220px; }

  .pricing__grid { grid-template-columns: 1fr; }
  .price-card--popular { transform: scale(1); }
  .price-card--popular:hover { transform: translateY(-6px); }

  .inline-cta { flex-direction: column; align-items: flex-start; }
  .services-overview__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   IMAGE SHOWCASE (service pages + content images)
===================================================================== */

/* Wide banner image after intro */
.banner-shot {
  margin: 28px 0 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  position: relative;
  min-height: 80px;
}
.banner-shot img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
/* Fallback when image fails to load */
.banner-shot--fallback {
  height: 220px;
  background:
    radial-gradient(500px 200px at 20% 20%, rgba(255,255,255,.12), transparent 60%),
    var(--grad-primary);
}
.banner-shot--fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* 3-up showcase gallery */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 8px;
}
.shot {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all .35s var(--ease);
  min-height: 60px;
}
.shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.shot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 16px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10,46,72,.85));
}
/* Fallback for showcase images */
.shot--fallback {
  height: 180px;
  background: var(--grad-primary);
}
.shot--fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Content image used on standard pages (about, etc.) */
.content-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  position: relative;
  min-height: 80px;
}
.content-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.content-img--fallback { background: var(--grad-primary); min-height: 320px; }

@media (max-width: 720px) {
  .showcase { grid-template-columns: 1fr; }
  .banner-shot img { height: 220px; }
}

/* =====================================================================
   IMAGES INSIDE EXISTING MEDIA CONTAINERS
===================================================================== */
/* Portfolio case media image fills the gradient container */
.case__media img,
.post-card__media img,
.blog-single__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Keep labels above the image */
.case__media span,
.post-card__cat,
.post-card__date { z-index: 2; }
/* Slight dark overlay so white labels stay readable on photos */
.case__media::after,
.post-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,46,72,.15), rgba(10,46,72,.55));
  z-index: 1;
}

/* About square image */
.about__square { position: relative; }
.about__square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  z-index: 1;
}
/* Keep the grid texture above the photo for brand feel */
.about__square::after { z-index: 2; }

/* =====================================================================
   SEO CONTENT BLOCK (service pages)
===================================================================== */
.seo-content { margin-top: 8px; }
.seo-content .sub-h { margin-top: 36px; }
.seo-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.kw-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}
.kw-chip {
  display: inline-block;
  padding: 7px 16px;
  background: linear-gradient(135deg, rgba(13,175,203,.10), rgba(15,61,92,.06));
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
}
/* Inline FAQ inside service pages */
.faq__list--inline { display: grid; gap: 12px; margin-top: 18px; }
.faq__list--inline details {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: all .3s var(--ease);
}
.faq__list--inline details[open] {
  background: var(--white);
  border-color: var(--cyan-500);
  box-shadow: var(--shadow-sm);
}
.faq__list--inline summary {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq__list--inline summary::-webkit-details-marker { display: none; }
.faq__list--inline summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan-500);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq__list--inline details[open] summary::after { transform: rotate(45deg); }
.faq__list--inline p {
  margin: 12px 0 0;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =====================================================================
   MOBILE DRAWER EXTRAS — only visible inside the slide-out drawer
===================================================================== */
.drawer-extras { display: none; }

@media (max-width: 820px) {
  .drawer-extras {
    display: block;
    padding: 24px 26px 0;
    border-top: 1px solid var(--gray-100);
    margin-top: 12px;
  }
  .drawer-extras__group { margin-bottom: 22px; }
  .drawer-extras__title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--cyan-500);
    margin-bottom: 10px;
  }
  .drawer-extras__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--navy-900);
    font-weight: 500;
  }
  .drawer-extras__item i {
    width: 22px;
    color: var(--cyan-500);
    font-size: 15px;
  }
  .drawer-extras__item:hover { color: var(--cyan-500); }

  .drawer-extras__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .drawer-extras__social li { margin: 0; }
  .drawer-extras__social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--navy-800);
    display: grid;
    place-items: center;
    transition: all .25s var(--ease);
    font-size: 14px;
  }
  .drawer-extras__social a:hover {
    background: var(--grad-primary);
    color: var(--white);
    transform: translateY(-2px);
  }

  /* Google 5-star rating CTA */
  .drawer-extras__rate {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #fffaf0, #fff5e1);
    border: 1px solid #ffe0a3;
    margin-top: 8px;
    margin-bottom: 24px;
    transition: all .25s var(--ease);
  }
  .drawer-extras__rate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(241, 167, 36, .18);
  }
  .drawer-extras__rate > i:first-child {
    font-size: 24px;
    color: #f1a724;
    flex-shrink: 0;
  }
  .drawer-extras__rate > i:last-child {
    font-size: 13px;
    color: var(--navy-800);
    margin-left: auto;
  }
  .drawer-extras__rate span {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .drawer-extras__rate strong {
    font-family: var(--font-display);
    font-size: 14.5px;
    color: var(--navy-900);
    line-height: 1.2;
  }
  .drawer-extras__rate small {
    font-size: 12px;
    color: #d68a0c;
    font-weight: 600;
    letter-spacing: .5px;
  }
}

/* =====================================================================
   HOMEPAGE FOCUS GRID — 3 core services with images
===================================================================== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.focus-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.focus-card--featured {
  border-color: var(--cyan-500);
  box-shadow: 0 20px 50px rgba(13, 175, 203, .18);
  position: relative;
}
.focus-card__media {
  position: relative;
  height: 200px;
  background: var(--grad-primary);
  overflow: hidden;
}
.focus-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.focus-card:hover .focus-card__media img {
  transform: scale(1.05);
}
.focus-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 14px;
  background: var(--white);
  color: var(--navy-800);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.focus-card__tag i { color: var(--cyan-500); }
.focus-card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.focus-card__icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13,175,203,.12), rgba(15,61,92,.08));
  color: var(--cyan-500);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.focus-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.focus-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.focus-card__bullets {
  margin-bottom: 22px;
  flex: 1;
}
.focus-card__bullets li {
  font-size: 14px;
  color: var(--navy-900);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.focus-card__bullets i {
  color: var(--cyan-500);
  font-size: 13px;
}
.focus-card .btn {
  align-self: flex-start;
}

/* Home showcase image strip */
.home-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.home-showcase__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease);
}
.home-showcase__item--lg {
  grid-column: span 2;
}
.home-showcase__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.home-showcase__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.home-showcase__item:hover img {
  transform: scale(1.08);
}
.home-showcase__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 16px 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10, 46, 72, .85));
}

@media (max-width: 1024px) {
  .focus-grid { grid-template-columns: 1fr; gap: 20px; }
  .focus-card--featured { transform: scale(1); }
}
@media (max-width: 720px) {
  .home-showcase { grid-template-columns: 1fr 1fr; }
  .home-showcase__item--lg { grid-column: span 2; }
  .home-showcase__item { height: 160px; }
}
