@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap");

:root {
  --bg: #f4f7fe;
  --surface: #ffffff;
  --surface-soft: #edf2ff;
  --text: #10213e;
  --muted: #586a86;
  --primary: #315fe6;
  --primary-dark: #214ac2;
  --line: #d7e0f1;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(17, 35, 71, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 10%, #f8faff 0%, #eef3ff 35%, #f4f7fe 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

#services {
  scroll-margin-top: 5.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 0;
  background: rgba(244, 247, 254, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.brand-logo {
  width: 100px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand.logo-only {
  font-size: 0;
  gap: 0;
}

.brand.logo-only span {
  display: none;
}

.brand.logo-only .brand-logo {
  width: 100px;
  height: 52px;
}

.brand span {
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem 0.9rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding: 0.35rem 0;
  white-space: nowrap;
}

.site-nav > a,
.nav-dropdown-toggle {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding: 0.35rem 0;
  white-space: nowrap;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-caret {
  margin-left: 0.28rem;
  font-size: 0.72rem;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 185px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(17, 35, 71, 0.15);
  padding: 0.45rem;
  z-index: 95;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  border-bottom: none;
  border-radius: 8px;
  padding: 0.42rem 0.56rem;
  font-size: 0.84rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: #edf2ff;
  color: var(--text);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 9px;
  padding: 0.4rem 0.62rem;
}

.hero {
  padding: 5.3rem 0 4.2rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(248, 251, 255, 0.9), rgba(242, 247, 255, 0.92)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2200&q=80")
      center/cover no-repeat;
}

.page-hero {
  padding: 3.75rem 0 2.5rem;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 247, 254, 0.88) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: -0.6px;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.lead.narrow {
  max-width: 52ch;
}

.page-links,
.page-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.page-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.4rem 1.35rem;
  min-height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
  border: 1px solid rgba(36, 84, 230, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(34, 71, 161, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.page-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(36, 84, 230, 0.14), transparent 28%);
  pointer-events: none;
}

.page-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(34, 71, 161, 0.12);
  border-color: rgba(36, 84, 230, 0.2);
}

.page-link-card .page-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 14px;
  font-size: 1.05rem;
  line-height: 1;
  background: rgba(36, 84, 230, 0.1);
  color: var(--primary);
}

.page-link-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}

.page-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-link-card .link-arrow {
  margin-top: auto;
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section-resources {
  background: linear-gradient(180deg, rgba(243, 247, 255, 0.94), rgba(255, 255, 255, 0.98));
  padding-top: 1.5rem;
  padding-bottom: 1.8rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(6px);
}

.hero::before {
  width: 470px;
  height: 470px;
  top: -130px;
  right: -150px;
  background: rgba(42, 100, 248, 0.25);
}

.hero::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -100px;
  background: rgba(77, 123, 255, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: min(280px, 38vw);
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Poppins", "Inter", sans-serif;
}

h1 {
  font-size: clamp(2.05rem, 5vw, 3.3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.9px;
}

.hero h1 {
  background: linear-gradient(104deg, #101f3d 20%, #2f61e8 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 1rem;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.lead {
  color: var(--muted);
  max-width: 66ch;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(49, 95, 230, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: #1d3767;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #315fe6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.45rem 0;
}

.cta-row.cta-center {
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  border-radius: 11px;
  padding: 0.78rem 1.15rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  border: none;
  box-shadow: 0 12px 25px rgba(49, 95, 230, 0.32);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--line);
}

.btn-whatsapp {
  background: #1fbe5b;
  color: #ffffff;
  border: none;
}

.btn-whatsapp:hover {
  background: #18a64d;
}

.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats-inline article {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
}

.stats-inline strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
}

.stats-inline span {
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.75));
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.side-card ul {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.highlight-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.highlight-item:last-child {
  border-bottom: none;
}

.highlight-item:hover {
  padding-left: 0.5rem;
  color: var(--primary);
}

.section {
  padding: 0.8rem 0;
}

.section.alt {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.suite-showcase {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.suite-stage {
  position: relative;
  min-height: 520px;
  max-width: 1100px;
  margin: 0 auto;
}

.suite-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 14%, rgba(49, 95, 230, 0.18) 0 5px, transparent 6px),
    radial-gradient(circle at 25% 84%, rgba(31, 190, 91, 0.15) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 22%, rgba(79, 124, 255, 0.16) 0 4px, transparent 5px),
    radial-gradient(circle at 85% 70%, rgba(49, 95, 230, 0.16) 0 5px, transparent 6px);
  animation: iconShower 11s linear infinite;
}

.suite-float-card {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.65rem 0.45rem 0.45rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(17, 35, 71, 0.12), 0 2px 8px rgba(17, 35, 71, 0.06);
  border: 1px solid rgba(215, 224, 241, 0.9);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatCardVar var(--float-dur, 6s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  will-change: transform;
}

.suite-float-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(17, 35, 71, 0.14);
}

.suite-float-card--fade {
  opacity: 0.82;
}

.suite-float-card__img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.zoho-icon {
  width: 100px;
  height: 34px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

.suite-float-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.suite-centerpiece {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin: 0 auto;
  padding: 3.25rem 1.25rem 3.5rem;
  text-align: center;
}

.suite-badge {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(49, 95, 230, 0.15);
  margin-bottom: 1.35rem;
}

.suite-badge__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  background: #ffffff;
}

.suite-badge__logo {
  display: block;
  width: 114px;
  height: 40px;
  object-fit: contain;
}

.suite-badge__text {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  background: linear-gradient(100deg, #315fe6 0%, #4f7cff 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.85px;
}

.suite-title {
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  color: #0c1a33;
  margin: 0 0 0.85rem;
  letter-spacing: -0.6px;
  line-height: 1.25;
}

.suite-lead {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32ch;
  line-height: 1.65;
}

.suite-cta {
  box-shadow: 0 14px 32px rgba(49, 95, 230, 0.35);
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.quote,
.timeline article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.quote:hover,
.timeline article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(17, 35, 71, 0.12);
  border-color: #b6c6ea;
}

.card,
.quote,
.timeline article,
.hero-card,
.side-card,
.page-link-card {
  animation: cardDrift 8s ease-in-out infinite;
}

.card p,
.quote p,
.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.case-card {
  padding: 0;
  overflow: hidden;
}

.case-card h3,
.case-card p,
.case-card a {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.case-card h3 {
  margin-top: 0;
  padding-top: 1rem;
}

.case-card p {
  margin-bottom: 0;
}

.case-card a {
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.case-card__media {
  height: 168px;
  overflow: hidden;
  background: var(--surface-soft);
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-banner {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(17, 35, 71, 0.1);
}

.process-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.image-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(17, 35, 71, 0.08);
}

.image-gallery img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
  align-items: center;
}

.client-logos img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
}

.img-hidden {
  display: none !important;
}

.clients-showcase {
  display: grid;
  grid-template-columns: 0.92fr minmax(430px, 560px) 0.92fr;
  gap: 0.95rem;
  align-items: stretch;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.logo-card {
  background: #f5f7fb;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  overflow: hidden;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.logo-card:hover img {
  transform: scale(1.08);
}

.founder-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #172746;
}

.founder-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 21, 40, 0.12) 0%, rgba(11, 21, 40, 0.72) 100%),
    url("../Images/unnamed.jpg") center/cover no-repeat;
}

.founder-video-wrap {
  position: absolute;
  inset: 0;
}

.founder-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 21, 40, 0.12) 0%, rgba(11, 21, 40, 0.72) 100%);
}

.founder-sound-btn {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(12, 26, 51, 0.72);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.founder-sound-btn.is-on {
  background: rgba(31, 190, 91, 0.88);
  border-color: rgba(31, 190, 91, 0.95);
}

.founder-stop-btn {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(12, 26, 51, 0.72);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.founder-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  z-index: 1;
  color: #ffffff;
}

.founder-kicker {
  margin: 0 0 0.4rem;
  color: #ffe55f;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.founder-quote {
  margin: 0;
  font-weight: 500;
  max-width: 26ch;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 84, 230, 0.12);
  box-shadow: 0 16px 40px rgba(34, 71, 161, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(34, 71, 161, 0.11);
}

.timeline span {
  display: grid;
  place-items: center;
  min-width: 3.1rem;
  min-height: 3.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #2454e6 0%, #1d45bd 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(36, 84, 230, 0.2);
}

.timeline h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Redesigned delivery / ERP process sections (cloud-accounting, services) */
.deliver-showcase {
  margin-top: 1.5rem;
  padding: 1.85rem 1.5rem 2rem;
  border-radius: 22px;
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(236, 244, 255, 0.92) 45%,
    rgba(222, 234, 255, 0.88) 100%
  );
  border: 1px solid rgba(49, 95, 230, 0.14);
  box-shadow: 0 22px 56px rgba(17, 41, 99, 0.09);
}

.deliver-showcase--erp {
  background: linear-gradient(
    152deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(232, 240, 255, 0.94) 40%,
    rgba(214, 228, 255, 0.9) 100%
  );
}

.deliver-showcase__intro {
  max-width: 62ch;
  margin: 0 0 1.65rem;
}

.deliver-showcase__grid {
  display: grid;
  gap: 1.1rem;
}

.deliver-showcase__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliver-showcase__grid--erp {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.path-step-card {
  position: relative;
  margin: 0;
  padding: 1.35rem 1.2rem 1.4rem;
  padding-top: 1.5rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(49, 95, 230, 0.12);
  box-shadow: 0 10px 28px rgba(34, 71, 161, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
  list-style: none;
}

.path-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #315fe6, #5a8cff 55%, #6eb6ff);
}

.path-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(34, 71, 161, 0.14);
  border-color: rgba(49, 95, 230, 0.28);
}

.path-step-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.45rem;
  height: 2.45rem;
  padding: 0 0.4rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #315fe6 0%, #1d45bd 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 18px rgba(49, 95, 230, 0.25);
}

.path-step-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.path-step-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.erp-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 960px) {
  .deliver-showcase__grid--4 {
    grid-template-columns: 1fr;
  }

  .deliver-showcase {
    padding: 1.35rem 1.1rem 1.5rem;
  }
}

.quote h4 {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
}

.cta-band {
  background: linear-gradient(130deg, #eaf0ff 0%, #f2f6ff 52%, #e8eeff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.35rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chips span {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text);
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.brand-logos img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact-list p {
  margin: 0.33rem 0;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin: 0.86rem 0 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.site-footer {
  margin-top: 2rem;
  background: linear-gradient(130deg, #0d1d3b 0%, #10264d 60%, #17366b 100%);
  color: #d7e4ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 1.2rem;
  padding: 2rem 0;
}

.site-footer .brand {
  color: #f0f6ff;
}

.site-footer .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer a {
  display: block;
  margin: 0.3rem 0;
}

.site-footer p,
.site-footer a {
  color: #d7e4ff;
}

.site-footer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0 1.35rem;
  text-align: center;
}

.site-footer-credit p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(215, 228, 255, 0.88);
}

.site-footer-credit a {
  display: inline;
  margin: 0;
  color: #f0f6ff;
  font-weight: 600;
  text-decoration: underline;
}

.site-footer-credit a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #f0f6ff;
  transition: all 0.3s ease;
  margin: 0;
}

.social-links a:hover {
  background-color: #315fe6;
  color: #ffffff;
  transform: translateY(-3px);
}

.social-links a i {
  font-size: 1rem;
}

.social-links a.social-link--youtube i {
  color: #ff0000;
}

.social-links a.social-link--facebook i {
  color: #1877f2;
}

.social-links a.social-link--instagram i {
  color: #e1306c;
}

.social-links a.social-link--linkedin i {
  color: #0a66c2;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.mt {
  margin-top: 1.1rem;
}

.mt-0 {
  margin-top: 0;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.wa-options {
  display: none;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.58rem;
}

.wa-options.open {
  display: block;
}

.wa-title {
  font-size: 0.8rem;
  margin: 0.1rem 0.2rem 0.5rem;
  color: var(--muted);
  font-weight: 600;
}

.wa-option-link {
  display: block;
  border: 1px solid #d4e9dc;
  background: #eefaf2;
  border-radius: 9px;
  padding: 0.56rem 0.66rem;
  font-size: 0.88rem;
}

.wa-option-link + .wa-option-link {
  margin-top: 0.45rem;
}

.wa-main-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #1fbe5b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(22, 120, 58, 0.36);
}

.wa-main-btn svg {
  width: 28px;
  height: 28px;
  display: block;
}

.call-main-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2f61e8;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(33, 74, 194, 0.35);
}

.call-main-btn:hover {
  background: #214ac2;
}

.call-main-btn svg {
  width: 26px;
  height: 26px;
}

.call-main-btn,
.wa-main-btn {
  animation: pulseFloat 3.1s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes floatCardVar {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(var(--float-x, 10px), calc(var(--float-y, 10px) * -0.7), 0) rotate(-1.2deg);
  }
  50% {
    transform: translate3d(calc(var(--float-x, 10px) * -0.45), var(--float-y, 10px), 0) rotate(1.4deg);
  }
  75% {
    transform: translate3d(calc(var(--float-x, 10px) * 0.6), calc(var(--float-y, 10px) * 0.45), 0) rotate(-0.8deg);
  }
}

@keyframes iconShower {
  0% {
    transform: translateY(-12px);
    opacity: 0.35;
  }
  50% {
    opacity: 0.72;
  }
  100% {
    transform: translateY(14px);
    opacity: 0.35;
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 1024px) {
  .cards.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .nav-wrap {
    justify-content: center;
    min-height: auto;
    padding: 0;
    gap: 0.5rem 1rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    margin-left: 0;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .cards.three,
  .timeline,
  .split,
  .footer-grid,
  .stats-inline {
    grid-template-columns: 1fr;
  }

  .suite-stage {
    min-height: unset;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.5rem 0 1rem;
  }

  .suite-float-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1 !important;
    flex: 0 1 calc(50% - 0.5rem);
    max-width: 200px;
    justify-content: flex-start;
    white-space: normal;
  }

  .suite-centerpiece {
    flex: 1 1 100%;
    order: -1;
    padding: 2rem 0.5rem 1.75rem;
    max-width: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 4%;
    gap: 0.66rem;
  }

  .site-nav.open {
    display: flex;
    flex-wrap: nowrap;
  }

  .site-nav > a,
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 0.45rem;
    box-shadow: none;
    border-radius: 9px;
  }

  .clients-showcase {
    grid-template-columns: 1fr;
  }

  .founder-card {
    order: -1;
    min-height: 280px;
  }

  .hero-visual img {
    height: 220px;
  }

  .page-hero .container {
    padding: 1.35rem 1.15rem 1.5rem;
  }
}

/* Fresh redesign layer */
:root {
  --bg: #f3f7ff;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #0e2144;
  --muted: #4e617e;
  --primary: #2454e6;
  --primary-dark: #1d45bd;
  --line: #d5e1f8;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(16, 36, 74, 0.12);
}

body {
  background:
    radial-gradient(900px 420px at -5% -15%, rgba(73, 114, 235, 0.16), transparent 72%),
    radial-gradient(760px 360px at 105% -10%, rgba(49, 95, 230, 0.12), transparent 70%),
    linear-gradient(180deg, #f9fbff 0%, #f2f6ff 100%);
  color: var(--text);
}

.site-header {
  top: 0px;
  width: min(1160px, 92%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(24, 48, 92, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 68px;
  gap: 0.85rem;
}

.brand {
  font-size: 1.05rem;
  letter-spacing: -0.2px;
}

.brand-logo {
  width: 110px;
  height: 44px;
}

.site-nav > a,
.nav-dropdown-toggle {
  border-bottom: none;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  background: rgba(36, 84, 230, 0.1);
  color: #12306f;
}

.nav-dropdown-menu {
  margin-top: 0.45rem;
  border-radius: 12px;
}

.hero,
.page-hero {
  margin-top: 1rem;
}

.hero {
  border-radius: 28px;
  padding: 6.1rem 0 4.8rem;
  border: 1px solid #d7e3fb;
  box-shadow: 0 20px 42px rgba(21, 45, 91, 0.12);
}

.hero::before {
  width: 400px;
  height: 400px;
  top: -150px;
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: -150px;
}

.page-hero {
  border-radius: 24px;
  border: 1px solid #dce7fb;
  box-shadow: 0 14px 34px rgba(21, 45, 91, 0.09);
}

.hero-card,
.side-card,
.card,
.quote,
.timeline article,
.contact-form,
.page-link-card {
  border: 1px solid #d9e4f8;
  box-shadow: 0 12px 28px rgba(17, 38, 74, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
}

.card,
.quote,
.timeline article,
.hero-card,
.side-card,
.page-link-card {
  animation: none;
}

.card:hover,
.quote:hover,
.timeline article:hover,
.hero-card:hover,
.side-card:hover,
.page-link-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 36px rgba(17, 38, 74, 0.14);
}

.stats-inline article {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #d8e3fa;
  border-radius: 14px;
}

.btn {
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(120deg, #2a5cec 0%, #2454e6 55%, #1f4bd1 100%);
  box-shadow: 0 12px 26px rgba(35, 79, 213, 0.33);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #1f4bd1 0%, #1c43bd 100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.86);
}

.suite-showcase {
  border-radius: 24px;
  margin-top: 1.2rem;
  box-shadow: 0 15px 34px rgba(20, 44, 88, 0.1);
}

.suite-centerpiece {
  background: radial-gradient(circle at 50% -20%, rgba(86, 127, 244, 0.14), transparent 65%);
}

.section {
  padding: 0.8rem 0;
}

.section.alt {
  border-radius: 22px;
  margin-top: 1.2rem;
}

.site-footer {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1320px) {
  .site-header {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* Professional color system refinement */
:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f1f5fb;
  --text: #0f1f38;
  --muted: #4d5f79;
  --primary: #1f4fbf;
  --primary-dark: #163d98;
  --line: #d7e0ee;
  --shadow: 0 14px 30px rgba(15, 31, 56, 0.1);
}

body {
  background:
    radial-gradient(920px 420px at -10% -15%, rgba(31, 79, 191, 0.08), transparent 74%),
    radial-gradient(860px 380px at 110% -10%, rgba(22, 61, 152, 0.07), transparent 72%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fc 100%);
  color: var(--text);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-color: #e2e8f3;
  box-shadow: 0 10px 24px rgba(15, 31, 56, 0.08);
}

.site-nav > a,
.nav-dropdown-toggle {
  color: #415471;
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  background: rgba(31, 79, 191, 0.1);
  color: #173f9f;
}

.nav-dropdown-menu {
  border-color: #dbe4f2;
  box-shadow: 0 12px 28px rgba(15, 31, 56, 0.1);
}

.hero {
  background:
    linear-gradient(125deg, rgba(250, 252, 255, 0.93), rgba(242, 247, 255, 0.95)),
    url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=2200&q=80")
      center/cover no-repeat;
  border-color: #d9e3f2;
}

/* Page hero HD backgrounds (per page) — light veil + readable text panel */
.page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2400&q=90");
  background:
    linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.32) 0%,
      rgba(248, 250, 255, 0.28) 45%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    var(--page-hero-image) center/cover no-repeat;
  background-color: #f2f5fb;
  border-color: #dee6f2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Frosted content panel so type stays high-contrast on any photo */
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 1.85rem 2rem 2.1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow:
    0 2px 4px rgba(15, 31, 56, 0.04),
    0 14px 36px -6px rgba(15, 31, 56, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-hero .eyebrow {
  color: #163d9c;
  text-shadow: none;
}

.page-hero h1 {
  color: #0a1628;
  -webkit-text-fill-color: #0a1628;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow: none;
}

.page-hero .lead,
.page-hero p.lead,
.page-hero p.lead.narrow {
  color: #334155;
  text-shadow: none;
}

body[data-page="about"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="contact"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="suite"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1518773553398-650c184e0bb3?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="products"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1553729459-efe14ef6055d?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="clients"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="case-studies"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="process"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="gallery"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="testimonials"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1552581234-26160f608093?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="cloud-accounting"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2400&q=90");
}

body[data-page="services"] .page-hero {
  --page-hero-image: url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=2400&q=90");
}

.hero h1 {
  background: linear-gradient(100deg, #0f2240 15%, #1f4fbf 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.card p,
.quote p,
.timeline p,
.form-note,
.contact-list p,
.stats-inline span {
  color: var(--muted);
}

.hero-card,
.side-card,
.card,
.quote,
.timeline article,
.contact-form,
.page-link-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.section.alt {
  background: #eef3fb;
  border-color: #dbe3f0;
}

.suite-showcase {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  border-color: #d8e2f1;
}

.suite-float-card {
  background: #ffffff;
  border-color: #d8e2f1;
  box-shadow: 0 10px 24px rgba(15, 31, 56, 0.1);
}

.btn-primary {
  background: linear-gradient(120deg, #1f4fbf 0%, #245ad8 100%);
  box-shadow: 0 10px 24px rgba(31, 79, 191, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #163d98 0%, #1e4cb8 100%);
}

.btn-ghost {
  background: #ffffff;
  border-color: #cfd9ea;
  color: #223b66;
}

.btn-whatsapp {
  background: #1d9f4d;
}

.btn-whatsapp:hover {
  background: #168341;
}

.site-footer {
  background: linear-gradient(130deg, #0c1d39 0%, #112849 60%, #193760 100%);
}

/* Theme switcher */
.theme-switcher {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 92;
}

.theme-switcher-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 10px 24px rgba(15, 31, 56, 0.14);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.theme-switcher-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

/* Theme variant 1: Corporate Blue */
body[data-theme="corporate-blue"] {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f1f5fb;
  --text: #0f1f38;
  --muted: #4d5f79;
  --primary: #1f4fbf;
  --primary-dark: #163d98;
  --line: #d7e0ee;
}

body[data-theme="corporate-blue"] .hero {
  background:
    linear-gradient(125deg, rgba(250, 252, 255, 0.93), rgba(242, 247, 255, 0.95)),
    url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=2200&q=80")
      center/cover no-repeat;
}

/* Theme variant 2: Premium Navy */
body[data-theme="premium-navy"] {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface-soft: #eaf0fb;
  --text: #0c1a33;
  --muted: #475a78;
  --primary: #113b8d;
  --primary-dark: #0d2f6f;
  --line: #ced9ec;
}

body[data-theme="premium-navy"] {
  background:
    radial-gradient(900px 420px at -8% -18%, rgba(17, 59, 141, 0.1), transparent 74%),
    radial-gradient(860px 360px at 108% -14%, rgba(13, 47, 111, 0.09), transparent 72%),
    linear-gradient(180deg, #fafcff 0%, #eff4fd 100%);
}

body[data-theme="premium-navy"] .site-header {
  background: rgba(255, 255, 255, 0.9);
}

body[data-theme="premium-navy"] .hero {
  background:
    linear-gradient(125deg, rgba(246, 251, 255, 0.93), rgba(234, 242, 255, 0.95)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2200&q=80")
      center/cover no-repeat;
}

body[data-theme="premium-navy"] .site-footer {
  background: linear-gradient(130deg, #09152a 0%, #0f2443 60%, #173765 100%);
}

/* Home hero: full HD background + designed layout (Ganak Services) */
.hero--brand {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 5.5rem 0 5rem;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  background: #0a1628;
  border: none;
  box-shadow: 0 24px 60px rgba(6, 18, 40, 0.35);
}

.hero--brand::before,
.hero--brand::after {
  display: none;
}

.hero--brand .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    #0d1a2e
      url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2400&q=85")
      center/cover no-repeat;
  transform: scale(1.02);
  animation: heroBgDrift 28s ease-in-out infinite alternate;
}

@keyframes heroBgDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.06) translate3d(-1.2%, 0.6%, 0);
  }
}

.hero--brand .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(6, 18, 42, 0.92) 0%,
    rgba(10, 32, 68, 0.78) 38%,
    rgba(12, 48, 96, 0.45) 68%,
    rgba(8, 24, 52, 0.25) 100%
  );
  pointer-events: none;
}

.hero--brand .container {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
}

.hero--brand .hero-eyebrow {
  color: #8ec5ff;
  letter-spacing: 0.12em;
}

.hero--brand h1 {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #f5f8ff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  font-size: clamp(2.1rem, 4.6vw, 3.15rem);
  line-height: 1.12;
  max-width: 18ch;
}

.hero--brand .hero-lead {
  color: rgba(232, 240, 255, 0.9);
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero--brand .hero-pill {
  background: linear-gradient(135deg, rgba(110, 182, 255, 0.25) 0%, rgba(49, 95, 230, 0.15) 100%);
  border-color: rgba(110, 182, 255, 0.5);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(110, 182, 255, 0.2);
  transition: all 0.3s ease;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
}

.hero--brand .hero-trust-pills {
  flex-direction: column;
  align-items: flex-start;
}

.hero--brand .hero-pill:hover {
  background: linear-gradient(135deg, rgba(110, 182, 255, 0.35) 0%, rgba(49, 95, 230, 0.25) 100%);
  box-shadow: 0 6px 20px rgba(110, 182, 255, 0.3);
  transform: translateY(-2px);
}

.hero--brand .hero-pill::before {
  background: #6eb6ff;
  box-shadow: 0 0 8px rgba(110, 182, 255, 0.6);
}

.hero--brand .hero-pill--spotlight {
  background: linear-gradient(
    135deg,
    rgba(200, 230, 255, 0.55) 0%,
    rgba(110, 182, 255, 0.42) 45%,
    rgba(49, 95, 230, 0.38) 100%
  );
  border: 1px solid rgba(230, 244, 255, 0.95);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(5, 20, 60, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 6px 28px rgba(110, 182, 255, 0.55),
    0 0 36px rgba(110, 182, 255, 0.35);
}

.hero--brand .hero-pill--spotlight::before {
  background: #e8f6ff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.95), 0 0 20px rgba(110, 182, 255, 0.8);
}

.hero--brand .hero-pill--spotlight:hover {
  border-color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.45) inset,
    0 8px 32px rgba(140, 200, 255, 0.65),
    0 0 48px rgba(110, 182, 255, 0.5);
}

.hero-lead-services {
  display: block;
  margin-top: 0.65rem;
}

.hero-lead-sep {
  margin: 0 0.35rem;
  opacity: 0.85;
  font-weight: 700;
}

.hero-lead-tagline {
  font-weight: 500;
  opacity: 0.92;
}

.hero--brand .index-service-highlight {
  color: #ffffff;
  font-weight: 800;
  text-shadow:
    0 0 18px rgba(180, 220, 255, 0.95),
    0 0 36px rgba(49, 95, 230, 0.55),
    0 1px 2px rgba(5, 25, 70, 0.5);
}

.index-explore-services .index-service-highlight--link {
  color: #0b3d91;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(110, 182, 255, 0.35);
}

.index-explore-services .index-service-highlight--link:hover {
  color: #082a66;
  text-decoration: underline;
}

.footer-service-list {
  margin: 0.75rem 0 0;
  line-height: 1.65;
}

.footer-service-highlight {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px rgba(110, 182, 255, 0.65);
}

.training-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.training-visual-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(49, 95, 230, 0.15);
  box-shadow: 0 12px 32px rgba(13, 29, 59, 0.12);
}

.training-visual-grid img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .training-visual-grid {
    grid-template-columns: 1fr;
  }

  .training-visual-grid img {
    height: 220px;
  }
}

.hero--brand .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #f0f6ff;
  backdrop-filter: blur(6px);
}

.hero--brand .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero--brand .hero-stats article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero--brand .hero-stats strong {
  color: #ffffff;
}

.hero--brand .hero-stats span {
  color: rgba(224, 234, 255, 0.88);
}

.hero--brand .hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero--brand .hero-visual {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  overflow: hidden;
}

.hero--brand .hero-visual img {
  height: min(400px, 32vw);
  filter: saturate(1.05) contrast(1.04);
}

.hero--brand .hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.hero--brand .hero-card h3 {
  color: #0e2144;
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.hero--brand .hero-card li {
  color: #3d4f6d;
}

@media (max-width: 960px) {
  .hero--brand {
    min-height: auto;
    padding: 4.2rem 0 3.5rem;
  }

  .hero--brand h1 {
    max-width: none;
  }

  .hero--brand .hero-bg {
    animation: none;
  }

  .hero--brand .hero-visual img {
    height: 200px;
  }
}

/* Theme: hero HD images for home brand block */
body[data-theme="corporate-blue"] .hero--brand .hero-bg {
  background:
    #0d1a2e
      url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2400&q=85")
      center/cover no-repeat;
}

body[data-theme="premium-navy"] .hero--brand .hero-bg {
  background:
    #070f1c
      url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=2400&q=85")
      center/cover no-repeat;
}

/* Theme: clear parent .hero background so .hero-bg layer is the only artwork */
body[data-theme="corporate-blue"] .hero.hero--brand,
body[data-theme="premium-navy"] .hero.hero--brand {
  background: #0a1628;
}

@media (prefers-reduced-motion: reduce) {
  .hero--brand .hero-bg {
    animation: none;
    transform: none;
  }
}

/* Zoho suite: “We work with the entire suite…” — HD background + layered design */
.section.suite-showcase--immersive {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(200, 215, 240, 0.45);
  border-radius: 28px;
  background: #0a1424;
  box-shadow:
    0 4px 6px -1px rgba(8, 20, 45, 0.08),
    0 24px 50px -12px rgba(8, 24, 52, 0.35);
}

.suite-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    #0a1628
      url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2400&q=90")
      center/cover no-repeat;
  transform: scale(1.04);
  animation: suiteBgKen 32s ease-in-out infinite alternate;
}

.suite-showcase-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(20, 55, 120, 0.35) 0%, transparent 62%),
    linear-gradient(125deg, rgba(6, 16, 38, 0.88) 0%, rgba(10, 32, 72, 0.62) 42%, rgba(12, 40, 88, 0.45) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.suite-showcase-inner {
  position: relative;
  z-index: 2;
}

.suite-showcase--immersive .suite-stage {
  min-height: 540px;
}

.suite-showcase--immersive .suite-stage::before {
  opacity: 0.9;
  z-index: 0;
}

.suite-showcase--immersive .suite-float-card {
  z-index: 2;
  background: #ffffff;
  border-color: rgba(230, 238, 252, 0.95);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.suite-showcase--immersive .suite-float-card--fade {
  opacity: 0.95;
}

.suite-showcase--immersive .suite-centerpiece {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 251, 255, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  padding: 2.35rem 1.85rem 2.5rem;
  max-width: 22rem;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.12),
    0 20px 50px -12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.suite-showcase--immersive .suite-title {
  color: #0a1628;
}

.suite-showcase--immersive .suite-lead {
  color: #3d4d68;
}

@keyframes suiteBgKen {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-0.8%, 0.4%, 0);
  }
}

/* Override flatter .suite-showcase skin when immersive */
.suite-showcase.suite-showcase--immersive {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

body[data-theme="corporate-blue"] .suite-showcase-bg {
  background:
    #0a1628
      url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2400&q=90")
      center/cover no-repeat;
}

body[data-theme="premium-navy"] .suite-showcase-bg {
  background:
    #050d18
      url("https://images.unsplash.com/photo-1504384308090-c54be3855833?auto=format&fit=crop&w=2400&q=90")
      center/cover no-repeat;
}

@media (max-width: 960px) {
  .section.suite-showcase--immersive {
    border-radius: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .suite-showcase--immersive .suite-stage {
    min-height: unset;
  }

  .suite-showcase--immersive .suite-centerpiece {
    padding: 1.75rem 1.25rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .suite-showcase-bg {
    animation: none;
    transform: scale(1.02);
  }
}

.consultation-wrap {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 0;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(130, 178, 228, 0.8);
  background: linear-gradient(90deg, #2e6f9f 0%, #6faed9 100%);
  box-shadow: var(--shadow);
}

.consultation-photo {
  margin: 0;
  height: 100%;
}

.consultation-photo img {
  width: 100%;
  display: block;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
}

.consultation-copy {
  color: #ffffff;
  padding: 2rem 2.4rem;
}

.consultation-copy h2 {
  color: #ffffff;
  margin: 0.25rem 0 0.6rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.consultation-copy .eyebrow {
  color: #d9edff;
}

.consultation-copy .lead {
  color: #edf7ff;
}

.consultation-copy .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.consultation-copy .btn-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.consultation-rotator {
  min-height: 3.1rem;
  font-weight: 700;
  letter-spacing: 0.15px;
}

.clients-orbit {
  position: relative;
  min-height: 640px;
  width: 100%;
    border-radius: 32px;
    border: 1px solid rgba(109, 141, 255, 0.16);
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(226, 238, 255, 0.9) 35%, rgba(237, 243, 255, 0.95) 100%);
    overflow: hidden;
  }

  .clients-orbit::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.84) 0%, rgba(206, 226, 255, 0.28) 45%, transparent 72%);
    pointer-events: none;
    z-index: 1;
  }

  .clients-orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 36px;
    background: #fff;
    border: 1px solid rgba(109, 141, 255, 0.18);
    display: grid;
    place-items: center;
    box-shadow: 0 28px 60px rgba(22, 45, 98, 0.12);
    z-index: 2;
  }

  .clients-orbit-center img {
    width: 72%;
    height: auto;
    object-fit: contain;
  }

  .clients-orbit-ring {
    position: absolute;
    inset: 0;
  }

  .orbit-logo {
    position: absolute;
    width: 108px;
    height: 108px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    border: 1px solid rgba(109, 141, 255, 0.18);
    padding: 0.75rem;
    display: grid;
    place-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 18px 40px rgba(24, 48, 92, 0.12);
    z-index: 2;
  }

  .orbit-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 22px 48px rgba(24, 48, 92, 0.18);
  }

  .orbit-logo img {
    width: 72%;
    height: 72%;
    object-fit: contain;
  }

  .card,
  .quote,
  .timeline article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .service-tab-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.95rem;
  }

.service-tab-btn {
  border: 1px solid var(--line);
  background: #f3f7ff;
  color: var(--text);
  border-radius: 12px;
  padding: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.service-tab-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.service-tab-panel {
  display: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.service-tab-panel.is-active {
  display: block;
}

.service-tab-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.service-positioning {
  margin: 0.85rem 0 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  min-height: 290px;
}

@media (max-width: 960px) {
  .consultation-wrap {
    grid-template-columns: 1fr;
  }

  .consultation-copy {
    order: 2;
    padding: 1.4rem 1.2rem 1.6rem;
  }

  .consultation-photo {
    order: 1;
  }

  .consultation-photo img {
    min-height: 240px;
  }

  .clients-orbit {
    min-height: 360px;
    border-radius: 20px;
  }

  .clients-orbit-center {
    width: 138px;
    height: 138px;
  }

  .orbit-logo {
    width: 78px;
    height: 78px;
    padding: 0.45rem;
  }

  .service-tab-buttons {
    grid-template-columns: 1fr;
  }
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.section-resources .page-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.4rem 1.35rem;
  min-height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
  border: 1px solid rgba(36, 84, 230, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(34, 71, 161, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.section-resources .page-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(36, 84, 230, 0.14), transparent 28%);
  pointer-events: none;
}

.section-resources .page-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(34, 71, 161, 0.12);
  border-color: rgba(36, 84, 230, 0.2);
}

.section-resources .page-link-card .page-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 16px;
  font-size: 1.3rem;
  background: rgba(36, 84, 230, 0.1);
  color: var(--primary);
}

.section-resources .page-link-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}

.section-resources .page-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-resources .page-link-card .link-arrow {
  margin-top: auto;
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 700;
}

.section-resources {
  background: linear-gradient(180deg, rgba(243, 247, 255, 0.94), rgba(255, 255, 255, 0.98));
  padding-top: 1.5rem;
  padding-bottom: 1.8rem;
}

#process-overview .timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#process-overview .timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 84, 230, 0.12);
  box-shadow: 0 16px 40px rgba(34, 71, 161, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#process-overview .timeline article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(34, 71, 161, 0.11);
}

#process-overview .process-step-badge {
  display: grid;
  place-items: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0 0.35rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #2454e6 0%, #1d45bd 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 10px 22px rgba(36, 84, 230, 0.2);
}

#process-overview .timeline h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}

#process-overview .timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .page-link-grid,
  #process-overview .timeline {
    grid-template-columns: 1fr;
  }
}
